AvalonStudio.Platforms.Platform.AttachConsole C# (CSharp) Метод

AttachConsole() публичный статический Метод

public static AttachConsole ( int pid ) : bool
pid int
Результат bool
        public static bool AttachConsole(int pid)
        {
            switch (PlatformIdentifier)
            {
                case PlatformID.Win32NT:
                    return Win32AttachConsole(pid);

                default:
                    return true;
            }
        }