Initial revision
[mono.git] / mcs / class / Microsoft.VisualBasic / Microsoft.VisualBasic / Microsoft.VisualBasic.CompilerServices / Utils.cs
1 //
2 // Utils.cs
3 //
4 // Author:
5 //   Chris J Breisch (cjbreisch@altavista.net) 
6 //
7 // (C) 2002 Chris J Breisch
8 //
9
10 using System;
11
12 namespace Microsoft.VisualBasic.CompilerServices \r
13 {
14         [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] 
15         [Microsoft.VisualBasic.CompilerServices.StandardModuleAttribute] 
16         sealed public class Utils {
17                 // Declarations
18                 // Constructors
19                 // Properties
20                 // Methods
21                 [MonoTODO]
22                 public static void ThrowException (System.Int32 hr) { throw new NotImplementedException (); }
23                 [MonoTODO]
24                 public static System.Object SetCultureInfo (System.Globalization.CultureInfo Culture) { throw new NotImplementedException (); }
25                 [MonoTODO]
26                 public static System.Array CopyArray (System.Array arySrc, System.Array aryDest) { throw new NotImplementedException (); }
27                 [MonoTODO]
28                 public static System.String MethodToString (System.Reflection.MethodBase Method) { throw new NotImplementedException (); }
29                 // Events
30         };
31 }