예제 #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
 /// <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
 /// <summary>
 /// Initializes a new instance of the <see cref="NSimulate.Process"/> class.
 /// </summary>
 public Process(SimulationContext context)
     : base(context)
 {
     SimulationState = new ProcessSimulationState();
 }
예제 #7
0
 /// <summary>
 /// Initializes a new instance of the <see cref="NSimulate.Process"/> class.
 /// </summary>
 public Process(object key)
     : base(key)
 {
     SimulationState = new ProcessSimulationState();
 }
예제 #8
0
 /// <summary>
 /// Initializes a new instance of the <see cref="NSimulate.Process"/> class.
 /// </summary>
 public Process()
 {
     SimulationState = new ProcessSimulationState();
 }