UnicodeEncoding.cs 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. // -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*-
  2. //
  3. // System.Text.UnicodeEncoding.cs
  4. //
  5. // Author:
  6. // Sean MacIsaac ([email protected])
  7. //
  8. // (C) Ximian, Inc. http://www.ximian.com
  9. //
  10. namespace System.Text {
  11. public class UnicodeEncoding : Encoding {
  12. public UnicodeEncoding() {
  13. }
  14. public UnicodeEncoding(bool bigEndian, bool byteOrderMark) {
  15. }
  16. public override int GetByteCount(char[] chars, int index, int count) {
  17. // FIXME
  18. return 0;
  19. }
  20. public override int GetBytes(char[] chars, int charIndex, int charCount, byte[] bytes, int byteIndex) {
  21. // FIXME
  22. return 0;
  23. }
  24. public override int GetChars(byte[] bytes, int byteIndex, int byteCount, char[] chars, int charIndex) {
  25. // FIXME
  26. return 0;
  27. }
  28. public override int GetMaxByteCount(int charCount) {
  29. // FIXME
  30. return 0;
  31. }
  32. public override int GetMaxCharCount(int byteCount) {
  33. // FIXME
  34. return 0;
  35. }
  36. }
  37. }