Update by Francesco Delfino
[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 //   Francesco Delfino (pluto@tipic.com
7 //
8 // (C) 2002 Chris J Breisch
9 //     2003 Tipic, Inc. (http://www.tipic.com)
10 //
11
12 using System;
13
14 namespace Microsoft.VisualBasic \r
15 {
16         [Microsoft.VisualBasic.CompilerServices.StandardModuleAttribute] 
17         sealed public class Information {
18                 // Declarations
19                 // Constructors
20                 // Properties
21                 // Methods
22                 [MonoTODO]
23                 public static Microsoft.VisualBasic.ErrObject Err () { 
24                         return Microsoft.VisualBasic.CompilerServices.ProjectData.Err;
25                 }
26                 [MonoTODO]
27                 [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] 
28                 public static System.Int32 Erl () { throw new NotImplementedException (); }
29                 [MonoTODO]
30                 public static System.Boolean IsArray (System.Object VarName) { throw new NotImplementedException (); }
31                 [MonoTODO]
32                 public static System.Boolean IsDate (System.Object Expression) { throw new NotImplementedException (); }
33                 [MonoTODO]
34                 public static System.Boolean IsDBNull (System.Object Expression) { throw new NotImplementedException (); }
35                 [MonoTODO]
36                 public static System.Boolean IsNothing (System.Object Expression) { throw new NotImplementedException (); }
37                 [MonoTODO]
38                 public static System.Boolean IsError (System.Object Expression) { throw new NotImplementedException (); }
39                 [MonoTODO]
40                 public static System.Boolean IsReference (System.Object Expression) { throw new NotImplementedException (); }
41                 [MonoTODO]
42                 public static System.Boolean IsNumeric (System.Object Expression) { throw new NotImplementedException (); }
43                 [MonoTODO]
44                 public static System.Int32 LBound (System.Array Array, [System.Runtime.InteropServices.Optional] [System.ComponentModel.DefaultValue(1)] System.Int32 Rank) { throw new NotImplementedException (); }
45                 [MonoTODO]
46                 public static System.Int32 UBound (System.Array Array, [System.Runtime.InteropServices.Optional] [System.ComponentModel.DefaultValue(1)] System.Int32 Rank) { throw new NotImplementedException (); }
47                 [MonoTODO]
48                 public static System.String TypeName (System.Object VarName) { throw new NotImplementedException (); }
49                 [MonoTODO]
50                 public static System.String SystemTypeName (System.String VbName) { throw new NotImplementedException (); }
51                 [MonoTODO]
52                 public static System.String VbTypeName (System.String UrtName) { throw new NotImplementedException (); }
53                 [MonoTODO]
54                 public static System.Int32 QBColor (System.Int32 Color) { throw new NotImplementedException (); }
55                 [MonoTODO]
56                 public static System.Int32 RGB (System.Int32 Red, System.Int32 Green, System.Int32 Blue) { throw new NotImplementedException (); }
57                 [MonoTODO]
58                 public static Microsoft.VisualBasic.VariantType VarType (System.Object VarName) { throw new NotImplementedException (); }
59                 // Events
60         };
61 }