- Timestamp:
- 06/25/15 18:21:19 (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/HiveStatistics/sources/HeuristicLab.Scripting/3.3/Scripts/CSharp/CSharpScript.cs
r12012 r12515 30 30 namespace HeuristicLab.Scripting { 31 31 [Item("C# Script", "An empty C# script.")] 32 [Creatable( "Scripts")]32 [Creatable(CreatableAttribute.Categories.Scripts, Priority = 100)] 33 33 [StorableClass] 34 34 public class CSharpScript : Script, IStorableContent { … … 102 102 OnScriptExecutionStarted(); 103 103 compiledScript.Execute(VariableStore); 104 } catch (Exception e) { 104 } 105 catch (Exception e) { 105 106 ex = e; 106 } finally { 107 } 108 finally { 107 109 scriptThread = null; 108 110 OnScriptExecutionFinished(ex);
Note: See TracChangeset
for help on using the changeset viewer.