Changeset 13218 for trunk/sources/HeuristicLab.Scripting/3.3/Scripts
- Timestamp:
- 11/17/15 14:19:44 (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Scripting/3.3/Scripts/CSharp/CSharpScript.cs
r13080 r13218 32 32 [StorableClass] 33 33 public class CSharpScript : ExecutableScript, IStorableContent { 34 #region Constants35 protected override string CodeTemplate { get { return ScriptTemplates.CSharpScriptTemplate; } }36 #endregion37 38 34 #region Fields & Properties 39 35 private CSharpScriptBase compiledScript; … … 56 52 } 57 53 public CSharpScript() 58 : base( ) {54 : base(ScriptTemplates.CSharpScriptTemplate) { 59 55 variableStore = new VariableStore(); 60 56 }
Note: See TracChangeset
for help on using the changeset viewer.