Fixed to conform to Mono standards for incomplete functionality.
authorChris J. Breisch <cjbreisch@mono-cvs.ximian.com>
Sun, 12 May 2002 16:50:02 +0000 (16:50 -0000)
committerChris J. Breisch <cjbreisch@mono-cvs.ximian.com>
Sun, 12 May 2002 16:50:02 +0000 (16:50 -0000)
svn path=/trunk/mcs/; revision=4560

mcs/class/Microsoft.VisualBasic/Microsoft.VisualBasic/ComClassAttribute.cs
mcs/class/Microsoft.VisualBasic/Microsoft.VisualBasic/Conversion.cs
mcs/class/Microsoft.VisualBasic/Microsoft.VisualBasic/DateAndTime.cs
mcs/class/Microsoft.VisualBasic/Microsoft.VisualBasic/ErrObject.cs
mcs/class/Microsoft.VisualBasic/Microsoft.VisualBasic/FileSystem.cs
mcs/class/Microsoft.VisualBasic/Microsoft.VisualBasic/Globals.cs
mcs/class/Microsoft.VisualBasic/Microsoft.VisualBasic/Information.cs

index 1dc04845339bd6b802457f13b45c7d0f95e0e209..efd694246b4dcf9bc89320ca706b585ed4b161b0 100644 (file)
@@ -1,26 +1,35 @@
-//\r
-// ComClassAttribute.cs\r
-//\r
-// Author:\r
-//   Chris J Breisch (cjbreisch@altavista.net)\r
-//\r
-// (C) 2002 Chris J Breisch\r
-//\r
-namespace Microsoft.VisualBasic {\r
-       [System.AttributeUsageAttribute(System.AttributeTargets.Class)] \r
-       [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Auto)] \r
-       sealed public class ComClassAttribute : System.Attribute {\r
-               // Declarations\r
-               // Constructors\r
-               ComClassAttribute(System.String _ClassID) {}\r
-               ComClassAttribute(System.String _ClassID, System.String _InterfaceID) {}\r
-               ComClassAttribute(System.String _ClassID, System.String _InterfaceID, System.String _EventId) {}\r
-               // Properties\r
-               public System.String EventID { get {return "";} }\r
-               public System.Boolean InterfaceShadows { get {return false;} set {} }\r
-               public System.String ClassID { get {return "";} }\r
-               public System.String InterfaceID { get {return "";} }\r
-               // Methods\r
-               // Events\r
-       };\r
-}\r
+//
+// ComClassAttribute.cs
+//
+// Author:
+//   Chris J Breisch (cjbreisch@altavista.net) 
+//
+// (C) 2002 Chris J Breisch
+//
+
+using System;
+
+namespace Microsoft.VisualBasic {
+       [System.AttributeUsageAttribute(System.AttributeTargets.Class)] 
+       sealed public class ComClassAttribute : System.Attribute {
+               // Declarations
+               // Constructors
+               [MonoTODO]
+               ComClassAttribute(System.String _ClassID) { throw new NotImplementedException (); }
+               [MonoTODO]
+               ComClassAttribute(System.String _ClassID, System.String _InterfaceID) { throw new NotImplementedException (); }
+               [MonoTODO]
+               ComClassAttribute(System.String _ClassID, System.String _InterfaceID, System.String _EventId) { throw new NotImplementedException (); }
+               // Properties
+               [MonoTODO]
+               public System.String EventID { get { throw new NotImplementedException (); } }
+               [MonoTODO]
+               public System.Boolean InterfaceShadows { get { throw new NotImplementedException (); } }
+               [MonoTODO]
+               public System.String ClassID { get { throw new NotImplementedException (); } }
+               [MonoTODO]
+               public System.String InterfaceID { get { throw new NotImplementedException (); } }
+               // Methods
+               // Events
+       };
+}
index 4390ef678d65996f16b00e864720c9784cbb5c88..7243d68e810169421671d516847077be44afd606 100644 (file)
@@ -1,49 +1,76 @@
-//\r
-// Conversion.cs\r
-//\r
-// Author:\r
-//   Chris J Breisch (cjbreisch@altavista.net)\r
-//\r
-// (C) 2002 Chris J Breisch\r
-//\r
-namespace Microsoft.VisualBasic {\r
-       [Microsoft.VisualBasic.CompilerServices.StandardModuleAttribute] \r
-       [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Auto)] \r
-       sealed public class Conversion {\r
-               // Declarations\r
-               // Constructors\r
-               // Properties\r
-               // Methods\r
-               public static System.String ErrorToString () { return "";}\r
-               public static System.String ErrorToString (System.Int32 ErrorNumber) { return "";}\r
-               public static System.Int16 Fix (System.Int16 Number) { return 0;}\r
-               public static System.Int32 Fix (System.Int32 Number) { return 0;}\r
-               public static System.Int64 Fix (System.Int64 Number) { return 0;}\r
-               public static System.Double Fix (System.Double Number) { return 0;}\r
-               public static System.Single Fix (System.Single Number) { return 0;}\r
-               public static System.Decimal Fix (System.Decimal Number) { return 0;}\r
-               public static System.Object Fix (System.Object Number) { return null;}\r
-               public static System.Int16 Int (System.Int16 Number) { return 0;}\r
-               public static System.Int32 Int (System.Int32 Number) { return 0;}\r
-               public static System.Int64 Int (System.Int64 Number) { return 0;}\r
-               public static System.Double Int (System.Double Number) { return 0;}\r
-               public static System.Single Int (System.Single Number) { return 0;}\r
-               public static System.Decimal Int (System.Decimal Number) { return 0;}\r
-               public static System.Object Int (System.Object Number) { return null;}\r
-               public static System.String Hex (System.Int16 Number) { return "";}\r
-               public static System.String Hex (System.Byte Number) { return "";}\r
-               public static System.String Hex (System.Int32 Number) { return "";}\r
-               public static System.String Hex (System.Int64 Number) { return "";}\r
-               public static System.String Hex (System.Object Number) { return "";}\r
-               public static System.String Oct (System.Int16 Number) { return "";}\r
-               public static System.String Oct (System.Byte Number) { return "";}\r
-               public static System.String Oct (System.Int32 Number) { return "";}\r
-               public static System.String Oct (System.Int64 Number) { return "";}\r
-               public static System.String Oct (System.Object Number) { return "";}\r
-               public static System.String Str (System.Object Number) { return "";}\r
-               public static System.Double Val (System.String InputStr) { return 0;}\r
-               public static System.Int32 Val (System.Char Expression) { return 0;}\r
-               public static System.Double Val (System.Object Expression) { return 0;}\r
-               // Events\r
-       };\r
-}\r
+//
+// Conversion.cs
+//
+// Author:
+//   Chris J Breisch (cjbreisch@altavista.net) 
+//
+// (C) 2002 Chris J Breisch
+//
+
+using System;
+
+namespace Microsoft.VisualBasic {
+       [Microsoft.VisualBasic.CompilerServices.StandardModuleAttribute] 
+       sealed public class Conversion {
+               // Declarations
+               // Constructors
+               // Properties
+               // Methods
+               [MonoTODO]
+               public static System.String ErrorToString () { throw new NotImplementedException (); }
+               [MonoTODO]
+               public static System.String ErrorToString (System.Int32 ErrorNumber) { throw new NotImplementedException (); }
+               [MonoTODO]
+               public static System.Int16 Fix (System.Int16 Number) { throw new NotImplementedException (); }
+               [MonoTODO]
+               public static System.Int32 Fix (System.Int32 Number) { throw new NotImplementedException (); }
+               [MonoTODO]
+               public static System.Int64 Fix (System.Int64 Number) { throw new NotImplementedException (); }
+               [MonoTODO]
+               public static System.Double Fix (System.Double Number) { throw new NotImplementedException (); }
+               [MonoTODO]
+               public static System.Single Fix (System.Single Number) { throw new NotImplementedException (); }
+               [MonoTODO]
+               public static System.Decimal Fix (System.Decimal Number) { throw new NotImplementedException (); }
+               [MonoTODO]
+               public static System.Object Fix (System.Object Number) { throw new NotImplementedException (); }
+               public static System.Int16 Int (System.Int16 Number) { return (System.Int16)Math.Floor(Number); }
+               public static System.Int32 Int (System.Int32 Number) { return (System.Int16)Math.Floor(Number); }
+               public static System.Int64 Int (System.Int64 Number) { return (System.Int16)Math.Floor(Number); }
+               public static System.Double Int (System.Double Number) { return (System.Int16)Math.Floor(Number); }
+               public static System.Single Int (System.Single Number) { return (System.Int16)Math.Floor(Number); }
+               [MonoTODO]
+               public static System.Decimal Int (System.Decimal Number) { throw new NotImplementedException (); }
+               [MonoTODO]
+               public static System.Object Int (System.Object Number) { throw new NotImplementedException (); }
+               [MonoTODO]
+               public static System.String Hex (System.Int16 Number) { throw new NotImplementedException (); }
+               [MonoTODO]
+               public static System.String Hex (System.Byte Number) { throw new NotImplementedException (); }
+               [MonoTODO]
+               public static System.String Hex (System.Int32 Number) { throw new NotImplementedException (); }
+               [MonoTODO]
+               public static System.String Hex (System.Int64 Number) { throw new NotImplementedException (); }
+               [MonoTODO]
+               public static System.String Hex (System.Object Number) { throw new NotImplementedException (); }
+               [MonoTODO]
+               public static System.String Oct (System.Int16 Number) { throw new NotImplementedException (); }
+               [MonoTODO]
+               public static System.String Oct (System.Byte Number) { throw new NotImplementedException (); }
+               [MonoTODO]
+               public static System.String Oct (System.Int32 Number) { throw new NotImplementedException (); }
+               [MonoTODO]
+               public static System.String Oct (System.Int64 Number) { throw new NotImplementedException (); }
+               [MonoTODO]
+               public static System.String Oct (System.Object Number) { throw new NotImplementedException (); }
+               [MonoTODO]
+               public static System.String Str (System.Object Number) { throw new NotImplementedException (); }
+               [MonoTODO]
+               public static System.Double Val (System.String InputStr) { throw new NotImplementedException (); }
+               [MonoTODO]
+               public static System.Int32 Val (System.Char Expression) { throw new NotImplementedException (); }
+               [MonoTODO]
+               public static System.Double Val (System.Object Expression) { throw new NotImplementedException (); }
+               // Events
+       };
+}
index 7de2c50d3e6f8ca3a27800fd4c06fe20ed62bcb7..e59ddcffb9d14c6f8c45eb4b40255e5c8da98dc2 100644 (file)
@@ -1,44 +1,72 @@
-//\r
-// DateAndTime.cs\r
-//\r
-// Author:\r
-//   Chris J Breisch (cjbreisch@altavista.net)\r
-//\r
-// (C) 2002 Chris J Breisch\r
-//\r
-namespace Microsoft.VisualBasic {\r
-       [Microsoft.VisualBasic.CompilerServices.StandardModuleAttribute] \r
-       [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Auto)] \r
-       sealed public class DateAndTime {\r
-               // Declarations\r
-               // Constructors\r
-               // Properties\r
-               public static System.String DateString { get {return "";} set {} }\r
-               public static System.DateTime Today { get {return System.DateTime.MinValue;} set {} }\r
-               public static System.Double Timer { get {return 0;} }\r
-               public static System.DateTime Now { get {return System.DateTime.MinValue;} }\r
-               public static System.DateTime TimeOfDay { get {return System.DateTime.MinValue;} set {} }\r
-               public static System.String TimeString { get {return "";} set {} }\r
-               // Methods\r
-               public static System.DateTime DateAdd (Microsoft.VisualBasic.DateInterval Interval, System.Double Number, System.DateTime DateValue) { return System.DateTime.MinValue;}\r
-               public static System.Int64 DateDiff (Microsoft.VisualBasic.DateInterval Interval, System.DateTime Date1, System.DateTime Date2, [System.Runtime.InteropServices.Optional] [System.ComponentModel.DefaultValue(1)] Microsoft.VisualBasic.FirstDayOfWeek DayOfWeek, [System.Runtime.InteropServices.Optional] [System.ComponentModel.DefaultValue(1)] Microsoft.VisualBasic.FirstWeekOfYear WeekOfYear) { return 0;}\r
-               public static System.Int32 DatePart (Microsoft.VisualBasic.DateInterval Interval, System.DateTime DateValue, [System.Runtime.InteropServices.Optional] [System.ComponentModel.DefaultValue(1)] Microsoft.VisualBasic.FirstDayOfWeek FirstDayOfWeekValue, [System.Runtime.InteropServices.Optional] [System.ComponentModel.DefaultValue(1)] Microsoft.VisualBasic.FirstWeekOfYear FirstWeekOfYearValue) { return 0;}\r
-               public static System.DateTime DateAdd (System.String Interval, System.Double Number, System.Object DateValue) { return System.DateTime.MinValue;}\r
-               public static System.Int64 DateDiff (System.String Interval, System.Object Date1, System.Object Date2, [System.Runtime.InteropServices.Optional] [System.ComponentModel.DefaultValue(1)] Microsoft.VisualBasic.FirstDayOfWeek DayOfWeek, [System.Runtime.InteropServices.Optional] [System.ComponentModel.DefaultValue(1)] Microsoft.VisualBasic.FirstWeekOfYear WeekOfYear) { return 0;}\r
-               public static System.Int32 DatePart (System.String Interval, System.Object DateValue, [System.Runtime.InteropServices.Optional] [System.ComponentModel.DefaultValue(1)] Microsoft.VisualBasic.FirstDayOfWeek DayOfWeek, [System.Runtime.InteropServices.Optional] [System.ComponentModel.DefaultValue(1)] Microsoft.VisualBasic.FirstWeekOfYear WeekOfYear) { return 0;}\r
-               public static System.DateTime DateSerial (System.Int32 Year, System.Int32 Month, System.Int32 Day) { return System.DateTime.MinValue;}\r
-               public static System.DateTime TimeSerial (System.Int32 Hour, System.Int32 Minute, System.Int32 Second) { return System.DateTime.MinValue;}\r
-               public static System.DateTime DateValue (System.String StringDate) { return System.DateTime.MinValue;}\r
-               public static System.DateTime TimeValue (System.String StringTime) { return System.DateTime.MinValue;}\r
-               public static System.Int32 Year (System.DateTime DateValue) { return 0;}\r
-               public static System.Int32 Month (System.DateTime DateValue) { return 0;}\r
-               public static System.Int32 Day (System.DateTime DateValue) { return 0;}\r
-               public static System.Int32 Hour (System.DateTime TimeValue) { return 0;}\r
-               public static System.Int32 Minute (System.DateTime TimeValue) { return 0;}\r
-               public static System.Int32 Second (System.DateTime TimeValue) { return 0;}\r
-               public static System.Int32 Weekday (System.DateTime DateValue, [System.Runtime.InteropServices.Optional] [System.ComponentModel.DefaultValue(1)] Microsoft.VisualBasic.FirstDayOfWeek DayOfWeek) { return 0;}\r
-               public static System.String MonthName (System.Int32 Month, [System.Runtime.InteropServices.Optional] [System.ComponentModel.DefaultValue(false)] System.Boolean Abbreviate) { return "";}\r
-               public static System.String WeekdayName (System.Int32 Weekday, [System.Runtime.InteropServices.Optional] [System.ComponentModel.DefaultValue(false)] System.Boolean Abbreviate, [System.Runtime.InteropServices.Optional] [System.ComponentModel.DefaultValue(0)] Microsoft.VisualBasic.FirstDayOfWeek FirstDayOfWeekValue) { return "";}\r
-               // Events\r
-       };\r
-}\r
+//
+// DateAndTime.cs
+//
+// Author:
+//   Chris J Breisch (cjbreisch@altavista.net) 
+//
+// (C) 2002 Chris J Breisch
+//
+
+using System;
+
+namespace Microsoft.VisualBasic \r
+{
+       [Microsoft.VisualBasic.CompilerServices.StandardModuleAttribute] 
+       sealed public class DateAndTime {
+               // Declarations
+               // Constructors
+               // Properties
+               [MonoTODO]
+               public static System.String DateString {  get { throw new NotImplementedException (); } set { throw new NotImplementedException (); } }
+               [MonoTODO]
+               public static System.DateTime Today {  get { throw new NotImplementedException (); } set { throw new NotImplementedException (); } }
+               [MonoTODO]
+               public static System.Double Timer {  get { throw new NotImplementedException (); } }
+               [MonoTODO]
+               public static System.DateTime Now {  get { throw new NotImplementedException (); } }
+               [MonoTODO]
+               public static System.DateTime TimeOfDay {  get { throw new NotImplementedException (); } set { throw new NotImplementedException (); } }
+               [MonoTODO]
+               public static System.String TimeString {  get { throw new NotImplementedException (); } set { throw new NotImplementedException (); } }
+               // Methods
+               [MonoTODO]
+               public static System.DateTime DateAdd (Microsoft.VisualBasic.DateInterval Interval, System.Double Number, System.DateTime DateValue) { throw new NotImplementedException (); }
+               [MonoTODO]
+               public static System.Int64 DateDiff (Microsoft.VisualBasic.DateInterval Interval, System.DateTime Date1, System.DateTime Date2, [System.Runtime.InteropServices.Optional] [System.ComponentModel.DefaultValue(1)] Microsoft.VisualBasic.FirstDayOfWeek DayOfWeek, [System.Runtime.InteropServices.Optional] [System.ComponentModel.DefaultValue(1)] Microsoft.VisualBasic.FirstWeekOfYear WeekOfYear) { throw new NotImplementedException (); }
+               [MonoTODO]
+               public static System.Int32 DatePart (Microsoft.VisualBasic.DateInterval Interval, System.DateTime DateValue, [System.Runtime.InteropServices.Optional] [System.ComponentModel.DefaultValue(1)] Microsoft.VisualBasic.FirstDayOfWeek FirstDayOfWeekValue, [System.Runtime.InteropServices.Optional] [System.ComponentModel.DefaultValue(1)] Microsoft.VisualBasic.FirstWeekOfYear FirstWeekOfYearValue) { throw new NotImplementedException (); }
+               [MonoTODO]
+               public static System.DateTime DateAdd (System.String Interval, System.Double Number, System.Object DateValue) { throw new NotImplementedException (); }
+               [MonoTODO]
+               public static System.Int64 DateDiff (System.String Interval, System.Object Date1, System.Object Date2, [System.Runtime.InteropServices.Optional] [System.ComponentModel.DefaultValue(1)] Microsoft.VisualBasic.FirstDayOfWeek DayOfWeek, [System.Runtime.InteropServices.Optional] [System.ComponentModel.DefaultValue(1)] Microsoft.VisualBasic.FirstWeekOfYear WeekOfYear) { throw new NotImplementedException (); }
+               [MonoTODO]
+               public static System.Int32 DatePart (System.String Interval, System.Object DateValue, [System.Runtime.InteropServices.Optional] [System.ComponentModel.DefaultValue(1)] Microsoft.VisualBasic.FirstDayOfWeek DayOfWeek, [System.Runtime.InteropServices.Optional] [System.ComponentModel.DefaultValue(1)] Microsoft.VisualBasic.FirstWeekOfYear WeekOfYear) { throw new NotImplementedException (); }
+               [MonoTODO]
+               public static System.DateTime DateSerial (System.Int32 Year, System.Int32 Month, System.Int32 Day) { throw new NotImplementedException (); }
+               [MonoTODO]
+               public static System.DateTime TimeSerial (System.Int32 Hour, System.Int32 Minute, System.Int32 Second) { throw new NotImplementedException (); }
+               [MonoTODO]
+               public static System.DateTime DateValue (System.String StringDate) { throw new NotImplementedException (); }
+               [MonoTODO]
+               public static System.DateTime TimeValue (System.String StringTime) { throw new NotImplementedException (); }
+               [MonoTODO]
+               public static System.Int32 Year (System.DateTime DateValue) { throw new NotImplementedException (); }
+               [MonoTODO]
+               public static System.Int32 Month (System.DateTime DateValue) { throw new NotImplementedException (); }
+               [MonoTODO]
+               public static System.Int32 Day (System.DateTime DateValue) { throw new NotImplementedException (); }
+               [MonoTODO]
+               public static System.Int32 Hour (System.DateTime TimeValue) { throw new NotImplementedException (); }
+               [MonoTODO]
+               public static System.Int32 Minute (System.DateTime TimeValue) { throw new NotImplementedException (); }
+               [MonoTODO]
+               public static System.Int32 Second (System.DateTime TimeValue) { throw new NotImplementedException (); }
+               [MonoTODO]
+               public static System.Int32 Weekday (System.DateTime DateValue, [System.Runtime.InteropServices.Optional] [System.ComponentModel.DefaultValue(1)] Microsoft.VisualBasic.FirstDayOfWeek DayOfWeek) { throw new NotImplementedException (); }
+               [MonoTODO]
+               public static System.String MonthName (System.Int32 Month, [System.Runtime.InteropServices.Optional] [System.ComponentModel.DefaultValue(false)] System.Boolean Abbreviate) { throw new NotImplementedException (); }
+               [MonoTODO]
+               public static System.String WeekdayName (System.Int32 Weekday, [System.Runtime.InteropServices.Optional] [System.ComponentModel.DefaultValue(false)] System.Boolean Abbreviate, [System.Runtime.InteropServices.Optional] [System.ComponentModel.DefaultValue(0)] Microsoft.VisualBasic.FirstDayOfWeek FirstDayOfWeekValue) { throw new NotImplementedException (); }
+               // Events
+       };
+}
index de17cb6445942beca697399f4373be00cd3baa34..8883f9388335655cedfcbf11f61654560c3e25c8 100644 (file)
@@ -1,28 +1,41 @@
-//\r
-// ErrObject.cs\r
-//\r
-// Author:\r
-//   Chris J Breisch (cjbreisch@altavista.net)\r
-//\r
-// (C) 2002 Chris J Breisch\r
-//\r
-namespace Microsoft.VisualBasic {\r
-       [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Auto)] \r
-       sealed public class ErrObject {\r
-               // Declarations\r
-               // Constructors\r
-               // Properties\r
-               public System.Int32 HelpContext { get {return 0;} set {} }\r
-               public System.Int32 LastDllError { get {return 0;} }\r
-               public System.Int32 Number { get {return 0;} set {} }\r
-               public System.Int32 Erl { get {return 0;} }\r
-               public System.String Source { get {return "";} set {} }\r
-               public System.String HelpFile { get {return "";} set {} }\r
-               public System.String Description { get {return "";} set {} }\r
-               // Methods\r
-               public System.Exception GetException () { return null;}\r
-               public void Clear () { }\r
-               public void Raise (System.Int32 Number, [System.Runtime.InteropServices.Optional] [System.ComponentModel.DefaultValue(null)] System.Object Source, [System.Runtime.InteropServices.Optional] [System.ComponentModel.DefaultValue(null)] System.Object Description, [System.Runtime.InteropServices.Optional] [System.ComponentModel.DefaultValue(null)] System.Object HelpFile, [System.Runtime.InteropServices.Optional] [System.ComponentModel.DefaultValue(null)] System.Object HelpContext) { }\r
-               // Events\r
-       };\r
-}\r
+//
+// ErrObject.cs
+//
+// Author:
+//   Chris J Breisch (cjbreisch@altavista.net) 
+//
+// (C) 2002 Chris J Breisch
+//
+
+using System;
+
+namespace Microsoft.VisualBasic \r
+{
+       sealed public class ErrObject {
+               // Declarations
+               // Constructors
+               // Properties
+               [MonoTODO]
+               public System.Int32 HelpContext { get { throw new NotImplementedException (); } set { throw new NotImplementedException (); } }
+               [MonoTODO]
+               public System.Int32 LastDllError {  get { throw new NotImplementedException (); } }
+               [MonoTODO]
+               public System.Int32 Number {  get { throw new NotImplementedException (); } set { throw new NotImplementedException (); } }
+               [MonoTODO]
+               public System.Int32 Erl {  get { throw new NotImplementedException (); } }
+               [MonoTODO]
+               public System.String Source {  get { throw new NotImplementedException (); } set { throw new NotImplementedException (); } }
+               [MonoTODO]
+               public System.String HelpFile {  get { throw new NotImplementedException (); } set { throw new NotImplementedException (); } }
+               [MonoTODO]
+               public System.String Description {  get { throw new NotImplementedException (); } set { throw new NotImplementedException (); } }
+               // Methods
+               [MonoTODO]
+               public System.Exception GetException () { throw new NotImplementedException (); }
+               [MonoTODO]
+               public void Clear () { throw new NotImplementedException (); }
+               [MonoTODO]
+               public void Raise (System.Int32 Number, [System.Runtime.InteropServices.Optional] [System.ComponentModel.DefaultValue(null)] System.Object Source, [System.Runtime.InteropServices.Optional] [System.ComponentModel.DefaultValue(null)] System.Object Description, [System.Runtime.InteropServices.Optional] [System.ComponentModel.DefaultValue(null)] System.Object HelpFile, [System.Runtime.InteropServices.Optional] [System.ComponentModel.DefaultValue(null)] System.Object HelpContext) { throw new NotImplementedException (); }
+               // Events
+       };
+}
index f4258ddbe04b5f1c2c5d600049a0cb4a3e355b89..80cc1a297d86ff70cc9db291146e33666b5cd915 100644 (file)
 //\r
 // (C) 2002 Chris J Breisch\r
 //
