Fixed to conform to Mono standards for incomplete functionality.
[mono.git] / mcs / class / Microsoft.VisualBasic / Microsoft.VisualBasic / Information.cs
1 //
2 // Information.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 \r
13 {
14         [Microsoft.VisualBasic.CompilerServices.StandardModuleAttribute] 
15         sealed public class Information {
16                 // Declarations
17                 // Constructors
18                 // Properties
19                 // Methods
20                 [MonoTODO]
21                 public static Microsoft.VisualBasic.ErrObject Err () { throw new NotImplementedException (); }
22                 [MonoTODO]
23                 [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] 
24                 public static System.Int32 Erl () { throw new NotImplementedException (); }
25                 [MonoTODO]
26                 public static System.Boolean IsArray (System.Object VarName) { throw new NotImplementedException (); }
27                 [MonoTODO]
28                 public static System.Boolean IsDate (System.Object Expression) { throw new NotImplementedException (); }
29                 [MonoTODO]
30                 public static System.Boolean IsDBNull (System.Object Expression) { throw new NotImplementedException (); }
31                 [MonoTODO]
32                 public static System.Boolean IsNothing (System.Object Expression) { throw new NotImplementedException (); }
33                 [MonoTODO]
34                 public static System.Boolean IsError (System.Object Expression) { throw new NotImplementedException (); }
35                 [MonoTODO]
36                 public static System.Boolean IsReference (System.Object Expression) { throw new NotImplementedException (); }
37                 [MonoTODO]
38                 public static System.Boolean IsNumeric (System.Object Expression) { throw new NotImplementedException (); }
39                 [MonoTODO]
40                 public static System.Int32 LBound (System.Array Array, [System.Runtime.InteropServices.Optional] [System.ComponentModel.DefaultValue(1)] System.Int32 Rank) { throw new NotImplementedException (); }
41                 [MonoTODO]
42                 public static System.Int32 UBound (System.Array Array, [System.Runtime.InteropServices.Optional] [System.ComponentModel.DefaultValue(1)] System.Int32 Rank) { throw new NotImplementedException (); }
43                 [MonoTODO]
44                 public static System.String TypeName (System.Object VarName) { throw new NotImplementedException (); }
45                 [MonoTODO]
46                 public static System.String SystemTypeName (System.String VbName) { throw new NotImplementedException (); }
47                 [MonoTODO]
48                 public static System.String VbTypeName (System.String UrtName) { throw new NotImplementedException (); }
49                 [MonoTODO]
50                 public static System.Int32 QBColor (System.Int32 Color) { throw new NotImplementedException (); }
51                 [MonoTODO]
52                 public static System.Int32 RGB (System.Int32 Red, System.Int32 Green, System.Int32 Blue) { throw new NotImplementedException (); }
53                 [MonoTODO]
54                 public static Microsoft.VisualBasic.VariantType VarType (System.Object VarName) { throw new NotImplementedException (); }
55                 // Events
56         };
57 }