Merge pull request #3381 from krytarowski/netbsd-support-20
[mono.git] / mcs / class / corlib / System / KnownTerminals.cs
index d5c97b901d08148f431f204c513464d02a7912a5..14697f555885e2b1b5348afa27049e6e3961f2b3 100644 (file)
 // }
 //
 
-#if NET_2_0
-namespace System {
-       class KnownTerminals {
-               private KnownTerminals ()
-               {
-               }
-
-               public static byte [] linux = {
+namespace System
+{
+       static class KnownTerminals
+       {
+               public static byte [] linux {
+                       get { return new byte[] {
                        26,1,20,0,29,0,16,0,125,1,41,3,108,105,110,117,120,124,108,105,110,117,120,32,99,111,110,115,111,
                        108,101,0,0,1,0,0,1,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,255,255,8,0,255,255,255,255,
                        255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,8,0,64,0,18,0,255,255,0,0,
@@ -137,8 +135,11 @@ namespace System {
                        49,48,48,48,125,37,47,37,48,50,120,0,27,91,77,0,27,91,51,37,112,49,37,100,109,0,27,91,52,37,112,49,
                        37,100,109,0,27,91,49,49,109,0,27,91,49,48,109,0
                        }; // linux
+                       }
+               }
 
-               public static byte [] xterm = {
+               public static byte [] xterm {
+                       get { return new byte[] {
                        26,1,28,0,29,0,15,0,157,1,150,4,120,116,101,114,109,124,88,49,49,32,116,101,114,109,105,110,97,108,
                        32,101,109,117,108,97,116,111,114,0,0,1,0,0,1,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,80,
                        0,8,0,24,0,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,8,0,64,
@@ -210,8 +211,11 @@ namespace System {
                        37,61,37,116,51,37,101,37,112,49,37,100,37,59,109,0,27,91,77,0,27,91,51,37,112,49,37,100,109,0,27,
                        91,52,37,112,49,37,100,109,0,27,108,0,27,109,0
                        }; // xterm
+                       }
+               }
 
-               public static byte [] ansi = {
+               public static byte [] ansi {
+                       get { return new byte [] {
                        26,1,40,0,23,0,16,0,125,1,68,2,97,110,115,105,124,97,110,115,105,47,112,99,45,116,101,114,109,32,
                        99,111,109,112,97,116,105,98,108,101,32,119,105,116,104,32,99,111,108,111,114,0,0,1,0,0,0,0,0,0,0,
                        0,0,0,0,1,1,0,0,0,0,0,0,0,1,0,80,0,8,0,24,0,255,255,255,255,255,255,255,255,255,255,255,255,255,255,
@@ -264,7 +268,8 @@ namespace System {
                        57,109,0,27,91,51,37,112,49,37,100,109,0,27,91,52,37,112,49,37,100,109,0,27,40,66,0,27,41,66,0,27,
                        42,66,0,27,43,66,0,27,91,49,49,109,0,27,91,49,48,109,0
                        }; // ansi
+                       }
+               }
        }
 }
-#endif