+
+using System;
+
 namespace Microsoft.VisualBasic \r
 {
        [Microsoft.VisualBasic.CompilerServices.StandardModuleAttribute] 
-       [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Auto)] 
        sealed public class FileSystem {
                // Declarations
                // Constructors
                // Properties
                // Methods
-               public static void ChDir (System.String Path) { }
-               public static void ChDrive (System.Char Drive) { }
-               public static void ChDrive (System.String Drive) { }
-               public static System.String CurDir () { return "";}
-               public static System.String CurDir (System.Char Drive) { return "";}
-               public static System.String Dir () { return "";}
-               public static System.String Dir (System.String Pathname, [System.Runtime.InteropServices.Optional] [System.ComponentModel.DefaultValue(0)] Microsoft.VisualBasic.FileAttribute Attributes) { return "";}
-               public static void MkDir (System.String Path) { }
-               public static void RmDir (System.String Path) { }
-               public static void FileCopy (System.String Source, System.String Destination) { }
-               public static System.DateTime FileDateTime (System.String PathName) { return System.DateTime.MinValue;}
-               public static System.Int64 FileLen (System.String PathName) { return 0;}
-               public static Microsoft.VisualBasic.FileAttribute GetAttr (System.String PathName) { return 0;}
-               public static void Kill (System.String PathName) { }
-               public static void SetAttr (System.String PathName, Microsoft.VisualBasic.FileAttribute Attributes) { }
-               public static void FileOpen (System.Int32 FileNumber, System.String FileName, Microsoft.VisualBasic.OpenMode Mode, [System.Runtime.InteropServices.Optional] [System.ComponentModel.DefaultValue(-1)] Microsoft.VisualBasic.OpenAccess Access, [System.Runtime.InteropServices.Optional] [System.ComponentModel.DefaultValue(-1)] Microsoft.VisualBasic.OpenShare Share, [System.Runtime.InteropServices.Optional] [System.ComponentModel.DefaultValue(-1)] System.Int32 RecordLength) { }
-               public static void FileClose (params System.Int32[] FileNumbers) { }
-               public static void FileGetObject (System.Int32 FileNumber, ref System.Object Value, [System.Runtime.InteropServices.Optional] [System.ComponentModel.DefaultValue(-1)] ref System.Int64 RecordNumber) { }
-               public static void FileGet (System.Int32 FileNumber, ref System.ValueType Value, [System.Runtime.InteropServices.Optional] [System.ComponentModel.DefaultValue(-1)] ref System.Int64 RecordNumber) { }
-               public static void FileGet (System.Int32 FileNumber, ref System.Array Value, [System.Runtime.InteropServices.Optional] [System.ComponentModel.DefaultValue(-1)] ref System.Int64 RecordNumber, [System.Runtime.InteropServices.Optional] [System.ComponentModel.DefaultValue(false)] ref System.Boolean ArrayIsDynamic, [System.Runtime.InteropServices.Optional] [System.ComponentModel.DefaultValue(false)] ref System.Boolean StringIsFixedLength) { }
-               public static void FileGet (System.Int32 FileNumber, ref System.Boolean Value, [System.Runtime.InteropServices.Optional] [System.ComponentModel.DefaultValue(-1)] ref System.Int64 RecordNumber) { }
-               public static void FileGet (System.Int32 FileNumber, ref System.Byte Value, [System.Runtime.InteropServices.Optional] [System.ComponentModel.DefaultValue(-1)] ref System.Int64 RecordNumber) { }
-               public static void FileGet (System.Int32 FileNumber, ref System.Int16 Value, [System.Runtime.InteropServices.Optional] [System.ComponentModel.DefaultValue(-1)] ref System.Int64 RecordNumber) { }
-               public static void FileGet (System.Int32 FileNumber, ref System.Int32 Value, [System.Runtime.InteropServices.Optional] [System.ComponentModel.DefaultValue(-1)] ref System.Int64 RecordNumber) { }
-               public static void FileGet (System.Int32 FileNumber, ref System.Int64 Value, [System.Runtime.InteropServices.Optional] [System.ComponentModel.DefaultValue(-1)] ref System.Int64 RecordNumber) { }
-               public static void FileGet (System.Int32 FileNumber, ref System.Char Value, [System.Runtime.InteropServices.Optional] [System.ComponentModel.DefaultValue(-1)] ref System.Int64 RecordNumber) { }
-               public static void FileGet (System.Int32 FileNumber, ref System.Single Value, [System.Runtime.InteropServices.Optional] [System.ComponentModel.DefaultValue(-1)] ref System.Int64 RecordNumber) { }
-               public static void FileGet (System.Int32 FileNumber, ref System.Double Value, [System.Runtime.InteropServices.Optional] [System.ComponentModel.DefaultValue(-1)] ref System.Int64 RecordNumber) { }
-               public static void FileGet (System.Int32 FileNumber, ref System.Decimal Value, [System.Runtime.InteropServices.Optional] [System.ComponentModel.DefaultValue(-1)] ref System.Int64 RecordNumber) { }
-               public static void FileGet (System.Int32 FileNumber, ref System.String Value, [System.Runtime.InteropServices.Optional] [System.ComponentModel.DefaultValue(-1)] ref System.Int64 RecordNumber, [System.Runtime.InteropServices.Optional] [System.ComponentModel.DefaultValue(false)] ref System.Boolean StringIsFixedLength) { }
-               public static void FileGet (System.Int32 FileNumber, ref System.DateTime Value, [System.Runtime.InteropServices.Optional] [System.ComponentModel.DefaultValue(-1)] ref System.Int64 RecordNumber) { }
-               public static void FilePutObject (System.Int32 FileNumber, System.Object Value, [System.Runtime.InteropServices.Optional] [System.ComponentModel.DefaultValue(-1)] System.Int64 RecordNumber) { }
+               [MonoTODO]
+               public static void ChDir (System.String Path) { throw new NotImplementedException (); }
+               [MonoTODO]
+               public static void ChDrive (System.Char Drive) { throw new NotImplementedException (); }
+               [MonoTODO]
+               public static void ChDrive (System.String Drive) { throw new NotImplementedException (); }
+               [MonoTODO]
+               public static System.String CurDir () { throw new NotImplementedException (); }
+               [MonoTODO]
+               public static System.String CurDir (System.Char Drive) { throw new NotImplementedException (); }
+               [MonoTODO]
+               public static System.String Dir () { throw new NotImplementedException (); }
+               [MonoTODO]
+               public static System.String Dir (System.String Pathname, [System.Runtime.InteropServices.Optional] [System.ComponentModel.DefaultValue(0)] Microsoft.VisualBasic.FileAttribute Attributes) { throw new NotImplementedException (); }
+               [MonoTODO]
+               public static void MkDir (System.String Path) { throw new NotImplementedException (); }
+               [MonoTODO]
+               public static void RmDir (System.String Path) { throw new NotImplementedException (); }
+               [MonoTODO]
+               public static void FileCopy (System.String Source, System.String Destination) { throw new NotImplementedException (); }
+               [MonoTODO]
+               public static System.DateTime FileDateTime (System.String PathName) { throw new NotImplementedException (); }
+               [MonoTODO]
+               public static System.Int64 FileLen (System.String PathName) { throw new NotImplementedException (); }
+               [MonoTODO]
+               public static Microsoft.VisualBasic.FileAttribute GetAttr (System.String PathName) { throw new NotImplementedException (); }
+               [MonoTODO]
+               public static void Kill (System.String PathName) { throw new NotImplementedException (); }
+               [MonoTODO]
+               public static void SetAttr (System.String PathName, Microsoft.VisualBasic.FileAttribute Attributes) { throw new NotImplementedException (); }
+               [MonoTODO]
+               public static void FileOpen (System.Int32 FileNumber, System.String FileName, Microsoft.VisualBasic.OpenMode Mode, [System.Runtime.InteropServices.Optional] [System.ComponentModel.DefaultValue(-1)] Microsoft.VisualBasic.OpenAccess Access, [System.Runtime.InteropServices.Optional] [System.ComponentModel.DefaultValue(-1)] Microsoft.VisualBasic.OpenShare Share, [System.Runtime.InteropServices.Optional] [System.ComponentModel.DefaultValue(-1)] System.Int32 RecordLength) { throw new NotImplementedException (); }
+               [MonoTODO]
+               public static void FileClose (params System.Int32[] FileNumbers) { throw new NotImplementedException (); }
+               [MonoTODO]
+               public static void FileGetObject (System.Int32 FileNumber, ref System.Object Value, [System.Runtime.InteropServices.Optional] [System.ComponentModel.DefaultValue(-1)] ref System.Int64 RecordNumber) { throw new NotImplementedException (); }
+               [MonoTODO]
+               public static void FileGet (System.Int32 FileNumber, ref System.ValueType Value, [System.Runtime.InteropServices.Optional] [System.ComponentModel.DefaultValue(-1)] ref System.Int64 RecordNumber) { throw new NotImplementedException (); }
+               [MonoTODO]
+               public static void FileGet (System.Int32 FileNumber, ref System.Array Value, [System.Runtime.InteropServices.Optional] [System.ComponentModel.DefaultValue(-1)] ref System.Int64 RecordNumber, [System.Runtime.InteropServices.Optional] [System.ComponentModel.DefaultValue(false)] ref System.Boolean ArrayIsDynamic, [System.Runtime.InteropServices.Optional] [System.ComponentModel.DefaultValue(false)] ref System.Boolean StringIsFixedLength) { throw new NotImplementedException (); }
+               [MonoTODO]
+               public static void FileGet (System.Int32 FileNumber, ref System.Boolean Value, [System.Runtime.InteropServices.Optional] [System.ComponentModel.DefaultValue(-1)] ref System.Int64 RecordNumber) { throw new NotImplementedException (); }
+               [MonoTODO]
+               public static void FileGet (System.Int32 FileNumber, ref System.Byte Value, [System.Runtime.InteropServices.Optional] [System.ComponentModel.DefaultValue(-1)] ref System.Int64 RecordNumber) { throw new NotImplementedException (); }
+               [MonoTODO]
+               public static void FileGet (System.Int32 FileNumber, ref System.Int16 Value, [System.Runtime.InteropServices.Optional] [System.ComponentModel.DefaultValue(-1)] ref System.Int64 RecordNumber) { throw new NotImplementedException (); }
+               [MonoTODO]
+               public static void FileGet (System.Int32 FileNumber, ref System.Int32 Value, [System.Runtime.InteropServices.Optional] [System.ComponentModel.DefaultValue(-1)] ref System.Int64 RecordNumber) { throw new NotImplementedException (); }
+               [MonoTODO]
+               public static void FileGet (System.Int32 FileNumber, ref System.Int64 Value, [System.Runtime.InteropServices.Optional] [System.ComponentModel.DefaultValue(-1)] ref System.Int64 RecordNumber) { throw new NotImplementedException (); }
+               [MonoTODO]
+               public static void FileGet (System.Int32 FileNumber, ref System.Char Value, [System.Runtime.InteropServices.Optional] [System.ComponentModel.DefaultValue(-1)] ref System.Int64 RecordNumber) { throw new NotImplementedException (); }
+               [MonoTODO]
+               public static void FileGet (System.Int32 FileNumber, ref System.Single Value, [System.Runtime.InteropServices.Optional] [System.ComponentModel.DefaultValue(-1)] ref System.Int64 RecordNumber) { throw new NotImplementedException (); }
+               [MonoTODO]
+               public static void FileGet (System.Int32 FileNumber, ref System.Double Value, [System.Runtime.InteropServices.Optional] [System.ComponentModel.DefaultValue(-1)] ref System.Int64 RecordNumber) { throw new NotImplementedException (); }
+               [MonoTODO]
+               public static void FileGet (System.Int32 FileNumber, ref System.Decimal Value, [System.Runtime.InteropServices.Optional] [System.ComponentModel.DefaultValue(-1)] ref System.Int64 RecordNumber) { throw new NotImplementedException (); }
+               [MonoTODO]
+               public static void FileGet (System.Int32 FileNumber, ref System.String Value, [System.Runtime.InteropServices.Optional] [System.ComponentModel.DefaultValue(-1)] ref System.Int64 RecordNumber, [System.Runtime.InteropServices.Optional] [System.ComponentModel.DefaultValue(false)] ref System.Boolean StringIsFixedLength) { throw new NotImplementedException (); }
+               [MonoTODO]
+               public static void FileGet (System.Int32 FileNumber, ref System.DateTime Value, [System.Runtime.InteropServices.Optional] [System.ComponentModel.DefaultValue(-1)] ref System.Int64 RecordNumber) { throw new NotImplementedException (); }
+               [MonoTODO]
+               public static void FilePutObject (System.Int32 FileNumber, System.Object Value, [System.Runtime.InteropServices.Optional] [System.ComponentModel.DefaultValue(-1)] System.Int64 RecordNumber) { throw new NotImplementedException (); }
+               [MonoTODO]
                [System.ObsoleteAttribute("Use FilePutObject to write Object types, or coerce FileNumber and RecordNumber to Integer for writing non-Object types", false)] 
-               public static void FilePut (System.Object FileNumber, System.Object Value, [System.Runtime.InteropServices.Optional] [System.ComponentModel.DefaultValue(-1)] System.Object RecordNumber) { }
-               public static void FilePut (System.Int32 FileNumber, System.ValueType Value, [System.Runtime.InteropServices.Optional] [System.ComponentModel.DefaultValue(-1)] System.Int64 RecordNumber) { }
-               public static void FilePut (System.Int32 FileNumber, System.Array Value, [System.Runtime.InteropServices.Optional] [System.ComponentModel.DefaultValue(-1)] System.Int64 RecordNumber, [System.Runtime.InteropServices.Optional] [System.ComponentModel.DefaultValue(false)] System.Boolean ArrayIsDynamic, [System.Runtime.InteropServices.Optional] [System.ComponentModel.DefaultValue(false)] System.Boolean StringIsFixedLength) { }
-               public static void FilePut (System.Int32 FileNumber, System.Boolean Value, [System.Runtime.InteropServices.Optional] [System.ComponentModel.DefaultValue(-1)] System.Int64 RecordNumber) { }
-               public static void FilePut (System.Int32 FileNumber, System.Byte Value, [System.Runtime.InteropServices.Optional] [System.ComponentModel.DefaultValue(-1)] System.Int64 RecordNumber) { }
-               public static void FilePut (System.Int32 FileNumber, System.Int16 Value, [System.Runtime.InteropServices.Optional] [System.ComponentModel.DefaultValue(-1)] System.Int64 RecordNumber) { }
-               public static void FilePut (System.Int32 FileNumber, System.Int32 Value, [System.Runtime.InteropServices.Optional] [System.ComponentModel.DefaultValue(-1)] System.Int64 RecordNumber) { }
-               public static void FilePut (System.Int32 FileNumber, System.Int64 Value, [System.Runtime.InteropServices.Optional] [System.ComponentModel.DefaultValue(-1)] System.Int64 RecordNumber) { }
-               public static void FilePut (System.Int32 FileNumber, System.Char Value, [System.Runtime.InteropServices.Optional] [System.ComponentModel.DefaultValue(-1)] System.Int64 RecordNumber) { }
-               public static void FilePut (System.Int32 FileNumber, System.Single Value, [System.Runtime.InteropServices.Optional] [System.ComponentModel.DefaultValue(-1)] System.Int64 RecordNumber) { }
-               public static void FilePut (System.Int32 FileNumber, System.Double Value, [System.Runtime.InteropServices.Optional] [System.ComponentModel.DefaultValue(-1)] System.Int64 RecordNumber) { }
-               public static void FilePut (System.Int32 FileNumber, System.Decimal Value, [System.Runtime.InteropServices.Optional] [System.ComponentModel.DefaultValue(-1)] System.Int64 RecordNumber) { }
-               public static void FilePut (System.Int32 FileNumber, System.String Value, [System.Runtime.InteropServices.Optional] [System.ComponentModel.DefaultValue(-1)] System.Int64 RecordNumber, [System.Runtime.InteropServices.Optional] [System.ComponentModel.DefaultValue(false)] System.Boolean StringIsFixedLength) { }
-               public static void FilePut (System.Int32 FileNumber, System.DateTime Value, [System.Runtime.InteropServices.Optional] [System.ComponentModel.DefaultValue(-1)] System.Int64 RecordNumber) { }
-               public static void Print (System.Int32 FileNumber, params System.Object[] Output) { }
-               public static void PrintLine (System.Int32 FileNumber, params System.Object[] Output) { }
-               public static void Input (System.Int32 FileNumber, ref System.Object Value) { }
-               public static void Input (System.Int32 FileNumber, ref System.Boolean Value) { }
-               public static void Input (System.Int32 FileNumber, ref System.Byte Value) { }
-               public static void Input (System.Int32 FileNumber, ref System.Int16 Value) { }
-               public static void Input (System.Int32 FileNumber, ref System.Int32 Value) { }
-               public static void Input (System.Int32 FileNumber, ref System.Int64 Value) { }
-               public static void Input (System.Int32 FileNumber, ref System.Char Value) { }
-               public static void Input (System.Int32 FileNumber, ref System.Single Value) { }
-               public static void Input (System.Int32 FileNumber, ref System.Double Value) { }
-               public static void Input (System.Int32 FileNumber, ref System.Decimal Value) { }
-               public static void Input (System.Int32 FileNumber, ref System.String Value) { }
-               public static void Input (System.Int32 FileNumber, ref System.DateTime Value) { }
-               public static void Write (System.Int32 FileNumber, params System.Object[] Output) { }
-               public static void WriteLine (System.Int32 FileNumber, params System.Object[] Output) { }
-               public static System.String InputString (System.Int32 FileNumber, System.Int32 CharCount) { return "";}
-               public static System.String LineInput (System.Int32 FileNumber) { return "";}
-               public static void Lock (System.Int32 FileNumber) { }
-               public static void Lock (System.Int32 FileNumber, System.Int64 Record) { }
-               public static void Lock (System.Int32 FileNumber, System.Int64 FromRecord, System.Int64 ToRecord) { }
-               public static void Unlock (System.Int32 FileNumber) { }
-               public static void Unlock (System.Int32 FileNumber, System.Int64 Record) { }
-               public static void Unlock (System.Int32 FileNumber, System.Int64 FromRecord, System.Int64 ToRecord) { }
-               public static void FileWidth (System.Int32 FileNumber, System.Int32 RecordWidth) { }
-               public static System.Int32 FreeFile () { return 0;}
-               public static void Seek (System.Int32 FileNumber, System.Int64 Position) { }
-               public static System.Int64 Seek (System.Int32 FileNumber) { return 0;}
-               public static System.Boolean EOF (System.Int32 FileNumber) { return false;}
-               public static System.Int64 Loc (System.Int32 FileNumber) { return 0;}
-               public static System.Int64 LOF (System.Int32 FileNumber) { return 0;}
-               public static Microsoft.VisualBasic.TabInfo TAB () { return new Microsoft.VisualBasic.TabInfo();}
-               public static Microsoft.VisualBasic.TabInfo TAB (System.Int16 Column) { return new Microsoft.VisualBasic.TabInfo();}
-               public static Microsoft.VisualBasic.SpcInfo SPC (System.Int16 Count) { return new Microsoft.VisualBasic.SpcInfo();}
-               public static Microsoft.VisualBasic.OpenMode FileAttr (System.Int32 FileNumber) { return 0;}
-               public static void Reset () { }
-               public static void Rename (System.String OldPath, System.String NewPath) { }
+               public static void FilePut (System.Object FileNumber, System.Object Value, [System.Runtime.InteropServices.Optional] [System.ComponentModel.DefaultValue(-1)] System.Object RecordNumber) { throw new NotImplementedException (); }
+               [MonoTODO]
+               public static void FilePut (System.Int32 FileNumber, System.ValueType Value, [System.Runtime.InteropServices.Optional] [System.ComponentModel.DefaultValue(-1)] System.Int64 RecordNumber) { throw new NotImplementedException (); }
+               [MonoTODO]
+               public static void FilePut (System.Int32 FileNumber, System.Array Value, [System.Runtime.InteropServices.Optional] [System.ComponentModel.DefaultValue(-1)] System.Int64 RecordNumber, [System.Runtime.InteropServices.Optional] [System.ComponentModel.DefaultValue(false)] System.Boolean ArrayIsDynamic, [System.Runtime.InteropServices.Optional] [System.ComponentModel.DefaultValue(false)] System.Boolean StringIsFixedLength) { throw new NotImplementedException (); }
+               [MonoTODO]
+               public static void FilePut (System.Int32 FileNumber, System.Boolean Value, [System.Runtime.InteropServices.Optional] [System.ComponentModel.DefaultValue(-1)] System.Int64 RecordNumber) { throw new NotImplementedException (); }
+               [MonoTODO]
+               public static void FilePut (System.Int32 FileNumber, System.Byte Value, [System.Runtime.InteropServices.Optional] [System.ComponentModel.DefaultValue(-1)] System.Int64 RecordNumber) { throw new NotImplementedException (); }
+               [MonoTODO]
+               public static void FilePut (System.Int32 FileNumber, System.Int16 Value, [System.Runtime.InteropServices.Optional] [System.ComponentModel.DefaultValue(-1)] System.Int64 RecordNumber) { throw new NotImplementedException (); }
+               [MonoTODO]
+               public static void FilePut (System.Int32 FileNumber, System.Int32 Value, [System.Runtime.InteropServices.Optional] [System.ComponentModel.DefaultValue(-1)] System.Int64 RecordNumber) { throw new NotImplementedException (); }
+               [MonoTODO]
+               public static void FilePut (System.Int32 FileNumber, System.Int64 Value, [System.Runtime.InteropServices.Optional] [System.ComponentModel.DefaultValue(-1)] System.Int64 RecordNumber) { throw new NotImplementedException (); }
+               [MonoTODO]
+               public static void FilePut (System.Int32 FileNumber, System.Char Value, [System.Runtime.InteropServices.Optional] [System.ComponentModel.DefaultValue(-1)] System.Int64 RecordNumber) { throw new NotImplementedException (); }
+               [MonoTODO]
+               public static void FilePut (System.Int32 FileNumber, System.Single Value, [System.Runtime.InteropServices.Optional] [System.ComponentModel.DefaultValue(-1)] System.Int64 RecordNumber) { throw new NotImplementedException (); }
+               [MonoTODO]
+               public static void FilePut (System.Int32 FileNumber, System.Double Value, [System.Runtime.InteropServices.Optional] [System.ComponentModel.DefaultValue(-1)] System.Int64 RecordNumber) { throw new NotImplementedException (); }
+               [MonoTODO]
+               public static void FilePut (System.Int32 FileNumber, System.Decimal Value, [System.Runtime.InteropServices.Optional] [System.ComponentModel.DefaultValue(-1)] System.Int64 RecordNumber) { throw new NotImplementedException (); }
+               [MonoTODO]
+               public static void FilePut (System.Int32 FileNumber, System.String Value, [System.Runtime.InteropServices.Optional] [System.ComponentModel.DefaultValue(-1)] System.Int64 RecordNumber, [System.Runtime.InteropServices.Optional] [System.ComponentModel.DefaultValue(false)] System.Boolean StringIsFixedLength) { throw new NotImplementedException (); }
+               [MonoTODO]
+               public static void FilePut (System.Int32 FileNumber, System.DateTime Value, [System.Runtime.InteropServices.Optional] [System.ComponentModel.DefaultValue(-1)] System.Int64 RecordNumber) { throw new NotImplementedException (); }
+               [MonoTODO]
+               public static void Print (System.Int32 FileNumber, params System.Object[] Output) { throw new NotImplementedException (); }
+               [MonoTODO]
+               public static void PrintLine (System.Int32 FileNumber, params System.Object[] Output) { throw new NotImplementedException (); }
+               [MonoTODO]
+               public static void Input (System.Int32 FileNumber, ref System.Object Value) { throw new NotImplementedException (); }
+               [MonoTODO]
+               public static void Input (System.Int32 FileNumber, ref System.Boolean Value) { throw new NotImplementedException (); }
+               [MonoTODO]
+               public static void Input (System.Int32 FileNumber, ref System.Byte Value) { throw new NotImplementedException (); }
+               [MonoTODO]
+               public static void Input (System.Int32 FileNumber, ref System.Int16 Value) { throw new NotImplementedException (); }
+               [MonoTODO]
+               public static void Input (System.Int32 FileNumber, ref System.Int32 Value) { throw new NotImplementedException (); }
+               [MonoTODO]
+               public static void Input (System.Int32 FileNumber, ref System.Int64 Value) { throw new NotImplementedException (); }
+               [MonoTODO]
+               public static void Input (System.Int32 FileNumber, ref System.Char Value) { throw new NotImplementedException (); }
+               [MonoTODO]
+               public static void Input (System.Int32 FileNumber, ref System.Single Value) { throw new NotImplementedException (); }
+               [MonoTODO]
+               public static void Input (System.Int32 FileNumber, ref System.Double Value) { throw new NotImplementedException (); }
+               [MonoTODO]
+               public static void Input (System.Int32 FileNumber, ref System.Decimal Value) { throw new NotImplementedException (); }
+               [MonoTODO]
+               public static void Input (System.Int32 FileNumber, ref System.String Value) { throw new NotImplementedException (); }
+               [MonoTODO]
+               public static void Input (System.Int32 FileNumber, ref System.DateTime Value) { throw new NotImplementedException (); }
+               [MonoTODO]
+               public static void Write (System.Int32 FileNumber, params System.Object[] Output) { throw new NotImplementedException (); }
+               [MonoTODO]
+               public static void WriteLine (System.Int32 FileNumber, params System.Object[] Output) { throw new NotImplementedException (); }
+               [MonoTODO]
+               public static System.String InputString (System.Int32 FileNumber, System.Int32 CharCount) { throw new NotImplementedException (); }
+               [MonoTODO]
+               public static System.String LineInput (System.Int32 FileNumber) { throw new NotImplementedException (); }
+               [MonoTODO]
+               public static void Lock (System.Int32 FileNumber) { throw new NotImplementedException (); }
+               [MonoTODO]
+               public static void Lock (System.Int32 FileNumber, System.Int64 Record) { throw new NotImplementedException (); }
+               [MonoTODO]
+               public static void Lock (System.Int32 FileNumber, System.Int64 FromRecord, System.Int64 ToRecord) { throw new NotImplementedException (); }
+               [MonoTODO]
+               public static void Unlock (System.Int32 FileNumber) { throw new NotImplementedException (); }
+               [MonoTODO]
+               public static void Unlock (System.Int32 FileNumber, System.Int64 Record) { throw new NotImplementedException (); }
+               [MonoTODO]
+               public static void Unlock (System.Int32 FileNumber, System.Int64 FromRecord, System.Int64 ToRecord) { throw new NotImplementedException (); }
+               [MonoTODO]
+               public static void FileWidth (System.Int32 FileNumber, System.Int32 RecordWidth) { throw new NotImplementedException (); }
+               [MonoTODO]
+               public static System.Int32 FreeFile () { throw new NotImplementedException (); }
+               [MonoTODO]
+               public static void Seek (System.Int32 FileNumber, System.Int64 Position) { throw new NotImplementedException (); }
+               [MonoTODO]
+               public static System.Int64 Seek (System.Int32 FileNumber) { throw new NotImplementedException (); }
+               [MonoTODO]
+               public static System.Boolean EOF (System.Int32 FileNumber) { throw new NotImplementedException (); }
+               [MonoTODO]
+               public static System.Int64 Loc (System.Int32 FileNumber) { throw new NotImplementedException (); }
+               [MonoTODO]
+               public static System.Int64 LOF (System.Int32 FileNumber) { throw new NotImplementedException (); }
+               [MonoTODO]
+               public static Microsoft.VisualBasic.TabInfo TAB () { throw new NotImplementedException (); }
+               [MonoTODO]
+               public static Microsoft.VisualBasic.TabInfo TAB (System.Int16 Column) { throw new NotImplementedException (); }
+               [MonoTODO]
+               public static Microsoft.VisualBasic.SpcInfo SPC (System.Int16 Count) { throw new NotImplementedException (); }
+               [MonoTODO]
+               public static Microsoft.VisualBasic.OpenMode FileAttr (System.Int32 FileNumber) { throw new NotImplementedException (); }
+               [MonoTODO]
+               public static void Reset () { throw new NotImplementedException (); }
+               [MonoTODO]
+               public static void Rename (System.String OldPath, System.String NewPath) { throw new NotImplementedException (); }
                // Events
        };
 }
