Changed to conform to Mono standards for incomplete functionality.
authorChris J. Breisch <cjbreisch@mono-cvs.ximian.com>
Sun, 12 May 2002 17:18:57 +0000 (17:18 -0000)
committerChris J. Breisch <cjbreisch@mono-cvs.ximian.com>
Sun, 12 May 2002 17:18:57 +0000 (17:18 -0000)
svn path=/trunk/mcs/; revision=4567

19 files changed:
mcs/class/Microsoft.VisualBasic/Microsoft.VisualBasic/Microsoft.VisualBasic.CompilerServices/BooleanType.cs
mcs/class/Microsoft.VisualBasic/Microsoft.VisualBasic/Microsoft.VisualBasic.CompilerServices/ByteType.cs
mcs/class/Microsoft.VisualBasic/Microsoft.VisualBasic/Microsoft.VisualBasic.CompilerServices/CharArrayType.cs
mcs/class/Microsoft.VisualBasic/Microsoft.VisualBasic/Microsoft.VisualBasic.CompilerServices/CharType.cs
mcs/class/Microsoft.VisualBasic/Microsoft.VisualBasic/Microsoft.VisualBasic.CompilerServices/DateType.cs
mcs/class/Microsoft.VisualBasic/Microsoft.VisualBasic/Microsoft.VisualBasic.CompilerServices/DecimalType.cs
mcs/class/Microsoft.VisualBasic/Microsoft.VisualBasic/Microsoft.VisualBasic.CompilerServices/DoubleType.cs
mcs/class/Microsoft.VisualBasic/Microsoft.VisualBasic/Microsoft.VisualBasic.CompilerServices/FlowControl.cs
mcs/class/Microsoft.VisualBasic/Microsoft.VisualBasic/Microsoft.VisualBasic.CompilerServices/HostServices.cs
mcs/class/Microsoft.VisualBasic/Microsoft.VisualBasic/Microsoft.VisualBasic.CompilerServices/IntegerType.cs
mcs/class/Microsoft.VisualBasic/Microsoft.VisualBasic/Microsoft.VisualBasic.CompilerServices/LateBinding.cs
mcs/class/Microsoft.VisualBasic/Microsoft.VisualBasic/Microsoft.VisualBasic.CompilerServices/LongType.cs
mcs/class/Microsoft.VisualBasic/Microsoft.VisualBasic/Microsoft.VisualBasic.CompilerServices/ObjectType.cs
mcs/class/Microsoft.VisualBasic/Microsoft.VisualBasic/Microsoft.VisualBasic.CompilerServices/SingleType.cs
mcs/class/Microsoft.VisualBasic/Microsoft.VisualBasic/Microsoft.VisualBasic.CompilerServices/StringType.cs
mcs/class/Microsoft.VisualBasic/Microsoft.VisualBasic/Microsoft.VisualBasic.CompilerServices/Utils.cs
mcs/class/Microsoft.VisualBasic/Microsoft.VisualBasic/VBFixedArrayAttribute.cs
mcs/class/Microsoft.VisualBasic/Microsoft.VisualBasic/VBFixedStringAttribute.cs
mcs/class/Microsoft.VisualBasic/Microsoft.VisualBasic/VBMath.cs

