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