Changeset 10401
- Timestamp:
- 01/27/14 14:13:02 (11 years ago)
- Location:
- trunk/sources
- Files:
-
- 3 edited
- 4 moved
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.HLScript.Views/3.3/HeuristicLab.HLScript.Views-3.3.csproj
r10391 r10401 86 86 <ItemGroup> 87 87 <None Include="Plugin.cs.frame" /> 88 <Compile Include=" HLScriptView.cs">88 <Compile Include="ScriptView.cs"> 89 89 <SubType>UserControl</SubType> 90 90 </Compile> 91 <Compile Include=" HLScriptView.Designer.cs">92 <DependentUpon> HLScriptView.cs</DependentUpon>91 <Compile Include="ScriptView.Designer.cs"> 92 <DependentUpon>ScriptView.cs</DependentUpon> 93 93 </Compile> 94 94 <Compile Include="Plugin.cs" /> -
trunk/sources/HeuristicLab.HLScript.Views/3.3/ScriptView.Designer.cs
r10400 r10401 21 21 22 22 namespace HeuristicLab.HLScript.Views { 23 partial class HLScriptView {23 partial class ScriptView { 24 24 /// <summary> 25 25 /// Required designer variable. … … 46 46 private void InitializeComponent() { 47 47 this.compilationLabel = new System.Windows.Forms.Label(); 48 this.showCodeButton = new System.Windows.Forms.Button();49 48 this.startStopButton = new System.Windows.Forms.Button(); 50 49 this.errorListView = new System.Windows.Forms.ListView(); … … 61 60 this.outputTabPage = new System.Windows.Forms.TabPage(); 62 61 this.outputTextBox = new System.Windows.Forms.TextBox(); 62 this.variableStoreView = new HeuristicLab.HLScript.Views.VariableStoreView(); 63 63 this.viewHost = new HeuristicLab.MainForm.WindowsForms.ViewHost(); 64 this.variableStoreView = new HeuristicLab.HLScript.Views.VariableStoreView();65 64 ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).BeginInit(); 66 65 ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).BeginInit(); … … 92 91 this.compilationLabel.AutoSize = true; 93 92 this.compilationLabel.ForeColor = System.Drawing.SystemColors.ControlDarkDark; 94 this.compilationLabel.Location = new System.Drawing.Point( 63, 32);93 this.compilationLabel.Location = new System.Drawing.Point(33, 32); 95 94 this.compilationLabel.Name = "compilationLabel"; 96 95 this.compilationLabel.Size = new System.Drawing.Size(69, 13); 97 96 this.compilationLabel.TabIndex = 3; 98 97 this.compilationLabel.Text = "Not compiled"; 99 //100 // showCodeButton101 //102 this.showCodeButton.Image = HeuristicLab.Common.Resources.VSImageLibrary.PrintPreview;103 this.showCodeButton.Location = new System.Drawing.Point(33, 26);104 this.showCodeButton.Name = "showCodeButton";105 this.showCodeButton.Size = new System.Drawing.Size(24, 24);106 this.showCodeButton.TabIndex = 2;107 this.showCodeButton.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText;108 this.toolTip.SetToolTip(this.showCodeButton, "Show generated code");109 this.showCodeButton.UseVisualStyleBackColor = true;110 this.showCodeButton.Click += new System.EventHandler(this.showCodeButton_Click);111 98 // 112 99 // startStopButton … … 179 166 // splitContainer1 180 167 // 181 this.splitContainer1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 182 | System.Windows.Forms.AnchorStyles.Left) 168 this.splitContainer1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 169 | System.Windows.Forms.AnchorStyles.Left) 183 170 | System.Windows.Forms.AnchorStyles.Right))); 184 171 this.splitContainer1.Location = new System.Drawing.Point(3, 56); … … 260 247 this.outputTextBox.TabIndex = 0; 261 248 this.outputTextBox.WordWrap = false; 249 // 250 // variableStoreView 251 // 252 this.variableStoreView.Caption = "ItemCollection View"; 253 this.variableStoreView.Content = null; 254 this.variableStoreView.Dock = System.Windows.Forms.DockStyle.Fill; 255 this.variableStoreView.Location = new System.Drawing.Point(0, 0); 256 this.variableStoreView.Name = "variableStoreView"; 257 this.variableStoreView.ReadOnly = false; 258 this.variableStoreView.Size = new System.Drawing.Size(188, 543); 259 this.variableStoreView.TabIndex = 0; 262 260 // 263 261 // viewHost … … 275 273 this.viewHost.ViewType = null; 276 274 // 277 // variableStoreView 278 // 279 this.variableStoreView.Caption = "ItemCollection View"; 280 this.variableStoreView.Content = null; 281 this.variableStoreView.Dock = System.Windows.Forms.DockStyle.Fill; 282 this.variableStoreView.Location = new System.Drawing.Point(0, 0); 283 this.variableStoreView.Name = "variableStoreView"; 284 this.variableStoreView.ReadOnly = false; 285 this.variableStoreView.Size = new System.Drawing.Size(188, 543); 286 this.variableStoreView.TabIndex = 0; 287 // 288 // HLScriptView 275 // ScriptView 289 276 // 290 277 this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Inherit; … … 292 279 this.Controls.Add(this.startStopButton); 293 280 this.Controls.Add(this.compilationLabel); 294 this.Controls.Add(this.showCodeButton); 295 this.Name = "HLScriptView"; 281 this.Name = "ScriptView"; 296 282 this.Size = new System.Drawing.Size(835, 602); 297 this.Controls.SetChildIndex(this.showCodeButton, 0);298 283 this.Controls.SetChildIndex(this.compilationLabel, 0); 299 284 this.Controls.SetChildIndex(this.startStopButton, 0); … … 322 307 #endregion 323 308 324 private System.Windows.Forms.Button showCodeButton;325 309 private System.Windows.Forms.Label compilationLabel; 326 310 private System.Windows.Forms.Button startStopButton; -
trunk/sources/HeuristicLab.HLScript.Views/3.3/ScriptView.cs
r10400 r10401 26 26 using System.Linq; 27 27 using System.Windows.Forms; 28 using HeuristicLab.CodeEditor;29 28 using HeuristicLab.Common; 30 29 using HeuristicLab.Common.Resources; … … 34 33 namespace HeuristicLab.HLScript.Views { 35 34 36 [View(" HLScript View")]37 [Content(typeof( HLScript), true)]38 public partial class HLScriptView : NamedItemView {35 [View("Script View")] 36 [Content(typeof(Script), true)] 37 public partial class ScriptView : NamedItemView { 39 38 private bool running; 40 39 41 public new HLScript Content {42 get { return ( HLScript)base.Content; }43 set { base.Content = ( HLScript)value; }44 } 45 46 public HLScriptView() {40 public new Script Content { 41 get { return (Script)base.Content; } 42 set { base.Content = (Script)value; } 43 } 44 45 public ScriptView() { 47 46 InitializeComponent(); 48 47 } … … 70 69 private void Content_ScriptExecutionStarted(object sender, EventArgs e) { 71 70 Locked = true; 71 ReadOnly = true; 72 72 startStopButton.Image = VSImageLibrary.Stop; 73 73 } 74 74 private void Content_ScriptExecutionFinished(object sender, EventArgs e) { 75 75 Locked = false; 76 ReadOnly = false; 76 77 startStopButton.Image = VSImageLibrary.Play; 77 78 running = false; … … 110 111 protected override void SetEnabledStateOfControls() { 111 112 base.SetEnabledStateOfControls(); 112 startStopButton.Enabled = Content != null && !Locked; 113 showCodeButton.Enabled = Content != null && !string.IsNullOrEmpty(Content.CompilationUnitCode); 113 startStopButton.Enabled = Content != null && (!Locked || running); 114 114 codeEditor.Enabled = Content != null && !Locked && !ReadOnly; 115 115 } … … 125 125 running = true; 126 126 } 127 }128 129 private void showCodeButton_Click(object sender, EventArgs e) {130 new CodeViewer(Content.CompilationUnitCode).ShowDialog(this);131 127 } 132 128 … … 203 199 }); 204 200 errorListView.Items.Add(item); 205 outputTextBox.AppendText(string.Format("{0} {1} ({2}:{3}): {4}", item.SubItems[0].Text, item.SubItems[1].Text, item.SubItems[2].Text, item.SubItems[3].Text, item.SubItems[4].Text)); 201 outputTextBox.AppendText(string.Format("{0} {1} ({2}:{3}): {4}", 202 item.SubItems[0].Text, 203 item.SubItems[1].Text, 204 item.SubItems[2].Text, 205 item.SubItems[3].Text, 206 item.SubItems[4].Text)); 206 207 outputTextBox.AppendText(Environment.NewLine); 207 208 } -
trunk/sources/HeuristicLab.HLScript.Views/3.3/VariableStoreView.cs
r10358 r10401 114 114 removeButton.Enabled = !Locked && !ReadOnly && variableListView.SelectedItems.Count > 0; 115 115 variableListView.Enabled = true; 116 variableListView.LabelEdit = !Locked && !ReadOnly; 116 117 } 117 118 } -
trunk/sources/HeuristicLab.HLScript/3.3/HeuristicLab.HLScript-3.3.csproj
r10391 r10401 87 87 <Compile Include="VariableStore.cs" /> 88 88 <None Include="Plugin.cs.frame" /> 89 <Compile Include=" HLScript.cs" />90 <Compile Include=" HLScriptGeneration.cs" />89 <Compile Include="Script.cs" /> 90 <Compile Include="UserScriptBase.cs" /> 91 91 <Compile Include="Plugin.cs" /> 92 92 <Compile Include="Properties\AssemblyInfo.cs" /> -
trunk/sources/HeuristicLab.HLScript/3.3/Script.cs
r10400 r10401 17 17 18 18 namespace HeuristicLab.HLScript { 19 [Item(" HLScript", "A HeuristicLab script.")]19 [Item("Script", "A HeuristicLab script.")] 20 20 [Creatable("Scripts")] 21 21 [StorableClass] 22 public sealed class HLScript : NamedItem, IStorableContent {22 public sealed class Script : NamedItem, IStorableContent { 23 23 #region Constants 24 private const string ScriptNamespaceName = "HeuristicLab.HLScript";25 24 private const string ExecuteMethodName = "Execute"; 26 25 private const string CodeTemplate = … … 29 28 using System; 30 29 31 public override void Main() { 32 // type your code here 33 } 34 35 // further classes and methods"; 30 namespace UserScripts { 31 public class UserScript : HeuristicLab.HLScript.UserScriptBase { 32 public override void Main() { 33 // type your code here 34 } 35 36 // further classes and methods 37 38 } 39 }"; 36 40 #endregion 37 41 38 42 #region Fields & Properties 39 private HLScriptGeneration compiledHLScript;43 private UserScriptBase compiledScript; 40 44 41 45 public string Filename { get; set; } … … 58 62 if (value == code) return; 59 63 code = value; 60 compiled HLScript = null;64 compiledScript = null; 61 65 OnCodeChanged(); 62 66 } … … 80 84 #region Construction & Initialization 81 85 [StorableConstructor] 82 private HLScript(bool deserializing) : base(deserializing) { }83 private HLScript(HLScript original, Cloner cloner)86 private Script(bool deserializing) : base(deserializing) { } 87 private Script(Script original, Cloner cloner) 84 88 : base(original, cloner) { 85 89 code = original.code; … … 90 94 } 91 95 92 public HLScript()93 : base(" HLScript", "A HeuristicLab script.") {96 public Script() 97 : base("Script", "A HeuristicLab script.") { 94 98 code = CodeTemplate; 95 99 variableStore = new VariableStore(); … … 97 101 98 102 public override IDeepCloneable Clone(Cloner cloner) { 99 return new HLScript(this, cloner);103 return new Script(this, cloner); 100 104 } 101 105 #endregion 102 106 103 107 private void RegisterScriptEvents() { 104 if (compiled HLScript == null) return;105 compiled HLScript.ConsoleOutputChanged += compiledHLScript_ConsoleOutputChanged;108 if (compiledScript == null) return; 109 compiledScript.ConsoleOutputChanged += compiledScript_ConsoleOutputChanged; 106 110 } 107 111 108 112 private void DeregisterScriptEvents() { 109 if (compiled HLScript == null) return;110 compiled HLScript.ConsoleOutputChanged -= compiledHLScript_ConsoleOutputChanged;113 if (compiledScript == null) return; 114 compiledScript.ConsoleOutputChanged -= compiledScript_ConsoleOutputChanged; 111 115 } 112 116 … … 143 147 public void Compile() { 144 148 var results = DoCompile(); 145 compiled HLScript = null;149 compiledScript = null; 146 150 CompileErrors = results.Errors; 147 151 if (results.Errors.HasErrors) { … … 160 164 var types = assembly.GetTypes(); 161 165 DeregisterScriptEvents(); 162 compiled HLScript = (HLScriptGeneration)Activator.CreateInstance(types[0]);166 compiledScript = (UserScriptBase)Activator.CreateInstance(types[0]); 163 167 RegisterScriptEvents(); 164 168 } … … 181 185 } 182 186 183 private readonly Regex LineSplitter = new Regex(@"\r\n|\r|\n");184 187 private readonly Regex SafeTypeNameCharRegex = new Regex("[_a-zA-Z0-9]+"); 185 188 private readonly Regex SafeTypeNameRegex = new Regex("[_a-zA-Z][_a-zA-Z0-9]*"); 186 private readonly Regex NamespaceDeclarationRegex = new Regex(@"using\s+(@?[a-z_A-Z]\w+(?:\s*\.\s*@?[a-z_A-Z]\w*)*)\s*;");187 private readonly Regex NamespaceRegex = new Regex(@"(@?[a-z_A-Z]\w+(?:\s*\.\s*@?[a-z_A-Z]\w*)*)");188 private readonly Regex CommentRegex = new Regex(@"((/\*)[^/]+(\*/))|(//.*)");189 189 190 190 private CodeCompileUnit CreateCompilationUnit() { 191 var ns = new CodeNamespace(ScriptNamespaceName); 192 ns.Types.Add(CreateScriptClass()); 193 ns.Imports.AddRange( 194 GetNamespaces() 195 .Select(n => new CodeNamespaceImport(n)) 196 .ToArray()); 197 var unit = new CodeCompileUnit(); 198 unit.Namespaces.Add(ns); 191 var unit = new CodeSnippetCompileUnit(code); 199 192 return unit; 200 }201 202 private IEnumerable<string> GetNamespaces() {203 var strings = NamespaceDeclarationRegex.Matches(CommentRegex.Replace(code, string.Empty))204 .Cast<Match>()205 .Select(m => m.Value);206 foreach (var s in strings) {207 var match = NamespaceRegex.Match(s.Replace("using", string.Empty));208 yield return match.Value;209 }210 }211 212 private IEnumerable<string> GetCodeLines() {213 var lines = LineSplitter.Split(code);214 foreach (var line in lines) {215 string trimmedLine = line.Trim();216 if (!NamespaceDeclarationRegex.IsMatch(trimmedLine))217 yield return trimmedLine;218 }219 193 } 220 194 … … 230 204 } 231 205 } 232 233 private CodeTypeDeclaration CreateScriptClass() {234 var typeDecl = new CodeTypeDeclaration(CompiledTypeName) {235 IsClass = true,236 TypeAttributes = TypeAttributes.Public,237 };238 typeDecl.BaseTypes.Add(typeof(HLScriptGeneration));239 typeDecl.Members.Add(new CodeSnippetTypeMember(string.Join(Environment.NewLine, GetCodeLines())));240 return typeDecl;241 }242 206 #endregion 243 207 244 208 private Thread scriptThread; 245 209 public void Execute() { 246 if (compiled HLScript == null) return;247 var executeMethod = typeof( HLScriptGeneration).GetMethod(ExecuteMethodName, BindingFlags.NonPublic | BindingFlags.Instance);210 if (compiledScript == null) return; 211 var executeMethod = typeof(UserScriptBase).GetMethod(ExecuteMethodName, BindingFlags.NonPublic | BindingFlags.Instance); 248 212 if (executeMethod != null) { 249 213 scriptThread = new Thread(() => { 250 214 try { 251 215 OnScriptExecutionStarted(); 252 executeMethod.Invoke(compiled HLScript, new[] { VariableStore });216 executeMethod.Invoke(compiledScript, new[] { VariableStore }); 253 217 } finally { 254 218 OnScriptExecutionFinished(); … … 264 228 } 265 229 266 private void compiled HLScript_ConsoleOutputChanged(object sender, EventArgs<string> e) {230 private void compiledScript_ConsoleOutputChanged(object sender, EventArgs<string> e) { 267 231 OnConsoleOutputChanged(e.Value); 268 232 } -
trunk/sources/HeuristicLab.HLScript/3.3/UserScriptBase.cs
r10400 r10401 7 7 8 8 namespace HeuristicLab.HLScript { 9 public abstract class HLScriptGeneration{9 public abstract class UserScriptBase { 10 10 protected dynamic vars; 11 11 … … 15 15 } 16 16 17 protected HLScriptGeneration() {17 protected UserScriptBase() { 18 18 console = new EventWriter(this); 19 19 } … … 56 56 57 57 protected class EventWriter : TextWriter { 58 private readonly HLScriptGeneration hlsg;58 private readonly UserScriptBase usb; 59 59 60 public EventWriter( HLScriptGeneration hlsg) {61 this. hlsg = hlsg;60 public EventWriter(UserScriptBase usb) { 61 this.usb = usb; 62 62 } 63 63 … … 68 68 #region Write/WriteLine Overrides 69 69 #region Write 70 public override void Write(bool value) { hlsg.OnConsoleOutputChanged(value.ToString()); }71 public override void Write(char value) { hlsg.OnConsoleOutputChanged(value.ToString()); }72 public override void Write(char[] buffer) { hlsg.OnConsoleOutputChanged(new string(buffer)); }73 public override void Write(char[] buffer, int index, int count) { hlsg.OnConsoleOutputChanged(new string(buffer, index, count)); }74 public override void Write(decimal value) { hlsg.OnConsoleOutputChanged(value.ToString()); }75 public override void Write(double value) { hlsg.OnConsoleOutputChanged(value.ToString()); }76 public override void Write(float value) { hlsg.OnConsoleOutputChanged(value.ToString()); }77 public override void Write(int value) { hlsg.OnConsoleOutputChanged(value.ToString()); }78 public override void Write(long value) { hlsg.OnConsoleOutputChanged(value.ToString()); }79 public override void Write(object value) { hlsg.OnConsoleOutputChanged(value.ToString()); }80 public override void Write(string value) { hlsg.OnConsoleOutputChanged(value); }81 public override void Write(string format, object arg0) { hlsg.OnConsoleOutputChanged(string.Format(format, arg0)); }82 public override void Write(string format, object arg0, object arg1) { hlsg.OnConsoleOutputChanged(string.Format(format, arg0, arg0)); }83 public override void Write(string format, object arg0, object arg1, object arg2) { hlsg.OnConsoleOutputChanged(string.Format(format, arg0, arg1, arg2)); }84 public override void Write(string format, params object[] arg) { hlsg.OnConsoleOutputChanged(string.Format(format, arg)); }85 public override void Write(uint value) { hlsg.OnConsoleOutputChanged(value.ToString()); }86 public override void Write(ulong value) { hlsg.OnConsoleOutputChanged(value.ToString()); }70 public override void Write(bool value) { usb.OnConsoleOutputChanged(value.ToString()); } 71 public override void Write(char value) { usb.OnConsoleOutputChanged(value.ToString()); } 72 public override void Write(char[] buffer) { usb.OnConsoleOutputChanged(new string(buffer)); } 73 public override void Write(char[] buffer, int index, int count) { usb.OnConsoleOutputChanged(new string(buffer, index, count)); } 74 public override void Write(decimal value) { usb.OnConsoleOutputChanged(value.ToString()); } 75 public override void Write(double value) { usb.OnConsoleOutputChanged(value.ToString()); } 76 public override void Write(float value) { usb.OnConsoleOutputChanged(value.ToString()); } 77 public override void Write(int value) { usb.OnConsoleOutputChanged(value.ToString()); } 78 public override void Write(long value) { usb.OnConsoleOutputChanged(value.ToString()); } 79 public override void Write(object value) { usb.OnConsoleOutputChanged(value.ToString()); } 80 public override void Write(string value) { usb.OnConsoleOutputChanged(value); } 81 public override void Write(string format, object arg0) { usb.OnConsoleOutputChanged(string.Format(format, arg0)); } 82 public override void Write(string format, object arg0, object arg1) { usb.OnConsoleOutputChanged(string.Format(format, arg0, arg0)); } 83 public override void Write(string format, object arg0, object arg1, object arg2) { usb.OnConsoleOutputChanged(string.Format(format, arg0, arg1, arg2)); } 84 public override void Write(string format, params object[] arg) { usb.OnConsoleOutputChanged(string.Format(format, arg)); } 85 public override void Write(uint value) { usb.OnConsoleOutputChanged(value.ToString()); } 86 public override void Write(ulong value) { usb.OnConsoleOutputChanged(value.ToString()); } 87 87 #endregion 88 88 89 89 #region WriteLine 90 public override void WriteLine() { hlsg.OnConsoleOutputChanged(Environment.NewLine); }91 public override void WriteLine(bool value) { hlsg.OnConsoleOutputChanged(value + Environment.NewLine); }92 public override void WriteLine(char value) { hlsg.OnConsoleOutputChanged(value + Environment.NewLine); }93 public override void WriteLine(char[] buffer) { hlsg.OnConsoleOutputChanged(new string(buffer) + Environment.NewLine); }94 public override void WriteLine(char[] buffer, int index, int count) { hlsg.OnConsoleOutputChanged(new string(buffer, index, count) + Environment.NewLine); }95 public override void WriteLine(decimal value) { hlsg.OnConsoleOutputChanged(value + Environment.NewLine); }96 public override void WriteLine(double value) { hlsg.OnConsoleOutputChanged(value + Environment.NewLine); }97 public override void WriteLine(float value) { hlsg.OnConsoleOutputChanged(value + Environment.NewLine); }98 public override void WriteLine(int value) { hlsg.OnConsoleOutputChanged(value + Environment.NewLine); }99 public override void WriteLine(long value) { hlsg.OnConsoleOutputChanged(value + Environment.NewLine); }100 public override void WriteLine(object value) { hlsg.OnConsoleOutputChanged(value + Environment.NewLine); }101 public override void WriteLine(string value) { hlsg.OnConsoleOutputChanged(value + Environment.NewLine); }102 public override void WriteLine(string format, object arg0) { hlsg.OnConsoleOutputChanged(string.Format(format, arg0) + Environment.NewLine); }103 public override void WriteLine(string format, object arg0, object arg1) { hlsg.OnConsoleOutputChanged(string.Format(format, arg0, arg1) + Environment.NewLine); }104 public override void WriteLine(string format, object arg0, object arg1, object arg2) { hlsg.OnConsoleOutputChanged(string.Format(format, arg0, arg1, arg2) + Environment.NewLine); }105 public override void WriteLine(string format, params object[] arg) { hlsg.OnConsoleOutputChanged(string.Format(format, arg) + Environment.NewLine); }106 public override void WriteLine(uint value) { hlsg.OnConsoleOutputChanged(value + Environment.NewLine); }107 public override void WriteLine(ulong value) { hlsg.OnConsoleOutputChanged(value + Environment.NewLine); }90 public override void WriteLine() { usb.OnConsoleOutputChanged(Environment.NewLine); } 91 public override void WriteLine(bool value) { usb.OnConsoleOutputChanged(value + Environment.NewLine); } 92 public override void WriteLine(char value) { usb.OnConsoleOutputChanged(value + Environment.NewLine); } 93 public override void WriteLine(char[] buffer) { usb.OnConsoleOutputChanged(new string(buffer) + Environment.NewLine); } 94 public override void WriteLine(char[] buffer, int index, int count) { usb.OnConsoleOutputChanged(new string(buffer, index, count) + Environment.NewLine); } 95 public override void WriteLine(decimal value) { usb.OnConsoleOutputChanged(value + Environment.NewLine); } 96 public override void WriteLine(double value) { usb.OnConsoleOutputChanged(value + Environment.NewLine); } 97 public override void WriteLine(float value) { usb.OnConsoleOutputChanged(value + Environment.NewLine); } 98 public override void WriteLine(int value) { usb.OnConsoleOutputChanged(value + Environment.NewLine); } 99 public override void WriteLine(long value) { usb.OnConsoleOutputChanged(value + Environment.NewLine); } 100 public override void WriteLine(object value) { usb.OnConsoleOutputChanged(value + Environment.NewLine); } 101 public override void WriteLine(string value) { usb.OnConsoleOutputChanged(value + Environment.NewLine); } 102 public override void WriteLine(string format, object arg0) { usb.OnConsoleOutputChanged(string.Format(format, arg0) + Environment.NewLine); } 103 public override void WriteLine(string format, object arg0, object arg1) { usb.OnConsoleOutputChanged(string.Format(format, arg0, arg1) + Environment.NewLine); } 104 public override void WriteLine(string format, object arg0, object arg1, object arg2) { usb.OnConsoleOutputChanged(string.Format(format, arg0, arg1, arg2) + Environment.NewLine); } 105 public override void WriteLine(string format, params object[] arg) { usb.OnConsoleOutputChanged(string.Format(format, arg) + Environment.NewLine); } 106 public override void WriteLine(uint value) { usb.OnConsoleOutputChanged(value + Environment.NewLine); } 107 public override void WriteLine(ulong value) { usb.OnConsoleOutputChanged(value + Environment.NewLine); } 108 108 #endregion 109 109 #endregion
Note: See TracChangeset
for help on using the changeset viewer.