index f2f94a51a1ec81b62583b355d83c3dff81d96a6c..d64b642912fbd7fb18d8f028d10f77c3695142ad 100644 (file)
@@ -1,22 +1,26 @@
-//\r
-// BooleanType.cs\r
-//\r
-// Author:\r
-//   Chris J Breisch (cjbreisch@altavista.net)\r
-//\r
-// (C) 2002 Chris J Breisch\r
-//\r
-namespace Microsoft.VisualBasic.CompilerServices {\r
-       [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] \r
-       [Microsoft.VisualBasic.CompilerServices.StandardModuleAttribute] \r
-       [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Auto)] \r
-       sealed public class BooleanType {\r
-               // Declarations\r
-               // Constructors\r
-               // Properties\r
-               // Methods\r
-               public static System.Boolean FromString (System.String Value) { return false;}\r
-               public static System.Boolean FromObject (System.Object Value) { return false;}\r
-               // Events\r
-       };\r
-}\r
+//
+// BooleanType.cs
+//
+// Author:
+//   Chris J Breisch (cjbreisch@altavista.net) 
+//
+// (C) 2002 Chris J Breisch
+//
+
+using System;
+
+namespace Microsoft.VisualBasic.CompilerServices \r
+{
+       [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] 
+       [Microsoft.VisualBasic.CompilerServices.StandardModuleAttribute] 
+       sealed public class BooleanType {
+               // Declarations
+               // Constructors
+               // Properties
+               // Methods
+               public static System.Boolean FromString (System.String Value) { return System.Boolean.Parse(Value); }
+               [MonoTODO]
+               public static System.Boolean FromObject (System.Object Value) { throw new NotImplementedException(); }
+               // Events
+       };
+}
index c86adbe6e008e1d75ec23e40c076a4f9ee298aab..631a19665c2fe2d89efb27a929ca40c5a512a406 100644 (file)
@@ -1,22 +1,26 @@
-//\r
-// ByteType.cs\r
-//\r
-// Author:\r
-//   Chris J Breisch (cjbreisch@altavista.net)\r
-//\r
-// (C) 2002 Chris J Breisch\r
-//\r
-namespace Microsoft.VisualBasic.CompilerServices {\r
-       [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] \r
-       [Microsoft.VisualBasic.CompilerServices.StandardModuleAttribute] \r
-       [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Auto)] \r
-       sealed public class ByteType {\r
-               // Declarations\r
-               // Constructors\r
-               // Properties\r
-               // Methods\r
-               public static System.Byte FromString (System.String Value) { return 0;}\r
-               public static System.Byte FromObject (System.Object Value) { return 0;}\r
-               // Events\r
-       };\r
-}\r
+//
+// ByteType.cs
+//
+// Author:
+//   Chris J Breisch (cjbreisch@altavista.net) 
+//
+// (C) 2002 Chris J Breisch
+//
+
+using System;
+
+namespace Microsoft.VisualBasic.CompilerServices \r
+{
+       [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] 
+       [Microsoft.VisualBasic.CompilerServices.StandardModuleAttribute] 
+       sealed public class ByteType {
+               // Declarations
+               // Constructors
+               // Properties
+               // Methods
+               public static System.Byte FromString (System.String Value) { return System.Byte.Parse(Value); }
+               [MonoTODO]
+               public static System.Byte FromObject (System.Object Value) { throw new NotImplementedException(); }
+               // Events
+       };
+}
index fdbe8637f7f07e129c28c5ed8b62c3d155290c40..0ff4c50c3b5070b4478d8b75b788e11c6d13af99 100644 (file)
@@ -1,22 +1,27 @@
-//\r
-// CharArrayType.cs\r
-//\r
-// Author:\r
-//   Chris J Breisch (cjbreisch@altavista.net)\r
-//\r
-// (C) 2002 Chris J Breisch\r
-//\r
-namespace Microsoft.VisualBasic.CompilerServices {\r
-       [Microsoft.VisualBasic.CompilerServices.StandardModuleAttribute] \r
-       [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] \r
-       [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Auto)] \r
-       sealed public class CharArrayType {\r
-               // Declarations\r
-               // Constructors\r
-               // Properties\r
-               // Methods\r
-               public static System.Char[] FromString (System.String Value) { return null;}\r
-               public static System.Char[] FromObject (System.Object Value) { return null;}\r
-               // Events\r
-       };\r
-}\r
+//
+// CharArrayType.cs
+//
+// Author:
+//   Chris J Breisch (cjbreisch@altavista.net) 
+//
+// (C) 2002 Chris J Breisch
+//
+
+using System;
+
+namespace Microsoft.VisualBasic.CompilerServices \r
+{
+       [Microsoft.VisualBasic.CompilerServices.StandardModuleAttribute] 
+       [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] 
+       sealed public class CharArrayType {
+               // Declarations
+               // Constructors
+               // Properties
+               // Methods
+               [MonoTODO]
+               public static System.Char[] FromString (System.String Value) { throw new NotImplementedException (); }
+               [MonoTODO]
+               public static System.Char[] FromObject (System.Object Value) { throw new NotImplementedException (); }
+               // Events
+       };
+}
index e8a87b22652889494d6ea9d2040e1cd9d04ff988..a493a84f45cdf30edfa54fcd7c91c5556e86e7cd 100644 (file)
@@ -1,22 +1,27 @@
-//\r
-// CharType.cs\r
-//\r
-// Author:\r
-//   Chris J Breisch (cjbreisch@altavista.net)\r
-//\r
-// (C) 2002 Chris J Breisch\r
-//\r
-namespace Microsoft.VisualBasic.CompilerServices {\r
-       [Microsoft.VisualBasic.CompilerServices.StandardModuleAttribute] \r
-       [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] \r
-       [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Auto)] \r
-       sealed public class CharType {\r
-               // Declarations\r
-               // Constructors\r
-               // Properties\r
-               // Methods\r
-               public static System.Char FromString (System.String Value) { return '\0';}\r
-               public static System.Char FromObject (System.Object Value) { return '\0';}\r
-               // Events\r
-       };\r
-}\r
+//
+// CharType.cs
+//
+// Author:
+//   Chris J Breisch (cjbreisch@altavista.net) 
+//
+// (C) 2002 Chris J Breisch
+//
+
+using System;
+
+namespace Microsoft.VisualBasic.CompilerServices \r
+{
+       [Microsoft.VisualBasic.CompilerServices.StandardModuleAttribute] 
+       [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] 
+       sealed public class CharType {
+               // Declarations
+               // Constructors
+               // Properties
+               // Methods
+               [MonoTODO]
+               public static System.Char FromString (System.String Value) { throw new NotImplementedException (); }
+               [MonoTODO]
+               public static System.Char FromObject (System.Object Value) { throw new NotImplementedException (); }
+               // Events
+       };
+}
index b355da8a06539dc34ab803dc0568e9805849ea15..4acff1409e9c12c18e0ece1f49b525f1b27b3d6a 100644 (file)
@@ -1,23 +1,28 @@
-//\r
-// DateType.cs\r
-//\r
-// Author:\r
-//   Chris J Breisch (cjbreisch@altavista.net)\r
-//\r
-// (C) 2002 Chris J Breisch\r
-//\r
-namespace Microsoft.VisualBasic.CompilerServices {\r
-       [Microsoft.VisualBasic.CompilerServices.StandardModuleAttribute] \r
-       [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] \r
-       [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Auto)] \r
-       sealed public class DateType {\r
-               // Declarations\r
-               // Constructors\r
-               // Properties\r
-               // Methods\r
-               public static System.DateTime FromString (System.String Value) { return System.DateTime.MinValue;}\r
-               public static System.DateTime FromString (System.String Value, System.Globalization.CultureInfo culture) { return System.DateTime.MinValue;}\r
-               public static System.DateTime FromObject (System.Object Value) { return System.DateTime.MinValue;}\r
-               // Events\r
-       };\r
-}\r
+//
+// DateType.cs
+//
+// Author:
+//   Chris J Breisch (cjbreisch@altavista.net) 
+//
+// (C) 2002 Chris J Breisch
+//
+
+using System;
+
+namespace Microsoft.VisualBasic.CompilerServices \r
+{
+       [Microsoft.VisualBasic.CompilerServices.StandardModuleAttribute] 
+       [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] 
+       sealed public class DateType {
+               // Declarations
+               // Constructors
+               // Properties
+               // Methods
+               public static System.DateTime FromString (System.String Value) { return System.DateTime.Parse(Value); }
+               [MonoTODO]
+               public static System.DateTime FromString (System.String Value, System.Globalization.CultureInfo culture) { throw new NotImplementedException (); }
+               [MonoTODO]
+               public static System.DateTime FromObject (System.Object Value) { throw new NotImplementedException (); }
+               // Events
+       };
+}
index a1f05f607d124d7da533962579584fdeac3ee084..670f406f42bd524160f0950bc89e3672efca5206 100644 (file)
@@ -1,26 +1,34 @@
-//\r
-// DecimalType.cs\r
-//\r
-// Author:\r
-//   Chris J Breisch (cjbreisch@altavista.net)\r
-//\r
-// (C) 2002 Chris J Breisch\r
-//\r
-namespace Microsoft.VisualBasic.CompilerServices {\r
-       [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] \r
-       [Microsoft.VisualBasic.CompilerServices.StandardModuleAttribute] \r
-       [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Auto)] \r
-       sealed public class DecimalType {\r
-               // Declarations\r
-               // Constructors\r
-               // Properties\r
-               // Methods\r
-               public static System.Decimal FromBoolean (System.Boolean Value) { return 0;}\r
-               public static System.Decimal FromString (System.String Value) { return 0;}\r
-               public static System.Decimal FromString (System.String Value, System.Globalization.NumberFormatInfo NumberFormat) { return 0;}\r
-               public static System.Decimal FromObject (System.Object Value) { return 0;}\r
-               public static System.Decimal FromObject (System.Object Value, System.Globalization.NumberFormatInfo NumberFormat) { return 0;}\r
-               public static System.Decimal Parse (System.String Value, System.Globalization.NumberFormatInfo NumberFormat) { return 0;}\r
-               // Events\r
-       };\r
-}\r
+//
+// DecimalType.cs
+//
+// Author:
+//   Chris J Breisch (cjbreisch@altavista.net) 
+//
+// (C) 2002 Chris J Breisch
+//
+
+using System;
+
+namespace Microsoft.VisualBasic.CompilerServices \r
+{
+       [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] 
+       [Microsoft.VisualBasic.CompilerServices.StandardModuleAttribute] 
+       sealed public class DecimalType {
+               // Declarations
+               // Constructors
+               // Properties
+               // Methods
+               [MonoTODO]
+               public static System.Decimal FromBoolean (System.Boolean Value) { throw new NotImplementedException (); }
+               public static System.Decimal FromString (System.String Value) { return System.Decimal.Parse(Value); }
+               [MonoTODO]
+               public static System.Decimal FromString (System.String Value, System.Globalization.NumberFormatInfo NumberFormat) { throw new NotImplementedException (); }
+               [MonoTODO]
+               public static System.Decimal FromObject (System.Object Value) { throw new NotImplementedException (); }
+               [MonoTODO]
+               public static System.Decimal FromObject (System.Object Value, System.Globalization.NumberFormatInfo NumberFormat) { throw new NotImplementedException (); }
+               [MonoTODO]
+               public static System.Decimal Parse (System.String Value, System.Globalization.NumberFormatInfo NumberFormat) { throw new NotImplementedException (); }
+               // Events
+       };
+}
index 96882af97a6e07bd5c580ee5d9dc6e349c3b4cf9..1d0e2b99fa3bd65b7c14ba7a9a9c3990cbe5952c 100644 (file)
@@ -1,26 +1,33 @@
-//\r
-// DoubleType.cs\r
-//\r
-// Author:\r
-//   Chris J Breisch (cjbreisch@altavista.net)\r
-//\r
-// (C) 2002 Chris J Breisch\r
-//\r
-namespace Microsoft.VisualBasic.CompilerServices {\r
-       [Microsoft.VisualBasic.CompilerServices.StandardModuleAttribute] \r
-       [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] \r
-       [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Auto)] \r
-       sealed public class DoubleType {\r
-               // Declarations\r
-               // Constructors\r
-               // Properties\r
-               // Methods\r
-               public static System.Double FromString (System.String Value) { return 0;}\r
-               public static System.Double FromString (System.String Value, System.Globalization.NumberFormatInfo NumberFormat) { return 0;}\r
-               public static System.Double FromObject (System.Object Value) { return 0;}\r
-               public static System.Double FromObject (System.Object Value, System.Globalization.NumberFormatInfo NumberFormat) { return 0;}\r
-               public static System.Double Parse (System.String Value) { return 0;}\r
-               public static System.Double Parse (System.String Value, System.Globalization.NumberFormatInfo NumberFormat) { return 0;}\r
-               // Events\r
-       };\r
-}\r
+//
+// DoubleType.cs
+//
+// Author:
+//   Chris J Breisch (cjbreisch@altavista.net) 
+//
+// (C) 2002 Chris J Breisch
+//
+
+using System;
+
+namespace Microsoft.VisualBasic.CompilerServices \r
+{
+       [Microsoft.VisualBasic.CompilerServices.StandardModuleAttribute] 
+       [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] 
+       sealed public class DoubleType {
+               // Declarations
+               // Constructors
+               // Properties
+               // Methods
+               public static System.Double FromString (System.String Value) { return System.Double.Parse(Value); }
+               [MonoTODO]
+               public static System.Double FromString (System.String Value, System.Globalization.NumberFormatInfo NumberFormat) { throw new NotImplementedException (); }
+               [MonoTODO]
+               public static System.Double FromObject (System.Object Value) { throw new NotImplementedException (); }
+               [MonoTODO]
+               public static System.Double FromObject (System.Object Value, System.Globalization.NumberFormatInfo NumberFormat) { throw new NotImplementedException (); }
+               public static System.Double Parse (System.String Value) { return System.Double.Parse(Value); }
+               [MonoTODO]
+               public static System.Double Parse (System.String Value, System.Globalization.NumberFormatInfo NumberFormat) { throw new NotImplementedException (); }
+               // Events
+       };
+}
index b4ca1f496873d61787a0fe01fd41e80a426ffe84..50f5ff3b23f7f7521018f945592c758d49fccb96 100644 (file)
@@ -1,29 +1,41 @@
-//\r
-// FlowControl.cs\r
-//\r
-// Author:\r
-//   Chris J Breisch (cjbreisch@altavista.net)\r
-//\r
-// (C) 2002 Chris J Breisch\r
-//\r
-namespace Microsoft.VisualBasic.CompilerServices {\r
-       [Microsoft.VisualBasic.CompilerServices.StandardModuleAttribute] \r
-       [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] \r
-       [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Auto)] \r
-       sealed public class FlowControl {\r
-               // Declarations\r
-               // Constructors\r
-               // Properties\r
-               // Methods\r
-               public static System.Boolean ForNextCheckR4 (System.Single count, System.Single limit, System.Single StepValue) { return false;}\r
-               public static System.Boolean ForNextCheckR8 (System.Double count, System.Double limit, System.Double StepValue) { return false;}\r
-               public static System.Boolean ForNextCheckDec (System.Decimal count, System.Decimal limit, System.Decimal StepValue) { return false;}\r
-               public static System.Boolean ForLoopInitObj (System.Object Counter, System.Object Start, System.Object Limit, System.Object StepValue, ref System.Object LoopForResult, ref System.Object CounterResult) { return false;}\r
-               public static System.Boolean ForNextCheckObj (System.Object Counter, System.Object LoopObj, ref System.Object CounterResult) { return false;}\r
-               public static System.Collections.IEnumerator ForEachInArr (System.Array ary) { return null;}\r
-               public static System.Collections.IEnumerator ForEachInObj (System.Object obj) { return null;}\r
-               public static System.Boolean ForEachNextObj (ref System.Object obj, ref System.Collections.IEnumerator enumerator) { return false;}\r
-               public static void CheckForSyncLockOnValueType (System.Object obj) { }\r
-               // Events\r
-       };\r
-}\r
+//
+// FlowControl.cs
+//
+// Author:
+//   Chris J Breisch (cjbreisch@altavista.net) 
+//
+// (C) 2002 Chris J Breisch
+//
+
+using System;
+
+namespace Microsoft.VisualBasic.CompilerServices \r
+{
+       [Microsoft.VisualBasic.CompilerServices.StandardModuleAttribute] 
+       [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] 
+       sealed public class FlowControl {
+               // Declarations
+               // Constructors
+               // Properties
+               // Methods
+               [MonoTODO]
+               public static System.Boolean ForNextCheckR4 (System.Single count, System.Single limit, System.Single StepValue) { throw new NotImplementedException (); }
+               [MonoTODO]
+               public static System.Boolean ForNextCheckR8 (System.Double count, System.Double limit, System.Double StepValue) { throw new NotImplementedException (); }
+               [MonoTODO]
+               public static System.Boolean ForNextCheckDec (System.Decimal count, System.Decimal limit, System.Decimal StepValue) { throw new NotImplementedException (); }
+               [MonoTODO]
+               public static System.Boolean ForLoopInitObj (System.Object Counter, System.Object Start, System.Object Limit, System.Object StepValue, ref System.Object LoopForResult, ref System.Object CounterResult) { throw new NotImplementedException (); }
+               [MonoTODO]
+               public static System.Boolean ForNextCheckObj (System.Object Counter, System.Object LoopObj, ref System.Object CounterResult) { throw new NotImplementedException (); }
+               [MonoTODO]
+               public static System.Collections.IEnumerator ForEachInArr (System.Array ary) { throw new NotImplementedException (); }
+               [MonoTODO]
+               public static System.Collections.IEnumerator ForEachInObj (System.Object obj) { throw new NotImplementedException (); }
+               [MonoTODO]
+               public static System.Boolean ForEachNextObj (ref System.Object obj, ref System.Collections.IEnumerator enumerator) { throw new NotImplementedException (); }
+               [MonoTODO]
+               public static void CheckForSyncLockOnValueType (System.Object obj) { throw new NotImplementedException (); }
+               // Events
+       };
+}
index 6caf6a57b8cf2e63e7ec574dcc8116b319a69b6b..49145ede7e9df8395446abd156468d3393c66688 100644 (file)
@@ -1,20 +1,24 @@
-//\r
-// HostServices.cs\r
-//\r
-// Author:\r
-//   Chris J Breisch (cjbreisch@altavista.net)\r
-//\r
-// (C) 2002 Chris J Breisch\r
-//\r
-namespace Microsoft.VisualBasic.CompilerServices {\r
-       [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] \r
-       [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Auto)] \r
-       sealed public class HostServices {\r
-               // Declarations\r
-               // Constructors\r
-               // Properties\r
-               public static Microsoft.VisualBasic.CompilerServices.IVbHost VBHost { get {return null;} set {} }\r
-               // Methods\r
-               // Events\r
-       };\r
-}\r
+//
+// HostServices.cs
+//
+// Author:
+//   Chris J Breisch (cjbreisch@altavista.net) 
+//
+// (C) 2002 Chris J Breisch
+//
+
+using System;
+
+namespace Microsoft.VisualBasic.CompilerServices \r
+{
+       [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] 
+       sealed public class HostServices {
+               // Declarations
+               // Constructors
+               // Properties
+               [MonoTODO]
+               public static Microsoft.VisualBasic.CompilerServices.IVbHost VBHost { get { throw new NotImplementedException (); } set { throw new NotImplementedException (); } }
+               // Methods
+               // Events
+       };
+}
index df23b1414fe391d6ba789ac6308f7bf9eb61f878..14330f9a3681ec60f1b9a540c56853a76c8cfd5a 100644 (file)
@@ -1,22 +1,26 @@
-//\r
-// IntegerType.cs\r
-//\r
-// Author:\r
-//   Chris J Breisch (cjbreisch@altavista.net)\r
-//\r
-// (C) 2002 Chris J Breisch\r
-//\r
-namespace Microsoft.VisualBasic.CompilerServices {\r
-       [Microsoft.VisualBasic.CompilerServices.StandardModuleAttribute] \r
-       [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] \r
-       [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Auto)] \r
-       sealed public class IntegerType {\r
-               // Declarations\r
-               // Constructors\r
-               // Properties\r
-               // Methods\r
-               public static System.Int32 FromString (System.String Value) { return 0;}\r
-               public static System.Int32 FromObject (System.Object Value) { return 0;}\r
-               // Events\r
-       };\r
-}\r
+//
+// IntegerType.cs
+//
+// Author:
+//   Chris J Breisch (cjbreisch@altavista.net) 
+//
+// (C) 2002 Chris J Breisch
+//
+
+using System;
+
+namespace Microsoft.VisualBasic.CompilerServices \r
+{
+       [Microsoft.VisualBasic.CompilerServices.StandardModuleAttribute] 
+       [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] 
+       sealed public class IntegerType {
+               // Declarations
+               // Constructors
+               // Properties
+               // Methods
+               public static System.Int32 FromString (System.String Value) { return System.Int32.Parse(Value); }
+               [MonoTODO]
+               public static System.Int32 FromObject (System.Object Value) { throw new NotImplementedException (); }
+               // Events
+       };
+}
index 2c88a8f471f93847d07617b1e2119d4b229c3d71..22ce2f3faf32b9895c4802af86dde89cbd5d0118 100644 (file)
@@ -1,41 +1,51 @@
-//\r
-// LateBinding.cs\r
-//\r
-// Author:\r
-//   Chris J Breisch (cjbreisch@altavista.net)\r
-//\r
-// (C) 2002 Chris J Breisch\r
-//\r
-namespace Microsoft.VisualBasic.CompilerServices {\r
-       [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] \r
-       [Microsoft.VisualBasic.CompilerServices.StandardModuleAttribute] \r
-       [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Auto)] \r
-       sealed public class LateBinding {\r
-               // Declarations\r
-               // Constructors\r
-               // Properties\r
-               // Methods\r
-               [System.Diagnostics.DebuggerHiddenAttribute] \r
-               [System.Diagnostics.DebuggerStepThroughAttribute] \r
-               public static System.Object LateGet (System.Object o, System.Type objType, System.String name, System.Object[] args, System.String[] paramnames, System.Boolean[] CopyBack) { return null;}\r
-               [System.Diagnostics.DebuggerStepThroughAttribute] \r
-               [System.Diagnostics.DebuggerHiddenAttribute] \r
-               public static void LateSetComplex (System.Object o, System.Type objType, System.String name, System.Object[] args, System.String[] paramnames, System.Boolean OptimisticSet, System.Boolean RValueBase) { }\r
-               [System.Diagnostics.DebuggerStepThroughAttribute] \r
-               [System.Diagnostics.DebuggerHiddenAttribute] \r
-               public static void LateSet (System.Object o, System.Type objType, System.String name, System.Object[] args, System.String[] paramnames) { }\r
-               [System.Diagnostics.DebuggerStepThroughAttribute] \r
-               [System.Diagnostics.DebuggerHiddenAttribute] \r
-               public static System.Object LateIndexGet (System.Object o, System.Object[] args, System.String[] paramnames) { return null;}\r
-               [System.Diagnostics.DebuggerHiddenAttribute] \r
-               [System.Diagnostics.DebuggerStepThroughAttribute] \r
-               public static void LateIndexSetComplex (System.Object o, System.Object[] args, System.String[] paramnames, System.Boolean OptimisticSet, System.Boolean RValueBase) { }\r
-               [System.Diagnostics.DebuggerStepThroughAttribute] \r
-               [System.Diagnostics.DebuggerHiddenAttribute] \r
-               public static void LateIndexSet (System.Object o, System.Object[] args, System.String[] paramnames) { }\r
-               [System.Diagnostics.DebuggerStepThroughAttribute] \r
-               [System.Diagnostics.DebuggerHiddenAttribute] \r
-               public static void LateCall (System.Object o, System.Type objType, System.String name, System.Object[] args, System.String[] paramnames, System.Boolean[] CopyBack) { }\r
-               // Events\r
-       };\r
-}\r
+//
+// LateBinding.cs
+//
+// Author:
+//   Chris J Breisch (cjbreisch@altavista.net) 
+//
+// (C) 2002 Chris J Breisch
+//
+
+using System;
+
+namespace Microsoft.VisualBasic.CompilerServices \r
+{
+       [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] 
+       [Microsoft.VisualBasic.CompilerServices.StandardModuleAttribute] 
+       sealed public class LateBinding {
+               // Declarations
+               // Constructors
+               // Properties
+               // Methods
+               [MonoTODO]
+               [System.Diagnostics.DebuggerHiddenAttribute] 
+               [System.Diagnostics.DebuggerStepThroughAttribute] 
+               public static System.Object LateGet (System.Object o, System.Type objType, System.String name, System.Object[] args, System.String[] paramnames, System.Boolean[] CopyBack) { throw new NotImplementedException (); }
+               [MonoTODO]
+               [System.Diagnostics.DebuggerStepThroughAttribute] 
+               [System.Diagnostics.DebuggerHiddenAttribute] 
+               public static void LateSetComplex (System.Object o, System.Type objType, System.String name, System.Object[] args, System.String[] paramnames, System.Boolean OptimisticSet, System.Boolean RValueBase) { throw new NotImplementedException (); }
+               [MonoTODO]
+               [System.Diagnostics.DebuggerStepThroughAttribute] 
+               [System.Diagnostics.DebuggerHiddenAttribute] 
+               public static void LateSet (System.Object o, System.Type objType, System.String name, System.Object[] args, System.String[] paramnames) { throw new NotImplementedException (); }
+               [MonoTODO]
+               [System.Diagnostics.DebuggerStepThroughAttribute] 
+               [System.Diagnostics.DebuggerHiddenAttribute] 
+               public static System.Object LateIndexGet (System.Object o, System.Object[] args, System.String[] paramnames) { throw new NotImplementedException (); }
+               [MonoTODO]
+               [System.Diagnostics.DebuggerHiddenAttribute] 
+               [System.Diagnostics.DebuggerStepThroughAttribute] 
+               public static void LateIndexSetComplex (System.Object o, System.Object[] args, System.String[] paramnames, System.Boolean OptimisticSet, System.Boolean RValueBase) { throw new NotImplementedException (); }
+               [MonoTODO]
+               [System.Diagnostics.DebuggerStepThroughAttribute] 
+               [System.Diagnostics.DebuggerHiddenAttribute] 
+               public static void LateIndexSet (System.Object o, System.Object[] args, System.String[] paramnames) { throw new NotImplementedException (); }
+               [MonoTODO]
+               [System.Diagnostics.DebuggerStepThroughAttribute] 
+               [System.Diagnostics.DebuggerHiddenAttribute] 
+               public static void LateCall (System.Object o, System.Type objType, System.String name, System.Object[] args, System.String[] paramnames, System.Boolean[] CopyBack) { throw new NotImplementedException (); }
+               // Events
+       };
+}
index 1750e4d35db1aa7b57bbbe309578d8c36ce2fce7..e90edd154c6c341db2cefc6d80406cead015f0d3 100644 (file)
@@ -1,22 +1,26 @@
-//\r
-// LongType.cs\r
-//\r
-// Author:\r
-//   Chris J Breisch (cjbreisch@altavista.net)\r
-//\r
-// (C) 2002 Chris J Breisch\r
-//\r
-namespace Microsoft.VisualBasic.CompilerServices {\r
-       [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] \r
-       [Microsoft.VisualBasic.CompilerServices.StandardModuleAttribute] \r
-       [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Auto)] \r
-       sealed public class LongType {\r
-               // Declarations\r
-               // Constructors\r
-               // Properties\r
-               // Methods\r
-               public static System.Int64 FromString (System.String Value) { return 0;}\r
-               public static System.Int64 FromObject (System.Object Value) { return 0;}\r
-               // Events\r
-       };\r
-}\r
+//
+// LongType.cs
+//
+// Author:
+//   Chris J Breisch (cjbreisch@altavista.net) 
+//
+// (C) 2002 Chris J Breisch
+//
+
+using System;
+
+namespace Microsoft.VisualBasic.CompilerServices \r
+{
+       [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] 
+       [Microsoft.VisualBasic.CompilerServices.StandardModuleAttribute] 
+       sealed public class LongType {
+               // Declarations
+               // Constructors
+               // Properties
+               // Methods
+               public static System.Int64 FromString (System.String Value) { return System.Int64.Parse(Value); }
+               [MonoTODO]
+               public static System.Int64 FromObject (System.Object Value) { throw new NotImplementedException (); }
+               // Events
+       };
+}
index 3e1e4ce6c5ca74cdacf38ebc30435fc2f648adb6..c709c80f44eb555f4965feb06e01c2e4a5d21f9d 100644 (file)
@@ -1,37 +1,58 @@
-//\r
-// ObjectType.cs\r
-//\r
-// Author:\r
-//   Chris J Breisch (cjbreisch@altavista.net)\r
-//\r
-// (C) 2002 Chris J Breisch\r
-//\r
-namespace Microsoft.VisualBasic.CompilerServices {\r
-       [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] \r
-       [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Auto)] \r
-       sealed public class ObjectType {\r
-               // Declarations\r
-               // Constructors\r
-               // Properties\r
-               // Methods\r
-               public static System.Int32 ObjTst (System.Object o1, System.Object o2, System.Boolean TextCompare) { return 0;}\r
-               public static System.Object PlusObj (System.Object obj) { return null;}\r
-               public static System.Object NegObj (System.Object obj) { return null;}\r
-               public static System.Object NotObj (System.Object obj) { return null;}\r
-               public static System.Object BitAndObj (System.Object obj1, System.Object obj2) { return null;}\r
-               public static System.Object BitOrObj (System.Object obj1, System.Object obj2) { return null;}\r
-               public static System.Object BitXorObj (System.Object obj1, System.Object obj2) { return null;}\r
-               public static System.Object AddObj (System.Object o1, System.Object o2) { return null;}\r
-               public static System.Object SubObj (System.Object o1, System.Object o2) { return null;}\r
-               public static System.Object MulObj (System.Object o1, System.Object o2) { return null;}\r
-               public static System.Object DivObj (System.Object o1, System.Object o2) { return null;}\r
-               public static System.Object PowObj (System.Object obj1, System.Object obj2) { return null;}\r
-               public static System.Object ModObj (System.Object o1, System.Object o2) { return null;}\r
-               public static System.Object IDivObj (System.Object o1, System.Object o2) { return null;}\r
-               public static System.Object XorObj (System.Object obj1, System.Object obj2) { return null;}\r
-               public static System.Boolean LikeObj (System.Object vLeft, System.Object vRight, Microsoft.VisualBasic.CompareMethod CompareOption) { return false;}\r
-               public static System.Object StrCatObj (System.Object vLeft, System.Object vRight) { return null;}\r
-               public static System.Object GetObjectValuePrimitive (System.Object o) { return null;}\r
-               // Events\r
-       };\r
-}\r
+//
+// ObjectType.cs
+//
+// Author:
+//   Chris J Breisch (cjbreisch@altavista.net) 
+//
+// (C) 2002 Chris J Breisch
+//
+
+using System;
+
+namespace Microsoft.VisualBasic.CompilerServices \r
+{
+       [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] 
+       sealed public class ObjectType {
+               // Declarations
+               // Constructors
+               // Properties
+               // Methods
+               [MonoTODO]
+               public static System.Int32 ObjTst (System.Object o1, System.Object o2, System.Boolean TextCompare) { throw new NotImplementedException (); }
+               [MonoTODO]
+               public static System.Object PlusObj (System.Object obj) { throw new NotImplementedException (); }
+               [MonoTODO]
+               public static System.Object NegObj (System.Object obj) { throw new NotImplementedException (); }
+               [MonoTODO]
+               public static System.Object NotObj (System.Object obj) { throw new NotImplementedException (); }
+               [MonoTODO]
+               public static System.Object BitAndObj (System.Object obj1, System.Object obj2) { throw new NotImplementedException (); }
+               [MonoTODO]
+               public static System.Object BitOrObj (System.Object obj1, System.Object obj2) { throw new NotImplementedException (); }
+               [MonoTODO]
+               public static System.Object BitXorObj (System.Object obj1, System.Object obj2) { throw new NotImplementedException (); }
+               [MonoTODO]
+               public static System.Object AddObj (System.Object o1, System.Object o2) { throw new NotImplementedException (); }
+               [MonoTODO]
+               public static System.Object SubObj (System.Object o1, System.Object o2) { throw new NotImplementedException (); }
+               [MonoTODO]
+               public static System.Object MulObj (System.Object o1, System.Object o2) { throw new NotImplementedException (); }
+               [MonoTODO]
+               public static System.Object DivObj (System.Object o1, System.Object o2) { throw new NotImplementedException (); }
+               [MonoTODO]
+               public static System.Object PowObj (System.Object obj1, System.Object obj2) { throw new NotImplementedException (); }
+               [MonoTODO]
+               public static System.Object ModObj (System.Object o1, System.Object o2) { throw new NotImplementedException (); }
+               [MonoTODO]
+               public static System.Object IDivObj (System.Object o1, System.Object o2) { throw new NotImplementedException (); }
+               [MonoTODO]
+               public static System.Object XorObj (System.Object obj1, System.Object obj2) { throw new NotImplementedException (); }
+               [MonoTODO]
+               public static System.Boolean LikeObj (System.Object vLeft, System.Object vRight, Microsoft.VisualBasic.CompareMethod CompareOption) { throw new NotImplementedException (); }
+               [MonoTODO]
+               public static System.Object StrCatObj (System.Object vLeft, System.Object vRight) { throw new NotImplementedException (); }
+               [MonoTODO]
+               public static System.Object GetObjectValuePrimitive (System.Object o) { throw new NotImplementedException (); }
+               // Events
+       };
+}
index a9139d81b961a6e1a068fa5c12a9d0fad5148eda..134db71e4d41c5bebf8150285289cffb50d9f439 100644 (file)
@@ -1,24 +1,30 @@
-//\r
-// SingleType.cs\r
-//\r
-// Author:\r
-//   Chris J Breisch (cjbreisch@altavista.net)\r
-//\r
-// (C) 2002 Chris J Breisch\r
-//\r
-namespace Microsoft.VisualBasic.CompilerServices {\r
-       [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] \r
-       [Microsoft.VisualBasic.CompilerServices.StandardModuleAttribute] \r
-       [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Auto)] \r
-       sealed public class SingleType {\r
-               // Declarations\r
-               // Constructors\r
-               // Properties\r
-               // Methods\r
-               public static System.Single FromString (System.String Value) { return 0;}\r
-               public static System.Single FromString (System.String Value, System.Globalization.NumberFormatInfo NumberFormat) { return 0;}\r
-               public static System.Single FromObject (System.Object Value) { return 0;}\r
-               public static System.Single FromObject (System.Object Value, System.Globalization.NumberFormatInfo NumberFormat) { return 0;}\r
-               // Events\r
-       };\r
-}\r
+//
+// SingleType.cs
+//
+// Author:
+//   Chris J Breisch (cjbreisch@altavista.net) 
+//
+// (C) 2002 Chris J Breisch
+//
+
+using System;
+
+namespace Microsoft.VisualBasic.CompilerServices \r
+{
+       [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] 
+       [Microsoft.VisualBasic.CompilerServices.StandardModuleAttribute] 
+       sealed public class SingleType {
+               // Declarations
+               // Constructors
+               // Properties
+               // Methods
+               public static System.Single FromString (System.String Value) { return System.Single.Parse(Value); }
+               [MonoTODO]
+               public static System.Single FromString (System.String Value, System.Globalization.NumberFormatInfo NumberFormat) { throw new NotImplementedException (); }
+               [MonoTODO]
+               public static System.Single FromObject (System.Object Value) { throw new NotImplementedException (); }
+               [MonoTODO]
+               public static System.Single FromObject (System.Object Value, System.Globalization.NumberFormatInfo NumberFormat) { throw new NotImplementedException (); }
+               // Events
+       };
+}
index fbd521223bd50afdb4c67fc7ad632a3d84646a47..e4148aba2587da85bf605f81d0a79090508dc9ff 100644 (file)
@@ -1,39 +1,61 @@
-//\r
-// StringType.cs\r
-//\r
-// Author:\r
-//   Chris J Breisch (cjbreisch@altavista.net)\r
-//\r
-// (C) 2002 Chris J Breisch\r
-//\r
-namespace Microsoft.VisualBasic.CompilerServices {\r
-       [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] \r
-       [Microsoft.VisualBasic.CompilerServices.StandardModuleAttribute] \r
-       [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Auto)] \r
-       sealed public class StringType {\r
-               // Declarations\r
-               // Constructors\r
-               // Properties\r
-               // Methods\r
-               public static System.String FromBoolean (System.Boolean Value) { return "";}\r
-               public static System.String FromByte (System.Byte Value) { return "";}\r
-               public static System.String FromChar (System.Char Value) { return "";}\r
-               public static System.String FromShort (System.Int16 Value) { return "";}\r
-               public static System.String FromInteger (System.Int32 Value) { return "";}\r
-               public static System.String FromLong (System.Int64 Value) { return "";}\r
-               public static System.String FromSingle (System.Single Value) { return "";}\r
-               public static System.String FromDouble (System.Double Value) { return "";}\r
-               public static System.String FromSingle (System.Single Value, System.Globalization.NumberFormatInfo NumberFormat) { return "";}\r
-               public static System.String FromDouble (System.Double Value, System.Globalization.NumberFormatInfo NumberFormat) { return "";}\r
-               public static System.String FromDate (System.DateTime Value) { return "";}\r
-               public static System.String FromDecimal (System.Decimal Value) { return "";}\r
-               public static System.String FromDecimal (System.Decimal Value, System.Globalization.NumberFormatInfo NumberFormat) { return "";}\r
-               public static System.String FromObject (System.Object Value) { return "";}\r
-               public static System.Int32 StrCmp (System.String sLeft, System.String sRight, System.Boolean TextCompare) { return 0;}\r
-               public static System.Boolean StrLike (System.String Source, System.String Pattern, Microsoft.VisualBasic.CompareMethod CompareOption) { return false;}\r
-               public static System.Boolean StrLikeBinary (System.String Source, System.String Pattern) { return false;}\r
-               public static System.Boolean StrLikeText (System.String Source, System.String Pattern) { return false;}\r
-               public static void MidStmtStr (ref System.String sDest, ref System.Int32 StartPosition, ref System.Int32 MaxInsertLength, ref System.String sInsert) { }\r
-               // Events\r
-       };\r
-}\r
+//
+// StringType.cs
+//
+// Author:
+//   Chris J Breisch (cjbreisch@altavista.net) 
+//
+// (C) 2002 Chris J Breisch
+//
+
+using System;
+
+namespace Microsoft.VisualBasic.CompilerServices \r
+{
+       [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] 
+       [Microsoft.VisualBasic.CompilerServices.StandardModuleAttribute] 
+       sealed public class StringType {
+               // Declarations
+               // Constructors
+               // Properties
+               // Methods
+               [MonoTODO]
+               public static System.String FromBoolean (System.Boolean Value) { throw new NotImplementedException (); }
+               [MonoTODO]
+               public static System.String FromByte (System.Byte Value) { throw new NotImplementedException (); }
+               [MonoTODO]
+               public static System.String FromChar (System.Char Value) { throw new NotImplementedException (); }
+               [MonoTODO]
+               public static System.String FromShort (System.Int16 Value) { throw new NotImplementedException (); }
+               [MonoTODO]
+               public static System.String FromInteger (System.Int32 Value) { throw new NotImplementedException (); }
+               [MonoTODO]
+               public static System.String FromLong (System.Int64 Value) { throw new NotImplementedException (); }
+               [MonoTODO]
+               public static System.String FromSingle (System.Single Value) { throw new NotImplementedException (); }
+               [MonoTODO]
+               public static System.String FromDouble (System.Double Value) { throw new NotImplementedException (); }
+               [MonoTODO]
+               public static System.String FromSingle (System.Single Value, System.Globalization.NumberFormatInfo NumberFormat) { throw new NotImplementedException (); }
+               [MonoTODO]
+               public static System.String FromDouble (System.Double Value, System.Globalization.NumberFormatInfo NumberFormat) { throw new NotImplementedException (); }
+               [MonoTODO]
+               public static System.String FromDate (System.DateTime Value) { throw new NotImplementedException (); }
+               [MonoTODO]
+               public static System.String FromDecimal (System.Decimal Value) { throw new NotImplementedException (); }
+               [MonoTODO]
+               public static System.String FromDecimal (System.Decimal Value, System.Globalization.NumberFormatInfo NumberFormat) { throw new NotImplementedException (); }
+               [MonoTODO]
+               public static System.String FromObject (System.Object Value) { throw new NotImplementedException (); }
+               [MonoTODO]
+               public static System.Int32 StrCmp (System.String sLeft, System.String sRight, System.Boolean TextCompare) { throw new NotImplementedException (); }
+               [MonoTODO]
+               public static System.Boolean StrLike (System.String Source, System.String Pattern, Microsoft.VisualBasic.CompareMethod CompareOption) { throw new NotImplementedException (); }
+               [MonoTODO]
+               public static System.Boolean StrLikeBinary (System.String Source, System.String Pattern) { throw new NotImplementedException (); }
+               [MonoTODO]
+               public static System.Boolean StrLikeText (System.String Source, System.String Pattern) { throw new NotImplementedException (); }
+               [MonoTODO]
+               public static void MidStmtStr (ref System.String sDest, ref System.Int32 StartPosition, ref System.Int32 MaxInsertLength, ref System.String sInsert) { throw new NotImplementedException (); }
+               // Events
+       };
+}
index e5628c221dca73ff454e8616d82a2425d62b1381..6d13fa195a2fe0e178794158c50b6bc034b24e31 100644 (file)
@@ -1,24 +1,31 @@
-//\r
-// Utils.cs\r
-//\r
-// Author:\r
-//   Chris J Breisch (cjbreisch@altavista.net)\r
-//\r
-// (C) 2002 Chris J Breisch\r
-//\r
-namespace Microsoft.VisualBasic.CompilerServices {\r
-       [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] \r
-       [Microsoft.VisualBasic.CompilerServices.StandardModuleAttribute] \r
-       [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Auto)] \r
-       sealed public class Utils {\r
-               // Declarations\r
-               // Constructors\r
-               // Properties\r
-               // Methods\r
-               public static void ThrowException (System.Int32 hr) { }\r
-               public static System.Object SetCultureInfo (System.Globalization.CultureInfo Culture) { return null;}\r
-               public static System.Array CopyArray (System.Array arySrc, System.Array aryDest) { return null;}\r
-               public static System.String MethodToString (System.Reflection.MethodBase Method) { return "";}\r
-               // Events\r
-       };\r
-}\r
+//
+// Utils.cs
+//
+// Author:
+//   Chris J Breisch (cjbreisch@altavista.net) 
+//
+// (C) 2002 Chris J Breisch
+//
+
+using System;
+
+namespace Microsoft.VisualBasic.CompilerServices \r
+{
+       [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
+       };
+}
index ec69598d91cb6e411e896ea02c1b1dea0995980c..dbc879b4e2eff34418bcb8981b2d0881572578e7 100644 (file)
@@ -1,23 +1,30 @@
-//\r
-// VBFixedArrayAttribute.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.Field)] \r
-       [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Auto)] \r
-       sealed public class VBFixedArrayAttribute : System.Attribute {\r
-               // Declarations\r
-               // Constructors\r
-               VBFixedArrayAttribute(System.Int32 UpperBound1) {}\r
-               VBFixedArrayAttribute(System.Int32 UpperBound1, System.Int32 UpperBound2) {}\r
-               // Properties\r
-               public System.Int32 Length { get {return 0;} }\r
-               public System.Int32[] Bounds { get {return null;} }\r
-               // Methods\r
-               // Events\r
-       };\r
-}\r
+//
+// VBFixedArrayAttribute.cs
+//
+// Author:
+//   Chris J Breisch (cjbreisch@altavista.net) 
+//
+// (C) 2002 Chris J Breisch
+//
+
+using System;
+
+namespace Microsoft.VisualBasic \r
+{
+       [System.AttributeUsageAttribute(System.AttributeTargets.Field)] 
+       sealed public class VBFixedArrayAttribute : System.Attribute {
+               // Declarations
+               // Constructors
+               [MonoTODO]
+               VBFixedArrayAttribute(System.Int32 UpperBound1) { throw new NotImplementedException (); }
+               [MonoTODO]
+               VBFixedArrayAttribute(System.Int32 UpperBound1, System.Int32 UpperBound2) { throw new NotImplementedException (); }
+               // Properties
+               [MonoTODO]
+               public System.Int32 Length { get { throw new NotImplementedException (); } }
+               [MonoTODO]
+               public System.Int32[] Bounds { get { throw new NotImplementedException (); } }
+               // Methods
+               // Events
+       };
+}
index fb1c4aaab1cef3711d04b91b58bddb483892af08..c4de1009ebdee04cede22f4023e1814331ff7f14 100644 (file)
@@ -1,21 +1,26 @@
-//\r
-// VBFixedStringAttribute.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.Field)] \r
-       [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Auto)] \r
-       sealed public class VBFixedStringAttribute : System.Attribute {\r
-               // Declarations\r
-               // Constructors\r
-               VBFixedStringAttribute(System.Int32 Length) {}\r
-               // Properties\r
-               public System.Int32 Length { get {return 0;} }\r
-               // Methods\r
-               // Events\r
-       };\r
-}\r
+//
+// VBFixedStringAttribute.cs
+//
+// Author:
+//   Chris J Breisch (cjbreisch@altavista.net) 
+//
+// (C) 2002 Chris J Breisch
+//
+
+using System;
+
+namespace Microsoft.VisualBasic \r
+{
+       [System.AttributeUsageAttribute(System.AttributeTargets.Field)] 
+       sealed public class VBFixedStringAttribute : System.Attribute {
+               // Declarations
+               // Constructors
+               [MonoTODO]
+               VBFixedStringAttribute(System.Int32 Length) { throw new NotImplementedException (); }
+               // Properties
+               [MonoTODO]
+               public System.Int32 Length { get { throw new NotImplementedException (); } }
+               // Methods
+               // Events
+       };
+}
index 62cb0684ffe8039f83fc93b98a18c2c9a66d7acb..49be95781b92d32282b6d8a7afd8f06c08843dcb 100644 (file)
@@ -1,23 +1,29 @@
-//\r
-// VBMath.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 VBMath {\r
-               // Declarations\r
-               // Constructors\r
-               // Properties\r
-               // Methods\r
-               public static System.Single Rnd () { return 0;}\r
-               public static System.Single Rnd (System.Single Number) { return 0;}\r
-               public static void Randomize () { }\r
-               public static void Randomize (System.Double Number) { }\r
-               // Events\r
-       };\r
-}\r
+//
+// VBMath.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 VBMath {
+               // Declarations
+               // Constructors
+               // Properties
+               // Methods
+               [MonoTODO]
+               public static System.Single Rnd () { throw new NotImplementedException (); }
+               [MonoTODO]
+               public static System.Single Rnd (System.Single Number) { throw new NotImplementedException (); }
+               [MonoTODO]
+               public static void Randomize () { throw new NotImplementedException (); }
+               [MonoTODO]
+               public static void Randomize (System.Double Number) { throw new NotImplementedException (); }
+               // Events
+       };
+}