2001-11-05 Miguel de Icaza <miguel@ximian.com>
[mono.git] / mcs / class / corlib / System / Buffer.cs
1 //
2 // System/Buffer.cs
3 //
4 // Author:
5 //   Paolo Molaro (lupus@ximian.com)
6 //
7 // (C) 2001 Ximian, Inc.  http://www.ximian.com
8 //
9
10 namespace System {
11         public sealed class Buffer {
12                 public static void BlockCopy( Array src, int srcOffset, Array dst, int dstOffset, int count)
13                 {
14                         throw new NotImplementedException ();
15                 }
16
17                 public static int ByteLength( Array array)
18                 {
19                         throw new NotImplementedException ();
20                 }
21
22                 public static byte GetByte( Array array, int index)
23                 {
24                         throw new NotImplementedException ();
25                 }
26
27                 public static void SetByte( Array array, int index, byte value)
28                 {
29                         throw new NotImplementedException ();
30                 }
31         }
32 }