index 7bb132a3a356aebc1f20f3197b961ae5eb16755f..2c89b994d4ec5cd1734cff9031e1ebe87030ccca 100644 (file)
@@ -1,23 +1,30 @@
-//\r
-// Globals.cs\r
-//\r
-// Author:\r
-//   Chris J Breisch (cjbreisch@altavista.net)\r
-//\r
-// (C) 2002 Chris J Breisch\r
-//\r
-namespace Microsoft.VisualBasic {\r
-       [Microsoft.VisualBasic.CompilerServices.StandardModuleAttribute] \r
-       [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Auto)] \r
-       sealed public class Globals {\r
-               // Declarations\r
-               // Constructors\r
-               // Properties\r
-               public static System.String ScriptEngine { get {return "";} }\r
-               public static System.Int32 ScriptEngineMajorVersion { get {return 0;} }\r
-               public static System.Int32 ScriptEngineMinorVersion { get {return 0;} }\r
-               public static System.Int32 ScriptEngineBuildVersion { get {return 0;} }\r
-               // Methods\r
-               // Events\r
-       };\r
-}\r
+//
+// Globals.cs
+//
+// Author:
+//   Chris J Breisch (cjbreisch@altavista.net) 
+//
+// (C) 2002 Chris J Breisch
+//
+
+using System;
+
+namespace Microsoft.VisualBasic \r
+{
+       [Microsoft.VisualBasic.CompilerServices.StandardModuleAttribute] 
+       sealed public class Globals {
+               // Declarations
+               // Constructors
+               // Properties
+               [MonoTODO]
+               public static System.String ScriptEngine {  get { throw new NotImplementedException (); } }
+               [MonoTODO]
+               public static System.Int32 ScriptEngineMajorVersion {  get { throw new NotImplementedException (); } }
+               [MonoTODO]
+               public static System.Int32 ScriptEngineMinorVersion {  get { throw new NotImplementedException (); } }
+               [MonoTODO]
+               public static System.Int32 ScriptEngineBuildVersion {  get { throw new NotImplementedException (); } }
+               // Methods
+               // Events
+       };
+}
index 1d34f63452c21cc47412e8ef21e7adac267cccc7..165fbad52e0d856ec4668258ea7091f39f9c6608 100644 (file)
@@ -1,37 +1,57 @@
-//\r
-// Information.cs\r
-//\r
-// Author:\r
-//   Chris J Breisch (cjbreisch@altavista.net)\r
-//\r
-// (C) 2002 Chris J Breisch\r
-//\r
-namespace Microsoft.VisualBasic {\r
-       [Microsoft.VisualBasic.CompilerServices.StandardModuleAttribute] \r
-       [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Auto)] \r
-       sealed public class Information {\r
-               // Declarations\r
-               // Constructors\r
-               // Properties\r
-               // Methods\r
-               public static Microsoft.VisualBasic.ErrObject Err () { return null;}\r
-               [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] \r
-               public static System.Int32 Erl () { return 0;}\r
-               public static System.Boolean IsArray (System.Object VarName) { return false;}\r
-               public static System.Boolean IsDate (System.Object Expression) { return false;}\r
-               public static System.Boolean IsDBNull (System.Object Expression) { return false;}\r
-               public static System.Boolean IsNothing (System.Object Expression) { return false;}\r
-               public static System.Boolean IsError (System.Object Expression) { return false;}\r
-               public static System.Boolean IsReference (System.Object Expression) { return false;}\r
-               public static System.Boolean IsNumeric (System.Object Expression) { return false;}\r
-               public static System.Int32 LBound (System.Array Array, [System.Runtime.InteropServices.Optional] [System.ComponentModel.DefaultValue(1)] System.Int32 Rank) { return 0;}\r
-               public static System.Int32 UBound (System.Array Array, [System.Runtime.InteropServices.Optional] [System.ComponentModel.DefaultValue(1)] System.Int32 Rank) { return 0;}\r
-               public static System.String TypeName (System.Object VarName) { return "";}\r
-               public static System.String SystemTypeName (System.String VbName) { return "";}\r
-               public static System.String VbTypeName (System.String UrtName) { return "";}\r
-               public static System.Int32 QBColor (System.Int32 Color) { return 0;}\r
-               public static System.Int32 RGB (System.Int32 Red, System.Int32 Green, System.Int32 Blue) { return 0;}\r
-               public static Microsoft.VisualBasic.VariantType VarType (System.Object VarName) { return 0;}\r
-               // Events\r
-       };\r
-}\r
+//
+// Information.cs
+//
+// Author:
+//   Chris J Breisch (cjbreisch@altavista.net) 
+//
+// (C) 2002 Chris J Breisch
+//
+
+using System;
+
+namespace Microsoft.VisualBasic \r
+{
+       [Microsoft.VisualBasic.CompilerServices.StandardModuleAttribute] 
+       sealed public class Information {
+               // Declarations
+               // Constructors
+               // Properties
+               // Methods
+               [MonoTODO]
+               public static Microsoft.VisualBasic.ErrObject Err () { throw new NotImplementedException (); }
+               [MonoTODO]
+               [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] 
+               public static System.Int32 Erl () { throw new NotImplementedException (); }
+               [MonoTODO]
+               public static System.Boolean IsArray (System.Object VarName) { throw new NotImplementedException (); }
+               [MonoTODO]
+               public static System.Boolean IsDate (System.Object Expression) { throw new NotImplementedException (); }
+               [MonoTODO]
+               public static System.Boolean IsDBNull (System.Object Expression) { throw new NotImplementedException (); }
+               [MonoTODO]
+               public static System.Boolean IsNothing (System.Object Expression) { throw new NotImplementedException (); }
+               [MonoTODO]
+               public static System.Boolean IsError (System.Object Expression) { throw new NotImplementedException (); }
+               [MonoTODO]
+               public static System.Boolean IsReference (System.Object Expression) { throw new NotImplementedException (); }
+               [MonoTODO]
+               public static System.Boolean IsNumeric (System.Object Expression) { throw new NotImplementedException (); }
+               [MonoTODO]
+               public static System.Int32 LBound (System.Array Array, [System.Runtime.InteropServices.Optional] [System.ComponentModel.DefaultValue(1)] System.Int32 Rank) { throw new NotImplementedException (); }
+               [MonoTODO]
+               public static System.Int32 UBound (System.Array Array, [System.Runtime.InteropServices.Optional] [System.ComponentModel.DefaultValue(1)] System.Int32 Rank) { throw new NotImplementedException (); }
+               [MonoTODO]
+               public static System.String TypeName (System.Object VarName) { throw new NotImplementedException (); }
+               [MonoTODO]
+               public static System.String SystemTypeName (System.String VbName) { throw new NotImplementedException (); }
+               [MonoTODO]
+               public static System.String VbTypeName (System.String UrtName) { throw new NotImplementedException (); }
+               [MonoTODO]
+               public static System.Int32 QBColor (System.Int32 Color) { throw new NotImplementedException (); }
+               [MonoTODO]
+               public static System.Int32 RGB (System.Int32 Red, System.Int32 Green, System.Int32 Blue) { throw new NotImplementedException (); }
+               [MonoTODO]
+               public static Microsoft.VisualBasic.VariantType VarType (System.Object VarName) { throw new NotImplementedException (); }
+               // Events
+       };
+}