Advertisement
Guest User

Untitled

a guest
May 27th, 2016
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.79 KB | None | 0 0
  1.  
  2.     class enc : Encoding
  3.     {
  4.         public override int GetByteCount(char[] chars, int index, int count)
  5.         {
  6.             throw new NotImplementedException();
  7.         }
  8.  
  9.         public override int GetBytes(char[] chars, int charIndex, int charCount, byte[] bytes, int byteIndex)
  10.         {
  11.             throw new NotImplementedException();
  12.         }
  13.  
  14.         public override int GetCharCount(byte[] bytes, int index, int count)
  15.         {
  16.             throw new NotImplementedException();
  17.         }
  18.  
  19.         public override int GetChars(byte[] bytes, int byteIndex, int byteCount, char[] chars, int charIndex)
  20.         {
  21.             throw new NotImplementedException();
  22.         }
  23.  
  24.         public override int GetMaxByteCount(int charCount)
  25.         {
  26.             throw new NotImplementedException();
  27.         }
  28.  
  29.         public override int GetMaxCharCount(int byteCount)
  30.         {
  31.             throw new NotImplementedException();
  32.         }
  33.     }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement