// // Utils.cs // // Author: // Chris J Breisch (cjbreisch@altavista.net) // // (C) 2002 Chris J Breisch // using System; namespace Microsoft.VisualBasic.CompilerServices { [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] [Microsoft.VisualBasic.CompilerServices.StandardModuleAttribute] sealed public class Utils { // Declarations // Constructors // Properties // Methods [MonoTODO] public static void ThrowException (System.Int32 hr) { throw new NotImplementedException (); } [MonoTODO] public static System.Object SetCultureInfo (System.Globalization.CultureInfo Culture) { throw new NotImplementedException (); } [MonoTODO] public static System.Array CopyArray (System.Array arySrc, System.Array aryDest) { throw new NotImplementedException (); } [MonoTODO] public static System.String MethodToString (System.Reflection.MethodBase Method) { throw new NotImplementedException (); } // Events }; }