System.Net.BaseLoggingObject.DumpArray C# (CSharp) Method

DumpArray() private method

private DumpArray ( bool shouldClose ) : void
shouldClose bool
return void
        internal virtual void DumpArray(bool shouldClose) {
        }

Usage Example

示例#1
0
 public static void Assert(string message, string detailMessage)
 {
     try
     {
         Logobject.DumpArray(false);
     }
     finally
     {
         UnsafeNclNativeMethods.DebugBreak();
         Debugger.Break();
     }
 }
All Usage Examples Of System.Net.BaseLoggingObject::DumpArray