| 12345678910111213141516171819202122232425262728293031323334353637383940 |
- //
- // System.Text.UTF7Encoding.cs
- //
- // Author:
- // Sean MacIsaac ([email protected])
- //
- // (C) Ximian, Inc. http://www.ximian.com
- //
- namespace System.Text {
-
- public class UTF7Encoding : Encoding {
- public override int GetByteCount(char[] chars, int index, int count) {
- // FIXME
- return 0;
- }
- public override int GetBytes(char[] chars, int charIndex, int charCount, byte[] bytes, int byteIndex) {
- // FIXME
- return 0;
- }
- public override int GetChars(byte[] bytes, int byteIndex, int byteCount, char[] chars, int charIndex) {
- // FIXME
- return 0;
- }
- public override int GetMaxByteCount(int charCount) {
- // FIXME
- return 0;
- }
- public override int GetMaxCharCount(int byteCount) {
- // FIXME
- return 0;
- }
- }
- }
|