New test.
[mono.git] / mcs / class / I18N / MidEast / CP28598.cs
index a2b11fffe895923aff0335db2fb4b1a92c314b9c..88ec90e74f7b2b2b0908a43bd454ca411a47eeb1 100644 (file)
@@ -28,8 +28,10 @@ namespace I18N.MidEast
 {
 
 using System;
+using System.Text;
 using I18N.Common;
 
+[Serializable]
 public class CP28598 : ByteEncoding
 {
        public CP28598()
@@ -84,10 +86,15 @@ public class CP28598 : ByteEncoding
                '\u003F', '\u003F', '\u003F', '\u003F', 
        };
 
-       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++]);
@@ -158,15 +165,21 @@ public class CP28598 : ByteEncoding
                                        if(ch >= 0xFF01 && ch <= 0xFF5E)
                                                ch -= 0xFEE0;
                                        else
+#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)
        {
@@ -249,9 +262,11 @@ public class CP28598 : ByteEncoding
                        --charCount;
                }
        }
+       */
 
 }; // class CP28598
 
+[Serializable]
 public class ENCiso_8859_8 : CP28598
 {
        public ENCiso_8859_8() : base() {}