8
Где появляется вывод System.Diagnostics.Debug.Write?
Следующая программа C # (построенная с csc hello.cs) печатает только Hello via Console!на консоли и Hello via OutputDebugStringв окне DebugView. Однако я не вижу ни одного из System.Diagnostics.*звонков. Это почему? using System; using System.Runtime.InteropServices; class Hello { [DllImport("kernel32.dll", CharSet=CharSet.Auto)] public static extern void OutputDebugString(string message); static void Main() { Console.Write( …