Merge pull request #485 from mtausig/master
[mono.git] / mcs / class / I18N / Rare / CP500.cs
index 631ba6c71f86a32b1d1a8f065e1fee20b309854f..0bc772d82036f505b2316d06b340681da106f0d1 100644 (file)
@@ -28,8 +28,10 @@ namespace I18N.Rare
 {
 
 using System;
+using System.Text;
 using I18N.Common;
 
+[Serializable]
 public class CP500 : ByteEncoding
 {
        public CP500()
@@ -84,10 +86,15 @@ public class CP500 : ByteEncoding
                '\u00DC', '\u00D9', '\u00DA', '\u009F', 
        };
 
-       protected override void ToBytes(char[] chars, int charIndex, int charCount,
-                                       byte[] bytes, int byteIndex)
+       protected unsafe override void ToBytes(char* chars, int charCount,
+                                       byte* bytes, int byteCount)
        {
                int ch;
+               int charIndex = 0;
+               int byteIndex = 0;
+#if NET_2_0
+               EncoderFallbackBuffer buffer = null;
+#endif
                while(charCount > 0)
                {
                        ch = (int)(chars[charIndex++]);
@@ -478,13 +485,21 @@ public class CP500 : ByteEncoding
                                case 0xFF5C: ch = 0xBB; break;
                                case 0xFF5D: ch = 0xD0; break;
                                case 0xFF5E: ch = 0xA1; break;
-                               default: ch = 0x3F; break;
+                               default:
+#if NET_2_0
+                                       HandleFallback (ref buffer, chars, ref charIndex, ref charCount, bytes, ref byteIndex, ref byteCount);
+#else
+                                               ch = 0x3F;
+#endif
+                                       break;
                        }
                        bytes[byteIndex++] = (byte)ch;
                        --charCount;
+                       --byteCount;
                }
        }
 
+       /*
        protected override void ToBytes(String s, int charIndex, int charCount,
                                        byte[] bytes, int byteIndex)
        {
@@ -885,9 +900,11 @@ public class CP500 : ByteEncoding
                        --charCount;
                }
        }
+       */
 
 }; // class CP500
 
+[Serializable]
 public class ENCibm500 : CP500
 {
        public ENCibm500() : base() {}