ASCIIEncoding.cs 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. //
  2. // System.Text.ASCIIEncoding.cs
  3. //
  4. // Author:
  5. // Sean MacIsaac ([email protected])
  6. //
  7. // (C) Ximian, Inc. http://www.ximian.com
  8. //
  9. namespace System.Text {
  10. public class ASCIIEncoding : Encoding {
  11. public override int GetByteCount(char[] chars, int index, int count) {
  12. // FIXME
  13. return 0;
  14. }
  15. public override int GetBytes(char[] chars, int charIndex, int charCount, byte[] bytes, int byteIndex) {
  16. // FIXME
  17. return 0;
  18. }
  19. public override int GetChars(byte[] bytes, int byteIndex, int byteCount, char[] chars, int charIndex) {
  20. // FIXME
  21. return 0;
  22. }
  23. public override int GetMaxByteCount(int charCount) {
  24. // FIXME
  25. return 0;
  26. }
  27. public override int GetMaxCharCount(int byteCount) {
  28. // FIXME
  29. return 0;
  30. }
  31. }
  32. }