Example #1
0
 // Creates a new guid with all contents having value of 0
 private Guid(bool blank)
 {
     // Must initialize value class members even if the native
     // function reinitializes them.  Compiler appeasement.
     _a = 0;
     _b = 0;
     _c = 0;
     _d = 0;
     _e = 0;
     _f = 0;
     _g = 0;
     _h = 0;
     _i = 0;
     _j = 0;
     _k = 0;
     if (!blank)
     {
         // Create a new Guid...
         Counter++;
         _k = (byte)(Counter & 0xff);
         _j = (byte)(Counter >> 8);
         VTable.DebugPrint("CreateGuid.Guid(" + Counter + ")\n");
     }
 }
Example #2
0
 internal static void DebugPrint(String v, __arglist)
 {
     VTable.DebugPrint(v, new ArgIterator(__arglist));
 }