Ejemplo n.º 1
0
 public OpCode(string inName, UInt32 inValue)
 {
     Name     = inName;
     Value    = inValue;
     Explorer = null;
     Count    = 0;
 }
Ejemplo n.º 2
0
 public OpCode(string inName, UInt32 inValue)
 {
     Name = inName;
     Value = inValue;
     Explorer = null;
     Count = 0;
 }
Ejemplo n.º 3
0
 public void RegisterExplorer(string Name, ExplorerMethod Explorer)
 {
     foreach (OpCode oc in OpCodeList)
     {
         if (oc.Name == Name)
         {
             oc.Explorer = Explorer;
             return;
         }
     }
 }
Ejemplo n.º 4
0
 public void RegisterExplorer(string Name, ExplorerMethod Explorer)
 {
     foreach (OpCode oc in OpCodeList)
     {
         if (oc.Name == Name)
         {
             oc.Explorer = Explorer;
             return;
         }
     }
 }