System.Diagnostics.Debug.Print C# (CSharp) 메소드

Print() 개인적인 메소드

private Print ( string message ) : void
message string
리턴 void
        public static void Print(string message)
        {
            Write(message);
        }

Usage Example

예제 #1
0
 private void ApplyDebugFlags(ref DeviceCreationFlags dx11flag, ref SlimDX.Direct3D10.DeviceCreationFlags dx10flag_for2DDraw)
 {
     Debug.Print("デバイスはデバッグモードで作成されました。");
     //dx11flag = dx11flag | DeviceCreationFlags.Debug;
     dx10flag_for2DDraw = dx10flag_for2DDraw | SlimDX.Direct3D10.DeviceCreationFlags.BgraSupport;
 }
All Usage Examples Of System.Diagnostics.Debug::Print