コード例 #1
0
ファイル: Process.cs プロジェクト: PhillP/NSimulate
 /// <summary>
 /// Initializes a new instance of the <see cref="NSimulate.Process"/> class.
 /// </summary>
 public Process(SimulationContext context, object key)
     : base(context, key)
 {
     SimulationState = new ProcessSimulationState();
 }
コード例 #2
0
ファイル: Process.cs プロジェクト: PhillP/NSimulate
 /// <summary>
 /// Initializes a new instance of the <see cref="NSimulate.Process"/> class.
 /// </summary>
 public Process(object key)
     : base(key)
 {
     SimulationState = new ProcessSimulationState();
 }
コード例 #3
0
ファイル: Process.cs プロジェクト: PhillP/NSimulate
 /// <summary>
 /// Initializes a new instance of the <see cref="NSimulate.Process"/> class.
 /// </summary>
 public Process(SimulationContext context)
     : base(context)
 {
     SimulationState = new ProcessSimulationState();
 }
コード例 #4
0
ファイル: Process.cs プロジェクト: PhillP/NSimulate
 /// <summary>
 /// Initializes a new instance of the <see cref="NSimulate.Process"/> class.
 /// </summary>
 public Process()
 {
     SimulationState = new ProcessSimulationState();
 }
コード例 #5
0
ファイル: Process.cs プロジェクト: Krockema/NSimulate
 /// <summary>
 /// Initializes a new instance of the <see cref="NSimulate.Process"/> class.
 /// </summary>
 public Process(SimulationContext context, object key)
     : base(context, key)
 {
     SimulationState = new ProcessSimulationState();
 }
コード例 #6
0
ファイル: Process.cs プロジェクト: Krockema/NSimulate
 /// <summary>
 /// Initializes a new instance of the <see cref="NSimulate.Process"/> class.
 /// </summary>
 public Process(SimulationContext context)
     : base(context)
 {
     SimulationState = new ProcessSimulationState();
 }
コード例 #7
0
ファイル: Process.cs プロジェクト: Krockema/NSimulate
 /// <summary>
 /// Initializes a new instance of the <see cref="NSimulate.Process"/> class.
 /// </summary>
 public Process(object key)
     : base(key)
 {
     SimulationState = new ProcessSimulationState();
 }
コード例 #8
0
ファイル: Process.cs プロジェクト: Krockema/NSimulate
 /// <summary>
 /// Initializes a new instance of the <see cref="NSimulate.Process"/> class.
 /// </summary>
 public Process()
 {
     SimulationState = new ProcessSimulationState();
 }