Merge pull request #3511 from henricm/fix-no-socket-reuse
[mono.git] / mcs / class / corlib / System / IConsoleDriver.cs
index a51f11fdee7cb80519dab93fa29171a84bf68d06..ef6bd5d446df73ee26ef3ba0b45f31c893c02efc 100644 (file)
@@ -26,7 +26,6 @@
 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 //
-#if NET_2_0
 namespace System {
        interface IConsoleDriver {
                ConsoleColor BackgroundColor { get; set; }
@@ -37,7 +36,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; }
@@ -67,5 +65,4 @@ namespace System {
                string ReadLine ();
        }
 }
-#endif