Merge pull request #485 from mtausig/master
[mono.git] / mcs / class / I18N / Rare / CP1144.cs
index 4debbd934eb8ed068591925b56834452a3238758..d13639c4533637e66b1cd4ae428f1067a0fcbf08 100644 (file)
@@ -28,8 +28,10 @@ namespace I18N.Rare
 {
 
 using System;
+using System.Text;
 using I18N.Common;
 
+[Serializable]
 public class CP1144 : ByteEncoding
 {
        public CP1144()
@@ -84,10 +86,15 @@ public class CP1144 : 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++]);
@@ -477,13 +484,21 @@ public class CP1144 : ByteEncoding
                                case 0xFF5C: ch = 0xBB; break;
                                case 0xFF5D: ch = 0x54; break;
                                case 0xFF5E: ch = 0x58; 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)
        {
@@ -883,9 +898,11 @@ public class CP1144 : ByteEncoding
                        --charCount;
                }
        }
+       */
 
 }; // class CP1144
 
+[Serializable]
 public class ENCibm1144 : CP1144
 {
        public ENCibm1144() : base() {}