Update VS project files
[mono.git] / mcs / class / corlib / System.Text / EncodingInfo.cs
index 599e2160d71319af9de979621b15627d56f52a3d..fd2b7a19de3c7d31391c0d5512d429dd5d00d74c 100644 (file)
@@ -1,5 +1,5 @@
 //
-// EncodingInfo.cs
+// System.Text.EncodingInfo.cs
 //
 // Author:
 //     Atsushi Enomoto <atsushi@ximian.com>
@@ -28,7 +28,6 @@
 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 //
 
-#if NET_2_0
 
 namespace System.Text
 {
@@ -60,9 +59,9 @@ namespace System.Text
                        }
                }
 
-               public override bool Equals (object other)
+               public override bool Equals (object value)
                {
-                       EncodingInfo ei = other as EncodingInfo;
+                       EncodingInfo ei = value as EncodingInfo;
                        return ei != null &&
                                ei.codepage == codepage;
                }
@@ -78,5 +77,3 @@ namespace System.Text
                }
        }
 }
-
-#endif