コード例 #1
0
 public void PopConstructBlockId()
 {
     if (ConstructBlockIds.Count > 0)
     {
         ConstructBlockIds.RemoveAt(ConstructBlockIds.Count - 1);
     }
 }
コード例 #2
0
 /// <summary>
 /// Push the block ID of the block that will be executed
 /// </summary>
 /// <param name="id"></param>
 public void PushConstructBlockId(int id)
 {
     ConstructBlockIds.Add(id);
 }