String.Split(char[],int,StringSplitOptions) should remove empty entries while
[mono.git] / mcs / class / corlib / System / IConsoleDriver.cs
index 422fe71a7401147f23b29a22fb97d745a8e24582..a503f2121af78c7bab1b2fd87566a0af62b5f0ec 100644 (file)
@@ -37,7 +37,6 @@ namespace System {
                int CursorSize { get; set; } 
                int CursorTop { get; set; }
                bool CursorVisible { get; set; }
-               bool Echo { get; set; }  // mono
                ConsoleColor ForegroundColor { get; set; }
                bool KeyAvailable { get; }
                bool Initialized { get; }
@@ -51,6 +50,7 @@ namespace System {
                int WindowTop { get; set; }
                int WindowWidth { get; set; }
 
+               void Init ();
                void Beep (int frequency, int duration);
                void Clear ();
                void MoveBufferArea (int sourceLeft, int sourceTop, int sourceWidth, int sourceHeight,
@@ -63,6 +63,7 @@ namespace System {
                void SetCursorPosition (int left, int top);
                void SetWindowPosition (int left, int top);
                void SetWindowSize (int width, int height);
+               string ReadLine ();
        }
 }
 #endif