1 // Licensed to the .NET Foundation under one or more agreements.
2 // The .NET Foundation licenses this file to you under the MIT license.
3 // See the LICENSE file in the project root for more information.
4 
5 [assembly:System.Reflection.AssemblyVersionAttribute("10.0.0.0")]
6 [assembly:System.CLSCompliantAttribute(true)]
7 [assembly:System.Diagnostics.DebuggableAttribute((System.Diagnostics.DebuggableAttribute.DebuggingModes)(3))]
8 [assembly:System.Reflection.AssemblyCompanyAttribute("Ximian")]
9 [assembly:System.Reflection.AssemblyCopyrightAttribute("Copyright © Ximian 2006")]
10 [assembly:System.Reflection.AssemblyDefaultAliasAttribute("Microsoft.VisualBasic.dll")]
11 [assembly:System.Reflection.AssemblyDescriptionAttribute("Microsoft.VisualBasic.dll")]
12 [assembly:System.Reflection.AssemblyFileVersionAttribute("10.0.30319.17020")]
13 [assembly:System.Reflection.AssemblyInformationalVersionAttribute("10.0.30319.17020")]
14 [assembly:System.Reflection.AssemblyProductAttribute("vbruntime")]
15 [assembly:System.Reflection.AssemblyTitleAttribute("Microsoft.VisualBasic.dll")]
16 [assembly:System.Resources.NeutralResourcesLanguageAttribute("en-US")]
17 [assembly:System.Resources.SatelliteContractVersionAttribute("10.0.0.0")]
18 [assembly:System.Runtime.CompilerServices.CompilationRelaxationsAttribute((System.Runtime.CompilerServices.CompilationRelaxations)(8))]
19 [assembly:System.Runtime.CompilerServices.ReferenceAssemblyAttribute]
20 [assembly:System.Runtime.CompilerServices.RuntimeCompatibilityAttribute(WrapNonExceptionThrows=true)]
21 [assembly:System.Runtime.InteropServices.ComVisibleAttribute(true)]
22 [assembly:System.Security.AllowPartiallyTrustedCallersAttribute]
23 namespace Microsoft.VisualBasic
24 {
25     public enum AppWinStyle : short
26     {
27         Hide = (short)0,
28         MaximizedFocus = (short)3,
29         MinimizedFocus = (short)2,
30         MinimizedNoFocus = (short)6,
31         NormalFocus = (short)1,
32         NormalNoFocus = (short)4,
33     }
34     public enum AudioPlayMode
35     {
36         Background = 1,
37         BackgroundLoop = 2,
38         WaitToComplete = 0,
39     }
40     public enum CallType
41     {
42         Get = 2,
43         Let = 4,
44         Method = 1,
45         Set = 8,
46     }
47     [System.Diagnostics.DebuggerDisplayAttribute("Count = {Count}")]
48     [System.Diagnostics.DebuggerTypeProxyAttribute("Microsoft.VisualBasic.Collection.CollectionDebugView")]
49     [System.SerializableAttribute]
50     public sealed partial class Collection : System.Collections.ICollection, System.Collections.IList, System.Runtime.Serialization.IDeserializationCallback, System.Runtime.Serialization.ISerializable
51     {
Collection()52         public Collection() { }
53         [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Advanced)]
54         public object this[object Index] { get { throw null; } }
55         public object this[string Key] { get { throw null; } }
56         public object this[int Index] { get { throw null; } }
Add(object Item, string Key = null, object Before = null, object After = null)57         public void Add(object Item, string Key = null, object Before = null, object After = null) { }
Contains(string Key)58         public bool Contains(string Key) { throw null; }
GetEnumerator()59         public System.Collections.IEnumerator GetEnumerator() { throw null; }
Remove(int Index)60         public void Remove(int Index) { }
Remove(string Key)61         public void Remove(string Key) { }
62         object System.Collections.IList.this[int Index] { get { throw null; } set { } }
System.Collections.IList.Add(object value)63         int System.Collections.IList.Add(object value) { throw null; }
System.Collections.IList.Clear()64         void System.Collections.IList.Clear() { }
System.Collections.IList.Contains(object value)65         bool System.Collections.IList.Contains(object value) { throw null; }
System.Collections.IList.IndexOf(object value)66         int System.Collections.IList.IndexOf(object value) { throw null; }
System.Collections.IList.Insert(int index, object value)67         void System.Collections.IList.Insert(int index, object value) { }
System.Collections.IList.Remove(object value)68         void System.Collections.IList.Remove(object value) { }
System.Collections.IList.RemoveAt(int index)69         void System.Collections.IList.RemoveAt(int index) { }
70         bool System.Collections.IList.IsFixedSize { get { throw null; } }
71         bool System.Collections.IList.IsReadOnly { get { throw null; } }
System.Collections.ICollection.CopyTo(System.Array array, int index)72         void System.Collections.ICollection.CopyTo(System.Array array, int index) { }
73         int System.Collections.ICollection.Count { get { throw null; } }
74         bool System.Collections.ICollection.IsSynchronized { get { throw null; } }
75         object System.Collections.ICollection.SyncRoot { get { throw null; } }
System.Runtime.Serialization.IDeserializationCallback.OnDeserialization(object sender)76         void System.Runtime.Serialization.IDeserializationCallback.OnDeserialization(object sender) { }
System.Runtime.Serialization.ISerializable.GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context)77         void System.Runtime.Serialization.ISerializable.GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { }
78     }
79     [System.AttributeUsageAttribute((System.AttributeTargets)(4), Inherited=false, AllowMultiple=false)]
80     public sealed partial class ComClassAttribute : System.Attribute
81     {
ComClassAttribute()82         public ComClassAttribute() { }
ComClassAttribute(string _ClassID)83         public ComClassAttribute(string _ClassID) { }
ComClassAttribute(string _ClassID, string _InterfaceID)84         public ComClassAttribute(string _ClassID, string _InterfaceID) { }
ComClassAttribute(string _ClassID, string _InterfaceID, string _EventId)85         public ComClassAttribute(string _ClassID, string _InterfaceID, string _EventId) { }
86         public string ClassID { get { throw null; } }
87         public string EventID { get { throw null; } }
88         public string InterfaceID { get { throw null; } }
89         public bool InterfaceShadows { get { throw null; } set { } }
90     }
91     public enum CompareMethod
92     {
93         Binary = 0,
94         Text = 1,
95     }
96     [Microsoft.VisualBasic.CompilerServices.StandardModuleAttribute]
97     public sealed partial class Constants
98     {
Constants()99         internal Constants() { }
100         public const Microsoft.VisualBasic.MsgBoxResult vbAbort = (Microsoft.VisualBasic.MsgBoxResult)(3);
101         public const Microsoft.VisualBasic.MsgBoxStyle vbAbortRetryIgnore = (Microsoft.VisualBasic.MsgBoxStyle)(2);
102         public const Microsoft.VisualBasic.MsgBoxStyle vbApplicationModal = (Microsoft.VisualBasic.MsgBoxStyle)(0);
103         public const Microsoft.VisualBasic.FileAttribute vbArchive = (Microsoft.VisualBasic.FileAttribute)(32);
104         public const Microsoft.VisualBasic.VariantType vbArray = (Microsoft.VisualBasic.VariantType)(8192);
105         public const string vbBack = "\b";
106         public const Microsoft.VisualBasic.CompareMethod vbBinaryCompare = (Microsoft.VisualBasic.CompareMethod)(0);
107         public const Microsoft.VisualBasic.VariantType vbBoolean = (Microsoft.VisualBasic.VariantType)(11);
108         public const Microsoft.VisualBasic.VariantType vbByte = (Microsoft.VisualBasic.VariantType)(17);
109         public const Microsoft.VisualBasic.MsgBoxResult vbCancel = (Microsoft.VisualBasic.MsgBoxResult)(2);
110         public const string vbCr = "\r";
111         public const Microsoft.VisualBasic.MsgBoxStyle vbCritical = (Microsoft.VisualBasic.MsgBoxStyle)(16);
112         public const string vbCrLf = "\r\n";
113         public const Microsoft.VisualBasic.VariantType vbCurrency = (Microsoft.VisualBasic.VariantType)(6);
114         public const Microsoft.VisualBasic.VariantType vbDate = (Microsoft.VisualBasic.VariantType)(7);
115         public const Microsoft.VisualBasic.VariantType vbDecimal = (Microsoft.VisualBasic.VariantType)(14);
116         public const Microsoft.VisualBasic.MsgBoxStyle vbDefaultButton1 = (Microsoft.VisualBasic.MsgBoxStyle)(0);
117         public const Microsoft.VisualBasic.MsgBoxStyle vbDefaultButton2 = (Microsoft.VisualBasic.MsgBoxStyle)(256);
118         public const Microsoft.VisualBasic.MsgBoxStyle vbDefaultButton3 = (Microsoft.VisualBasic.MsgBoxStyle)(512);
119         public const Microsoft.VisualBasic.FileAttribute vbDirectory = (Microsoft.VisualBasic.FileAttribute)(16);
120         public const Microsoft.VisualBasic.VariantType vbDouble = (Microsoft.VisualBasic.VariantType)(5);
121         public const Microsoft.VisualBasic.VariantType vbEmpty = (Microsoft.VisualBasic.VariantType)(0);
122         public const Microsoft.VisualBasic.MsgBoxStyle vbExclamation = (Microsoft.VisualBasic.MsgBoxStyle)(48);
123         public const Microsoft.VisualBasic.TriState vbFalse = (Microsoft.VisualBasic.TriState)(0);
124         public const Microsoft.VisualBasic.FirstWeekOfYear vbFirstFourDays = (Microsoft.VisualBasic.FirstWeekOfYear)(2);
125         public const Microsoft.VisualBasic.FirstWeekOfYear vbFirstFullWeek = (Microsoft.VisualBasic.FirstWeekOfYear)(3);
126         public const Microsoft.VisualBasic.FirstWeekOfYear vbFirstJan1 = (Microsoft.VisualBasic.FirstWeekOfYear)(1);
127         public const string vbFormFeed = "\f";
128         public const Microsoft.VisualBasic.FirstDayOfWeek vbFriday = (Microsoft.VisualBasic.FirstDayOfWeek)(6);
129         public const Microsoft.VisualBasic.DateFormat vbGeneralDate = (Microsoft.VisualBasic.DateFormat)(0);
130         public const Microsoft.VisualBasic.CallType vbGet = (Microsoft.VisualBasic.CallType)(2);
131         public const Microsoft.VisualBasic.FileAttribute vbHidden = (Microsoft.VisualBasic.FileAttribute)(2);
132         public const Microsoft.VisualBasic.AppWinStyle vbHide = (Microsoft.VisualBasic.AppWinStyle)(0);
133         public const Microsoft.VisualBasic.VbStrConv vbHiragana = (Microsoft.VisualBasic.VbStrConv)(32);
134         public const Microsoft.VisualBasic.MsgBoxResult vbIgnore = (Microsoft.VisualBasic.MsgBoxResult)(5);
135         public const Microsoft.VisualBasic.MsgBoxStyle vbInformation = (Microsoft.VisualBasic.MsgBoxStyle)(64);
136         public const Microsoft.VisualBasic.VariantType vbInteger = (Microsoft.VisualBasic.VariantType)(3);
137         public const Microsoft.VisualBasic.VbStrConv vbKatakana = (Microsoft.VisualBasic.VbStrConv)(16);
138         public const Microsoft.VisualBasic.CallType vbLet = (Microsoft.VisualBasic.CallType)(4);
139         public const string vbLf = "\n";
140         public const Microsoft.VisualBasic.VbStrConv vbLinguisticCasing = (Microsoft.VisualBasic.VbStrConv)(1024);
141         public const Microsoft.VisualBasic.VariantType vbLong = (Microsoft.VisualBasic.VariantType)(20);
142         public const Microsoft.VisualBasic.DateFormat vbLongDate = (Microsoft.VisualBasic.DateFormat)(1);
143         public const Microsoft.VisualBasic.DateFormat vbLongTime = (Microsoft.VisualBasic.DateFormat)(3);
144         public const Microsoft.VisualBasic.VbStrConv vbLowerCase = (Microsoft.VisualBasic.VbStrConv)(2);
145         public const Microsoft.VisualBasic.AppWinStyle vbMaximizedFocus = (Microsoft.VisualBasic.AppWinStyle)(3);
146         public const Microsoft.VisualBasic.CallType vbMethod = (Microsoft.VisualBasic.CallType)(1);
147         public const Microsoft.VisualBasic.AppWinStyle vbMinimizedFocus = (Microsoft.VisualBasic.AppWinStyle)(2);
148         public const Microsoft.VisualBasic.AppWinStyle vbMinimizedNoFocus = (Microsoft.VisualBasic.AppWinStyle)(6);
149         public const Microsoft.VisualBasic.FirstDayOfWeek vbMonday = (Microsoft.VisualBasic.FirstDayOfWeek)(2);
150         public const Microsoft.VisualBasic.MsgBoxStyle vbMsgBoxHelp = (Microsoft.VisualBasic.MsgBoxStyle)(16384);
151         public const Microsoft.VisualBasic.MsgBoxStyle vbMsgBoxRight = (Microsoft.VisualBasic.MsgBoxStyle)(524288);
152         public const Microsoft.VisualBasic.MsgBoxStyle vbMsgBoxRtlReading = (Microsoft.VisualBasic.MsgBoxStyle)(1048576);
153         public const Microsoft.VisualBasic.MsgBoxStyle vbMsgBoxSetForeground = (Microsoft.VisualBasic.MsgBoxStyle)(65536);
154         public const Microsoft.VisualBasic.VbStrConv vbNarrow = (Microsoft.VisualBasic.VbStrConv)(8);
155         public const string vbNewLine = "\r\n";
156         public const Microsoft.VisualBasic.MsgBoxResult vbNo = (Microsoft.VisualBasic.MsgBoxResult)(7);
157         public const Microsoft.VisualBasic.FileAttribute vbNormal = (Microsoft.VisualBasic.FileAttribute)(0);
158         public const Microsoft.VisualBasic.AppWinStyle vbNormalFocus = (Microsoft.VisualBasic.AppWinStyle)(1);
159         public const Microsoft.VisualBasic.AppWinStyle vbNormalNoFocus = (Microsoft.VisualBasic.AppWinStyle)(4);
160         public const Microsoft.VisualBasic.VariantType vbNull = (Microsoft.VisualBasic.VariantType)(1);
161         public const string vbNullChar = "\0";
162         public const string vbNullString = null;
163         public const Microsoft.VisualBasic.VariantType vbObject = (Microsoft.VisualBasic.VariantType)(9);
164         public const int vbObjectError = -2147221504;
165         public const Microsoft.VisualBasic.MsgBoxResult vbOK = (Microsoft.VisualBasic.MsgBoxResult)(1);
166         public const Microsoft.VisualBasic.MsgBoxStyle vbOKCancel = (Microsoft.VisualBasic.MsgBoxStyle)(1);
167         public const Microsoft.VisualBasic.MsgBoxStyle vbOKOnly = (Microsoft.VisualBasic.MsgBoxStyle)(0);
168         public const Microsoft.VisualBasic.VbStrConv vbProperCase = (Microsoft.VisualBasic.VbStrConv)(3);
169         public const Microsoft.VisualBasic.MsgBoxStyle vbQuestion = (Microsoft.VisualBasic.MsgBoxStyle)(32);
170         public const Microsoft.VisualBasic.FileAttribute vbReadOnly = (Microsoft.VisualBasic.FileAttribute)(1);
171         public const Microsoft.VisualBasic.MsgBoxResult vbRetry = (Microsoft.VisualBasic.MsgBoxResult)(4);
172         public const Microsoft.VisualBasic.MsgBoxStyle vbRetryCancel = (Microsoft.VisualBasic.MsgBoxStyle)(5);
173         public const Microsoft.VisualBasic.FirstDayOfWeek vbSaturday = (Microsoft.VisualBasic.FirstDayOfWeek)(7);
174         public const Microsoft.VisualBasic.CallType vbSet = (Microsoft.VisualBasic.CallType)(8);
175         public const Microsoft.VisualBasic.DateFormat vbShortDate = (Microsoft.VisualBasic.DateFormat)(2);
176         public const Microsoft.VisualBasic.DateFormat vbShortTime = (Microsoft.VisualBasic.DateFormat)(4);
177         public const Microsoft.VisualBasic.VbStrConv vbSimplifiedChinese = (Microsoft.VisualBasic.VbStrConv)(256);
178         public const Microsoft.VisualBasic.VariantType vbSingle = (Microsoft.VisualBasic.VariantType)(4);
179         public const Microsoft.VisualBasic.VariantType vbString = (Microsoft.VisualBasic.VariantType)(8);
180         public const Microsoft.VisualBasic.FirstDayOfWeek vbSunday = (Microsoft.VisualBasic.FirstDayOfWeek)(1);
181         public const Microsoft.VisualBasic.FileAttribute vbSystem = (Microsoft.VisualBasic.FileAttribute)(4);
182         public const Microsoft.VisualBasic.MsgBoxStyle vbSystemModal = (Microsoft.VisualBasic.MsgBoxStyle)(4096);
183         public const string vbTab = "\t";
184         public const Microsoft.VisualBasic.CompareMethod vbTextCompare = (Microsoft.VisualBasic.CompareMethod)(1);
185         public const Microsoft.VisualBasic.FirstDayOfWeek vbThursday = (Microsoft.VisualBasic.FirstDayOfWeek)(5);
186         public const Microsoft.VisualBasic.VbStrConv vbTraditionalChinese = (Microsoft.VisualBasic.VbStrConv)(512);
187         public const Microsoft.VisualBasic.TriState vbTrue = (Microsoft.VisualBasic.TriState)(-1);
188         public const Microsoft.VisualBasic.FirstDayOfWeek vbTuesday = (Microsoft.VisualBasic.FirstDayOfWeek)(3);
189         public const Microsoft.VisualBasic.VbStrConv vbUpperCase = (Microsoft.VisualBasic.VbStrConv)(1);
190         public const Microsoft.VisualBasic.TriState vbUseDefault = (Microsoft.VisualBasic.TriState)(-2);
191         public const Microsoft.VisualBasic.VariantType vbUserDefinedType = (Microsoft.VisualBasic.VariantType)(36);
192         public const Microsoft.VisualBasic.FirstWeekOfYear vbUseSystem = (Microsoft.VisualBasic.FirstWeekOfYear)(0);
193         public const Microsoft.VisualBasic.FirstDayOfWeek vbUseSystemDayOfWeek = (Microsoft.VisualBasic.FirstDayOfWeek)(0);
194         public const Microsoft.VisualBasic.VariantType vbVariant = (Microsoft.VisualBasic.VariantType)(12);
195         public const string vbVerticalTab = "\v";
196         public const Microsoft.VisualBasic.FileAttribute vbVolume = (Microsoft.VisualBasic.FileAttribute)(8);
197         public const Microsoft.VisualBasic.FirstDayOfWeek vbWednesday = (Microsoft.VisualBasic.FirstDayOfWeek)(4);
198         public const Microsoft.VisualBasic.VbStrConv vbWide = (Microsoft.VisualBasic.VbStrConv)(4);
199         public const Microsoft.VisualBasic.MsgBoxResult vbYes = (Microsoft.VisualBasic.MsgBoxResult)(6);
200         public const Microsoft.VisualBasic.MsgBoxStyle vbYesNo = (Microsoft.VisualBasic.MsgBoxStyle)(4);
201         public const Microsoft.VisualBasic.MsgBoxStyle vbYesNoCancel = (Microsoft.VisualBasic.MsgBoxStyle)(3);
202     }
203     public sealed partial class ControlChars
204     {
205         public const char Back = '\b';
206         public const char Cr = '\r';
207         public const string CrLf = "\r\n";
208         public const char FormFeed = '\f';
209         public const char Lf = '\n';
210         public const string NewLine = "\r\n";
211         public const char NullChar = '\0';
212         public const char Quote = '"';
213         public const char Tab = '\t';
214         public const char VerticalTab = '\v';
ControlChars()215         public ControlChars() { }
216     }
217     [Microsoft.VisualBasic.CompilerServices.StandardModuleAttribute]
218     public sealed partial class Conversion
219     {
Conversion()220         internal Conversion() { }
CTypeDynamic(object Expression, System.Type TargetType)221         public static object CTypeDynamic(object Expression, System.Type TargetType) { throw null; }
CTypeDynamic(object Expression)222         public static TargetType CTypeDynamic<TargetType>(object Expression) { throw null; }
ErrorToString()223         public static string ErrorToString() { throw null; }
ErrorToString(int ErrorNumber)224         public static string ErrorToString(int ErrorNumber) { throw null; }
Fix(decimal Number)225         public static decimal Fix(decimal Number) { throw null; }
Fix(double Number)226         public static double Fix(double Number) { throw null; }
Fix(short Number)227         public static short Fix(short Number) { throw null; }
Fix(int Number)228         public static int Fix(int Number) { throw null; }
Fix(long Number)229         public static long Fix(long Number) { throw null; }
Fix(object Number)230         public static object Fix(object Number) { throw null; }
Fix(float Number)231         public static float Fix(float Number) { throw null; }
Hex(byte Number)232         public static string Hex(byte Number) { throw null; }
Hex(short Number)233         public static string Hex(short Number) { throw null; }
Hex(int Number)234         public static string Hex(int Number) { throw null; }
Hex(long Number)235         public static string Hex(long Number) { throw null; }
Hex(object Number)236         public static string Hex(object Number) { throw null; }
237         [System.CLSCompliantAttribute(false)]
Hex(sbyte Number)238         public static string Hex(sbyte Number) { throw null; }
239         [System.CLSCompliantAttribute(false)]
Hex(ushort Number)240         public static string Hex(ushort Number) { throw null; }
241         [System.CLSCompliantAttribute(false)]
Hex(uint Number)242         public static string Hex(uint Number) { throw null; }
243         [System.CLSCompliantAttribute(false)]
Hex(ulong Number)244         public static string Hex(ulong Number) { throw null; }
Int(decimal Number)245         public static decimal Int(decimal Number) { throw null; }
Int(double Number)246         public static double Int(double Number) { throw null; }
Int(short Number)247         public static short Int(short Number) { throw null; }
Int(int Number)248         public static int Int(int Number) { throw null; }
Int(long Number)249         public static long Int(long Number) { throw null; }
Int(object Number)250         public static object Int(object Number) { throw null; }
Int(float Number)251         public static float Int(float Number) { throw null; }
Oct(byte Number)252         public static string Oct(byte Number) { throw null; }
Oct(short Number)253         public static string Oct(short Number) { throw null; }
Oct(int Number)254         public static string Oct(int Number) { throw null; }
Oct(long Number)255         public static string Oct(long Number) { throw null; }
Oct(object Number)256         public static string Oct(object Number) { throw null; }
257         [System.CLSCompliantAttribute(false)]
Oct(sbyte Number)258         public static string Oct(sbyte Number) { throw null; }
259         [System.CLSCompliantAttribute(false)]
Oct(ushort Number)260         public static string Oct(ushort Number) { throw null; }
261         [System.CLSCompliantAttribute(false)]
Oct(uint Number)262         public static string Oct(uint Number) { throw null; }
263         [System.CLSCompliantAttribute(false)]
Oct(ulong Number)264         public static string Oct(ulong Number) { throw null; }
Str(object Number)265         public static string Str(object Number) { throw null; }
Val(char Expression)266         public static int Val(char Expression) { throw null; }
Val(object Expression)267         public static double Val(object Expression) { throw null; }
Val(string InputStr)268         public static double Val(string InputStr) { throw null; }
269     }
270     [Microsoft.VisualBasic.CompilerServices.StandardModuleAttribute]
271     public sealed partial class DateAndTime
272     {
DateAndTime()273         internal DateAndTime() { }
274         public static string DateString { get { throw null; } set { } }
275         public static System.DateTime Now { get { throw null; } }
276         public static System.DateTime TimeOfDay { get { throw null; } set { } }
277         public static double Timer { get { throw null; } }
278         public static string TimeString { get { throw null; } set { } }
279         public static System.DateTime Today { get { throw null; } set { } }
DateAdd(Microsoft.VisualBasic.DateInterval Interval, double Number, System.DateTime DateValue)280         public static System.DateTime DateAdd(Microsoft.VisualBasic.DateInterval Interval, double Number, System.DateTime DateValue) { throw null; }
DateAdd(string Interval, double Number, object DateValue)281         public static System.DateTime DateAdd(string Interval, double Number, object DateValue) { throw null; }
DateDiff(Microsoft.VisualBasic.DateInterval Interval, System.DateTime Date1, System.DateTime Date2, Microsoft.VisualBasic.FirstDayOfWeek DayOfWeek=(Microsoft.VisualBasic.FirstDayOfWeek)(1), Microsoft.VisualBasic.FirstWeekOfYear WeekOfYear=(Microsoft.VisualBasic.FirstWeekOfYear)(1))282         public static long DateDiff(Microsoft.VisualBasic.DateInterval Interval, System.DateTime Date1, System.DateTime Date2, Microsoft.VisualBasic.FirstDayOfWeek DayOfWeek=(Microsoft.VisualBasic.FirstDayOfWeek)(1), Microsoft.VisualBasic.FirstWeekOfYear WeekOfYear=(Microsoft.VisualBasic.FirstWeekOfYear)(1)) { throw null; }
DateDiff(string Interval, object Date1, object Date2, Microsoft.VisualBasic.FirstDayOfWeek DayOfWeek=(Microsoft.VisualBasic.FirstDayOfWeek)(1), Microsoft.VisualBasic.FirstWeekOfYear WeekOfYear=(Microsoft.VisualBasic.FirstWeekOfYear)(1))283         public static long DateDiff(string Interval, object Date1, object Date2, Microsoft.VisualBasic.FirstDayOfWeek DayOfWeek=(Microsoft.VisualBasic.FirstDayOfWeek)(1), Microsoft.VisualBasic.FirstWeekOfYear WeekOfYear=(Microsoft.VisualBasic.FirstWeekOfYear)(1)) { throw null; }
DatePart(Microsoft.VisualBasic.DateInterval Interval, System.DateTime DateValue, Microsoft.VisualBasic.FirstDayOfWeek FirstDayOfWeekValue=(Microsoft.VisualBasic.FirstDayOfWeek)(1), Microsoft.VisualBasic.FirstWeekOfYear FirstWeekOfYearValue=(Microsoft.VisualBasic.FirstWeekOfYear)(1))284         public static int DatePart(Microsoft.VisualBasic.DateInterval Interval, System.DateTime DateValue, Microsoft.VisualBasic.FirstDayOfWeek FirstDayOfWeekValue=(Microsoft.VisualBasic.FirstDayOfWeek)(1), Microsoft.VisualBasic.FirstWeekOfYear FirstWeekOfYearValue=(Microsoft.VisualBasic.FirstWeekOfYear)(1)) { throw null; }
DatePart(string Interval, object DateValue, Microsoft.VisualBasic.FirstDayOfWeek DayOfWeek=(Microsoft.VisualBasic.FirstDayOfWeek)(1), Microsoft.VisualBasic.FirstWeekOfYear WeekOfYear=(Microsoft.VisualBasic.FirstWeekOfYear)(1))285         public static int DatePart(string Interval, object DateValue, Microsoft.VisualBasic.FirstDayOfWeek DayOfWeek=(Microsoft.VisualBasic.FirstDayOfWeek)(1), Microsoft.VisualBasic.FirstWeekOfYear WeekOfYear=(Microsoft.VisualBasic.FirstWeekOfYear)(1)) { throw null; }
DateSerial(int Year, int Month, int Day)286         public static System.DateTime DateSerial(int Year, int Month, int Day) { throw null; }
DateValue(string StringDate)287         public static System.DateTime DateValue(string StringDate) { throw null; }
Day(System.DateTime DateValue)288         public static int Day(System.DateTime DateValue) { throw null; }
Hour(System.DateTime TimeValue)289         public static int Hour(System.DateTime TimeValue) { throw null; }
Minute(System.DateTime TimeValue)290         public static int Minute(System.DateTime TimeValue) { throw null; }
Month(System.DateTime DateValue)291         public static int Month(System.DateTime DateValue) { throw null; }
MonthName(int Month, bool Abbreviate=false)292         public static string MonthName(int Month, bool Abbreviate=false) { throw null; }
Second(System.DateTime TimeValue)293         public static int Second(System.DateTime TimeValue) { throw null; }
TimeSerial(int Hour, int Minute, int Second)294         public static System.DateTime TimeSerial(int Hour, int Minute, int Second) { throw null; }
TimeValue(string StringTime)295         public static System.DateTime TimeValue(string StringTime) { throw null; }
Weekday(System.DateTime DateValue, Microsoft.VisualBasic.FirstDayOfWeek DayOfWeek=(Microsoft.VisualBasic.FirstDayOfWeek)(1))296         public static int Weekday(System.DateTime DateValue, Microsoft.VisualBasic.FirstDayOfWeek DayOfWeek=(Microsoft.VisualBasic.FirstDayOfWeek)(1)) { throw null; }
WeekdayName(int Weekday, bool Abbreviate=false, Microsoft.VisualBasic.FirstDayOfWeek FirstDayOfWeekValue=(Microsoft.VisualBasic.FirstDayOfWeek)(0))297         public static string WeekdayName(int Weekday, bool Abbreviate=false, Microsoft.VisualBasic.FirstDayOfWeek FirstDayOfWeekValue=(Microsoft.VisualBasic.FirstDayOfWeek)(0)) { throw null; }
Year(System.DateTime DateValue)298         public static int Year(System.DateTime DateValue) { throw null; }
299     }
300     public enum DateFormat
301     {
302         GeneralDate = 0,
303         LongDate = 1,
304         LongTime = 3,
305         ShortDate = 2,
306         ShortTime = 4,
307     }
308     public enum DateInterval
309     {
310         Day = 4,
311         DayOfYear = 3,
312         Hour = 7,
313         Minute = 8,
314         Month = 2,
315         Quarter = 1,
316         Second = 9,
317         Weekday = 6,
318         WeekOfYear = 5,
319         Year = 0,
320     }
321     public enum DueDate
322     {
323         BegOfPeriod = 1,
324         EndOfPeriod = 0,
325     }
326     public sealed partial class ErrObject
327     {
ErrObject()328         internal ErrObject() { }
329         public string Description { get { throw null; } set { } }
330         public int Erl { get { throw null; } }
331         public int HelpContext { get { throw null; } set { } }
332         public string HelpFile { get { throw null; } set { } }
333         public int LastDllError { get { throw null; } }
334         public int Number { get { throw null; } set { } }
335         public string Source { get { throw null; } set { } }
336         [System.Runtime.ConstrainedExecution.ReliabilityContractAttribute((System.Runtime.ConstrainedExecution.Consistency)(3), (System.Runtime.ConstrainedExecution.Cer)(2))]
Clear()337         public void Clear() { }
GetException()338         public System.Exception GetException() { throw null; }
Raise(int Number, object Source=null, object Description=null, object HelpFile=null, object HelpContext=null)339         public void Raise(int Number, object Source=null, object Description=null, object HelpFile=null, object HelpContext=null) { }
340     }
341     [System.FlagsAttribute]
342     public enum FileAttribute
343     {
344         Archive = 32,
345         Directory = 16,
346         Hidden = 2,
347         Normal = 0,
348         ReadOnly = 1,
349         System = 4,
350         Volume = 8,
351     }
352     [Microsoft.VisualBasic.CompilerServices.StandardModuleAttribute]
353     public sealed partial class FileSystem
354     {
FileSystem()355         internal FileSystem() { }
ChDir(string Path)356         public static void ChDir(string Path) { }
ChDrive(char Drive)357         public static void ChDrive(char Drive) { }
ChDrive(string Drive)358         public static void ChDrive(string Drive) { }
CurDir()359         public static string CurDir() { throw null; }
CurDir(char Drive)360         public static string CurDir(char Drive) { throw null; }
Dir()361         public static string Dir() { throw null; }
Dir(string PathName, Microsoft.VisualBasic.FileAttribute Attributes=(Microsoft.VisualBasic.FileAttribute)(0))362         public static string Dir(string PathName, Microsoft.VisualBasic.FileAttribute Attributes=(Microsoft.VisualBasic.FileAttribute)(0)) { throw null; }
EOF(int FileNumber)363         public static bool EOF(int FileNumber) { throw null; }
FileAttr(int FileNumber)364         public static Microsoft.VisualBasic.OpenMode FileAttr(int FileNumber) { throw null; }
FileClose(params int[] FileNumbers)365         public static void FileClose(params int[] FileNumbers) { }
FileCopy(string Source, string Destination)366         public static void FileCopy(string Source, string Destination) { }
FileDateTime(string PathName)367         public static System.DateTime FileDateTime(string PathName) { throw null; }
FileGet(int FileNumber, ref System.Array Value, long RecordNumber=(long)-1, bool ArrayIsDynamic=false, bool StringIsFixedLength=false)368         public static void FileGet(int FileNumber, ref System.Array Value, long RecordNumber=(long)-1, bool ArrayIsDynamic=false, bool StringIsFixedLength=false) { }
FileGet(int FileNumber, ref bool Value, long RecordNumber=(long)-1)369         public static void FileGet(int FileNumber, ref bool Value, long RecordNumber=(long)-1) { }
FileGet(int FileNumber, ref byte Value, long RecordNumber=(long)-1)370         public static void FileGet(int FileNumber, ref byte Value, long RecordNumber=(long)-1) { }
FileGet(int FileNumber, ref char Value, long RecordNumber=(long)-1)371         public static void FileGet(int FileNumber, ref char Value, long RecordNumber=(long)-1) { }
FileGet(int FileNumber, ref System.DateTime Value, long RecordNumber=(long)-1)372         public static void FileGet(int FileNumber, ref System.DateTime Value, long RecordNumber=(long)-1) { }
FileGet(int FileNumber, ref decimal Value, long RecordNumber=(long)-1)373         public static void FileGet(int FileNumber, ref decimal Value, long RecordNumber=(long)-1) { }
FileGet(int FileNumber, ref double Value, long RecordNumber=(long)-1)374         public static void FileGet(int FileNumber, ref double Value, long RecordNumber=(long)-1) { }
FileGet(int FileNumber, ref short Value, long RecordNumber=(long)-1)375         public static void FileGet(int FileNumber, ref short Value, long RecordNumber=(long)-1) { }
FileGet(int FileNumber, ref int Value, long RecordNumber=(long)-1)376         public static void FileGet(int FileNumber, ref int Value, long RecordNumber=(long)-1) { }
FileGet(int FileNumber, ref long Value, long RecordNumber=(long)-1)377         public static void FileGet(int FileNumber, ref long Value, long RecordNumber=(long)-1) { }
FileGet(int FileNumber, ref float Value, long RecordNumber=(long)-1)378         public static void FileGet(int FileNumber, ref float Value, long RecordNumber=(long)-1) { }
FileGet(int FileNumber, ref string Value, long RecordNumber=(long)-1, bool StringIsFixedLength=false)379         public static void FileGet(int FileNumber, ref string Value, long RecordNumber=(long)-1, bool StringIsFixedLength=false) { }
FileGet(int FileNumber, ref System.ValueType Value, long RecordNumber=(long)-1)380         public static void FileGet(int FileNumber, ref System.ValueType Value, long RecordNumber=(long)-1) { }
FileGetObject(int FileNumber, ref object Value, long RecordNumber=(long)-1)381         public static void FileGetObject(int FileNumber, ref object Value, long RecordNumber=(long)-1) { }
FileLen(string PathName)382         public static long FileLen(string PathName) { throw null; }
FileOpen(int FileNumber, string FileName, Microsoft.VisualBasic.OpenMode Mode, Microsoft.VisualBasic.OpenAccess Access=(Microsoft.VisualBasic.OpenAccess)(-1), Microsoft.VisualBasic.OpenShare Share=(Microsoft.VisualBasic.OpenShare)(-1), int RecordLength=-1)383         public static void FileOpen(int FileNumber, string FileName, Microsoft.VisualBasic.OpenMode Mode, Microsoft.VisualBasic.OpenAccess Access=(Microsoft.VisualBasic.OpenAccess)(-1), Microsoft.VisualBasic.OpenShare Share=(Microsoft.VisualBasic.OpenShare)(-1), int RecordLength=-1) { }
FilePut(int FileNumber, System.Array Value, long RecordNumber=(long)-1, bool ArrayIsDynamic=false, bool StringIsFixedLength=false)384         public static void FilePut(int FileNumber, System.Array Value, long RecordNumber=(long)-1, bool ArrayIsDynamic=false, bool StringIsFixedLength=false) { }
FilePut(int FileNumber, bool Value, long RecordNumber=(long)-1)385         public static void FilePut(int FileNumber, bool Value, long RecordNumber=(long)-1) { }
FilePut(int FileNumber, byte Value, long RecordNumber=(long)-1)386         public static void FilePut(int FileNumber, byte Value, long RecordNumber=(long)-1) { }
FilePut(int FileNumber, char Value, long RecordNumber=(long)-1)387         public static void FilePut(int FileNumber, char Value, long RecordNumber=(long)-1) { }
FilePut(int FileNumber, System.DateTime Value, long RecordNumber=(long)-1)388         public static void FilePut(int FileNumber, System.DateTime Value, long RecordNumber=(long)-1) { }
FilePut(int FileNumber, decimal Value, long RecordNumber=(long)-1)389         public static void FilePut(int FileNumber, decimal Value, long RecordNumber=(long)-1) { }
FilePut(int FileNumber, double Value, long RecordNumber=(long)-1)390         public static void FilePut(int FileNumber, double Value, long RecordNumber=(long)-1) { }
FilePut(int FileNumber, short Value, long RecordNumber=(long)-1)391         public static void FilePut(int FileNumber, short Value, long RecordNumber=(long)-1) { }
FilePut(int FileNumber, int Value, long RecordNumber=(long)-1)392         public static void FilePut(int FileNumber, int Value, long RecordNumber=(long)-1) { }
FilePut(int FileNumber, long Value, long RecordNumber=(long)-1)393         public static void FilePut(int FileNumber, long Value, long RecordNumber=(long)-1) { }
FilePut(int FileNumber, float Value, long RecordNumber=(long)-1)394         public static void FilePut(int FileNumber, float Value, long RecordNumber=(long)-1) { }
FilePut(int FileNumber, string Value, long RecordNumber=(long)-1, bool StringIsFixedLength=false)395         public static void FilePut(int FileNumber, string Value, long RecordNumber=(long)-1, bool StringIsFixedLength=false) { }
FilePut(int FileNumber, System.ValueType Value, long RecordNumber=(long)-1)396         public static void FilePut(int FileNumber, System.ValueType Value, long RecordNumber=(long)-1) { }
397         [System.ObsoleteAttribute("This member has been deprectated. Try FilePutObject.")]
FilePut(object FileNumber, object Value, object RecordNumber=null)398         public static void FilePut(object FileNumber, object Value, object RecordNumber=null) { }
FilePutObject(int FileNumber, object Value, long RecordNumber=(long)-1)399         public static void FilePutObject(int FileNumber, object Value, long RecordNumber=(long)-1) { }
FileWidth(int FileNumber, int RecordWidth)400         public static void FileWidth(int FileNumber, int RecordWidth) { }
FreeFile()401         public static int FreeFile() { throw null; }
GetAttr(string PathName)402         public static Microsoft.VisualBasic.FileAttribute GetAttr(string PathName) { throw null; }
Input(int FileNumber, ref bool Value)403         public static void Input(int FileNumber, ref bool Value) { }
Input(int FileNumber, ref byte Value)404         public static void Input(int FileNumber, ref byte Value) { }
Input(int FileNumber, ref char Value)405         public static void Input(int FileNumber, ref char Value) { }
Input(int FileNumber, ref System.DateTime Value)406         public static void Input(int FileNumber, ref System.DateTime Value) { }
Input(int FileNumber, ref decimal Value)407         public static void Input(int FileNumber, ref decimal Value) { }
Input(int FileNumber, ref double Value)408         public static void Input(int FileNumber, ref double Value) { }
Input(int FileNumber, ref short Value)409         public static void Input(int FileNumber, ref short Value) { }
Input(int FileNumber, ref int Value)410         public static void Input(int FileNumber, ref int Value) { }
Input(int FileNumber, ref long Value)411         public static void Input(int FileNumber, ref long Value) { }
Input(int FileNumber, ref object Value)412         public static void Input(int FileNumber, ref object Value) { }
Input(int FileNumber, ref float Value)413         public static void Input(int FileNumber, ref float Value) { }
Input(int FileNumber, ref string Value)414         public static void Input(int FileNumber, ref string Value) { }
InputString(int FileNumber, int CharCount)415         public static string InputString(int FileNumber, int CharCount) { throw null; }
Kill(string PathName)416         public static void Kill(string PathName) { }
LineInput(int FileNumber)417         public static string LineInput(int FileNumber) { throw null; }
Loc(int FileNumber)418         public static long Loc(int FileNumber) { throw null; }
Lock(int FileNumber)419         public static void Lock(int FileNumber) { }
Lock(int FileNumber, long Record)420         public static void Lock(int FileNumber, long Record) { }
Lock(int FileNumber, long FromRecord, long ToRecord)421         public static void Lock(int FileNumber, long FromRecord, long ToRecord) { }
LOF(int FileNumber)422         public static long LOF(int FileNumber) { throw null; }
MkDir(string Path)423         public static void MkDir(string Path) { }
Print(int FileNumber, params object[] Output)424         public static void Print(int FileNumber, params object[] Output) { }
PrintLine(int FileNumber, params object[] Output)425         public static void PrintLine(int FileNumber, params object[] Output) { }
Rename(string OldPath, string NewPath)426         public static void Rename(string OldPath, string NewPath) { }
Reset()427         public static void Reset() { }
RmDir(string Path)428         public static void RmDir(string Path) { }
Seek(int FileNumber)429         public static long Seek(int FileNumber) { throw null; }
Seek(int FileNumber, long Position)430         public static void Seek(int FileNumber, long Position) { }
SetAttr(string PathName, Microsoft.VisualBasic.FileAttribute Attributes)431         public static void SetAttr(string PathName, Microsoft.VisualBasic.FileAttribute Attributes) { }
SPC(short Count)432         public static Microsoft.VisualBasic.SpcInfo SPC(short Count) { throw null; }
TAB()433         public static Microsoft.VisualBasic.TabInfo TAB() { throw null; }
TAB(short Column)434         public static Microsoft.VisualBasic.TabInfo TAB(short Column) { throw null; }
Unlock(int FileNumber)435         public static void Unlock(int FileNumber) { }
Unlock(int FileNumber, long Record)436         public static void Unlock(int FileNumber, long Record) { }
Unlock(int FileNumber, long FromRecord, long ToRecord)437         public static void Unlock(int FileNumber, long FromRecord, long ToRecord) { }
Write(int FileNumber, params object[] Output)438         public static void Write(int FileNumber, params object[] Output) { }
WriteLine(int FileNumber, params object[] Output)439         public static void WriteLine(int FileNumber, params object[] Output) { }
440     }
441     [Microsoft.VisualBasic.CompilerServices.StandardModuleAttribute]
442     public sealed partial class Financial
443     {
Financial()444         internal Financial() { }
DDB(double Cost, double Salvage, double Life, double Period, double Factor=2)445         public static double DDB(double Cost, double Salvage, double Life, double Period, double Factor=2) { throw null; }
FV(double Rate, double NPer, double Pmt, double PV=0, Microsoft.VisualBasic.DueDate Due=(Microsoft.VisualBasic.DueDate)(0))446         public static double FV(double Rate, double NPer, double Pmt, double PV=0, Microsoft.VisualBasic.DueDate Due=(Microsoft.VisualBasic.DueDate)(0)) { throw null; }
IPmt(double Rate, double Per, double NPer, double PV, double FV=0, Microsoft.VisualBasic.DueDate Due=(Microsoft.VisualBasic.DueDate)(0))447         public static double IPmt(double Rate, double Per, double NPer, double PV, double FV=0, Microsoft.VisualBasic.DueDate Due=(Microsoft.VisualBasic.DueDate)(0)) { throw null; }
IRR(ref double[] ValueArray, double Guess=0.1)448         public static double IRR(ref double[] ValueArray, double Guess=0.1) { throw null; }
MIRR(ref double[] ValueArray, double FinanceRate, double ReinvestRate)449         public static double MIRR(ref double[] ValueArray, double FinanceRate, double ReinvestRate) { throw null; }
NPer(double Rate, double Pmt, double PV, double FV=0, Microsoft.VisualBasic.DueDate Due=(Microsoft.VisualBasic.DueDate)(0))450         public static double NPer(double Rate, double Pmt, double PV, double FV=0, Microsoft.VisualBasic.DueDate Due=(Microsoft.VisualBasic.DueDate)(0)) { throw null; }
NPV(double Rate, ref double[] ValueArray)451         public static double NPV(double Rate, ref double[] ValueArray) { throw null; }
Pmt(double Rate, double NPer, double PV, double FV=0, Microsoft.VisualBasic.DueDate Due=(Microsoft.VisualBasic.DueDate)(0))452         public static double Pmt(double Rate, double NPer, double PV, double FV=0, Microsoft.VisualBasic.DueDate Due=(Microsoft.VisualBasic.DueDate)(0)) { throw null; }
PPmt(double Rate, double Per, double NPer, double PV, double FV=0, Microsoft.VisualBasic.DueDate Due=(Microsoft.VisualBasic.DueDate)(0))453         public static double PPmt(double Rate, double Per, double NPer, double PV, double FV=0, Microsoft.VisualBasic.DueDate Due=(Microsoft.VisualBasic.DueDate)(0)) { throw null; }
PV(double Rate, double NPer, double Pmt, double FV=0, Microsoft.VisualBasic.DueDate Due=(Microsoft.VisualBasic.DueDate)(0))454         public static double PV(double Rate, double NPer, double Pmt, double FV=0, Microsoft.VisualBasic.DueDate Due=(Microsoft.VisualBasic.DueDate)(0)) { throw null; }
Rate(double NPer, double Pmt, double PV, double FV=0, Microsoft.VisualBasic.DueDate Due=(Microsoft.VisualBasic.DueDate)(0), double Guess=0.1)455         public static double Rate(double NPer, double Pmt, double PV, double FV=0, Microsoft.VisualBasic.DueDate Due=(Microsoft.VisualBasic.DueDate)(0), double Guess=0.1) { throw null; }
SLN(double Cost, double Salvage, double Life)456         public static double SLN(double Cost, double Salvage, double Life) { throw null; }
SYD(double Cost, double Salvage, double Life, double Period)457         public static double SYD(double Cost, double Salvage, double Life, double Period) { throw null; }
458     }
459     public enum FirstDayOfWeek
460     {
461         Friday = 6,
462         Monday = 2,
463         Saturday = 7,
464         Sunday = 1,
465         System = 0,
466         Thursday = 5,
467         Tuesday = 3,
468         Wednesday = 4,
469     }
470     public enum FirstWeekOfYear
471     {
472         FirstFourDays = 2,
473         FirstFullWeek = 3,
474         Jan1 = 1,
475         System = 0,
476     }
477     [Microsoft.VisualBasic.CompilerServices.StandardModuleAttribute]
478     public sealed partial class Globals
479     {
Globals()480         internal Globals() { }
481         public static string ScriptEngine { get { throw null; } }
482         public static int ScriptEngineBuildVersion { get { throw null; } }
483         public static int ScriptEngineMajorVersion { get { throw null; } }
484         public static int ScriptEngineMinorVersion { get { throw null; } }
485     }
486     [System.AttributeUsageAttribute((System.AttributeTargets)(4), AllowMultiple=false, Inherited=false)]
487     public sealed partial class HideModuleNameAttribute : System.Attribute
488     {
HideModuleNameAttribute()489         public HideModuleNameAttribute() { }
490     }
491     [Microsoft.VisualBasic.CompilerServices.StandardModuleAttribute]
492     public sealed partial class Information
493     {
Information()494         internal Information() { }
495         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
Erl()496         public static int Erl() { throw null; }
Err()497         public static Microsoft.VisualBasic.ErrObject Err() { throw null; }
IsArray(object VarName)498         public static bool IsArray(object VarName) { throw null; }
IsDate(object Expression)499         public static bool IsDate(object Expression) { throw null; }
IsDBNull(object Expression)500         public static bool IsDBNull(object Expression) { throw null; }
IsError(object Expression)501         public static bool IsError(object Expression) { throw null; }
IsNothing(object Expression)502         public static bool IsNothing(object Expression) { throw null; }
IsNumeric(object Expression)503         public static bool IsNumeric(object Expression) { throw null; }
IsReference(object Expression)504         public static bool IsReference(object Expression) { throw null; }
LBound(System.Array Array, int Rank=1)505         public static int LBound(System.Array Array, int Rank=1) { throw null; }
QBColor(int Color)506         public static int QBColor(int Color) { throw null; }
RGB(int Red, int Green, int Blue)507         public static int RGB(int Red, int Green, int Blue) { throw null; }
SystemTypeName(string VbName)508         public static string SystemTypeName(string VbName) { throw null; }
TypeName(object VarName)509         public static string TypeName(object VarName) { throw null; }
UBound(System.Array Array, int Rank=1)510         public static int UBound(System.Array Array, int Rank=1) { throw null; }
VarType(object VarName)511         public static Microsoft.VisualBasic.VariantType VarType(object VarName) { throw null; }
VbTypeName(string UrtName)512         public static string VbTypeName(string UrtName) { throw null; }
513     }
514     [Microsoft.VisualBasic.CompilerServices.StandardModuleAttribute]
515     public sealed partial class Interaction
516     {
Interaction()517         internal Interaction() { }
AppActivate(int ProcessId)518         public static void AppActivate(int ProcessId) { }
AppActivate(string Title)519         public static void AppActivate(string Title) { }
Beep()520         public static void Beep() { }
CallByName(object ObjectRef, string ProcName, Microsoft.VisualBasic.CallType UseCallType, params object[] Args)521         public static object CallByName(object ObjectRef, string ProcName, Microsoft.VisualBasic.CallType UseCallType, params object[] Args) { throw null; }
Choose(double Index, params object[] Choice)522         public static object Choose(double Index, params object[] Choice) { throw null; }
Command()523         public static string Command() { throw null; }
CreateObject(string ProgId, string ServerName=R)524         public static object CreateObject(string ProgId, string ServerName="") { throw null; }
DeleteSetting(string AppName, string Section=null, string Key=null)525         public static void DeleteSetting(string AppName, string Section=null, string Key=null) { }
Environ(int Expression)526         public static string Environ(int Expression) { throw null; }
Environ(string Expression)527         public static string Environ(string Expression) { throw null; }
528         [System.MonoLimitationAttribute("If this function is used the assembly have to be recompiled when you switch platforms.")]
GetAllSettings(string AppName, string Section)529         public static string[,] GetAllSettings(string AppName, string Section) { throw null; }
GetObject(string PathName=null, string Class=null)530         public static object GetObject(string PathName=null, string Class=null) { throw null; }
GetSetting(string AppName, string Section, string Key, string Default=R)531         public static string GetSetting(string AppName, string Section, string Key, string Default="") { throw null; }
IIf(bool Expression, object TruePart, object FalsePart)532         public static object IIf(bool Expression, object TruePart, object FalsePart) { throw null; }
InputBox(string Prompt, string Title=R, string DefaultResponse=R, int XPos=-1, int YPos=-1)533         public static string InputBox(string Prompt, string Title="", string DefaultResponse="", int XPos=-1, int YPos=-1) { throw null; }
MsgBox(object Prompt, Microsoft.VisualBasic.MsgBoxStyle Buttons=(Microsoft.VisualBasic.MsgBoxStyle)(0), object Title=null)534         public static Microsoft.VisualBasic.MsgBoxResult MsgBox(object Prompt, Microsoft.VisualBasic.MsgBoxStyle Buttons=(Microsoft.VisualBasic.MsgBoxStyle)(0), object Title=null) { throw null; }
Partition(long Number, long Start, long Stop, long Interval)535         public static string Partition(long Number, long Start, long Stop, long Interval) { throw null; }
SaveSetting(string AppName, string Section, string Key, string Setting)536         public static void SaveSetting(string AppName, string Section, string Key, string Setting) { }
Shell(string PathName, Microsoft.VisualBasic.AppWinStyle Style=(Microsoft.VisualBasic.AppWinStyle)(2), bool Wait=false, int Timeout=-1)537         public static int Shell(string PathName, Microsoft.VisualBasic.AppWinStyle Style=(Microsoft.VisualBasic.AppWinStyle)(2), bool Wait=false, int Timeout=-1) { throw null; }
Switch(params object[] VarExpr)538         public static object Switch(params object[] VarExpr) { throw null; }
539     }
540     public enum MsgBoxResult
541     {
542         Abort = 3,
543         Cancel = 2,
544         Ignore = 5,
545         No = 7,
546         Ok = 1,
547         Retry = 4,
548         Yes = 6,
549     }
550     [System.FlagsAttribute]
551     public enum MsgBoxStyle
552     {
553         AbortRetryIgnore = 2,
554         ApplicationModal = 0,
555         Critical = 16,
556         DefaultButton1 = 0,
557         DefaultButton2 = 256,
558         DefaultButton3 = 512,
559         Exclamation = 48,
560         Information = 64,
561         MsgBoxHelp = 16384,
562         MsgBoxRight = 524288,
563         MsgBoxRtlReading = 1048576,
564         MsgBoxSetForeground = 65536,
565         OkCancel = 1,
566         OkOnly = 0,
567         Question = 32,
568         RetryCancel = 5,
569         SystemModal = 4096,
570         YesNo = 4,
571         YesNoCancel = 3,
572     }
573     [System.AttributeUsageAttribute((System.AttributeTargets)(4), AllowMultiple=false, Inherited=false)]
574     [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(2))]
575     public sealed partial class MyGroupCollectionAttribute : System.Attribute
576     {
MyGroupCollectionAttribute(string typeToCollect, string createInstanceMethodName, string disposeInstanceMethodName, string defaultInstanceAlias)577         public MyGroupCollectionAttribute(string typeToCollect, string createInstanceMethodName, string disposeInstanceMethodName, string defaultInstanceAlias) { }
578         public string CreateMethod { get { throw null; } }
579         public string DefaultInstanceAlias { get { throw null; } }
580         public string DisposeMethod { get { throw null; } }
581         public string MyGroupName { get { throw null; } }
582     }
583     public enum OpenAccess
584     {
585         Default = -1,
586         Read = 1,
587         ReadWrite = 3,
588         Write = 2,
589     }
590     public enum OpenMode
591     {
592         Append = 8,
593         Binary = 32,
594         Input = 1,
595         Output = 2,
596         Random = 4,
597     }
598     public enum OpenShare
599     {
600         Default = -1,
601         LockRead = 2,
602         LockReadWrite = 0,
603         LockWrite = 1,
604         Shared = 3,
605     }
606     [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
607     [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)]
608     public partial struct SpcInfo
609     {
610         public short Count;
611     }
612     [Microsoft.VisualBasic.CompilerServices.StandardModuleAttribute]
613     public sealed partial class Strings
614     {
Strings()615         internal Strings() { }
Asc(char String)616         public static int Asc(char String) { throw null; }
Asc(string String)617         public static int Asc(string String) { throw null; }
AscW(char String)618         public static int AscW(char String) { throw null; }
AscW(string String)619         public static int AscW(string String) { throw null; }
Chr(int CharCode)620         public static char Chr(int CharCode) { throw null; }
ChrW(int CharCode)621         public static char ChrW(int CharCode) { throw null; }
Filter(object[] Source, string Match, bool Include=true, [Microsoft.VisualBasic.CompilerServices.OptionCompareAttribute]Microsoft.VisualBasic.CompareMethod Compare=(Microsoft.VisualBasic.CompareMethod)(0))622         public static string[] Filter(object[] Source, string Match, bool Include=true, [Microsoft.VisualBasic.CompilerServices.OptionCompareAttribute]Microsoft.VisualBasic.CompareMethod Compare=(Microsoft.VisualBasic.CompareMethod)(0)) { throw null; }
Filter(string[] Source, string Match, bool Include=true, [Microsoft.VisualBasic.CompilerServices.OptionCompareAttribute]Microsoft.VisualBasic.CompareMethod Compare=(Microsoft.VisualBasic.CompareMethod)(0))623         public static string[] Filter(string[] Source, string Match, bool Include=true, [Microsoft.VisualBasic.CompilerServices.OptionCompareAttribute]Microsoft.VisualBasic.CompareMethod Compare=(Microsoft.VisualBasic.CompareMethod)(0)) { throw null; }
Format(object Expression, string Style=R)624         public static string Format(object Expression, string Style="") { throw null; }
FormatCurrency(object Expression, int NumDigitsAfterDecimal=-1, Microsoft.VisualBasic.TriState IncludeLeadingDigit=(Microsoft.VisualBasic.TriState)(-2), Microsoft.VisualBasic.TriState UseParensForNegativeNumbers=(Microsoft.VisualBasic.TriState)(-2), Microsoft.VisualBasic.TriState GroupDigits=(Microsoft.VisualBasic.TriState)(-2))625         public static string FormatCurrency(object Expression, int NumDigitsAfterDecimal=-1, Microsoft.VisualBasic.TriState IncludeLeadingDigit=(Microsoft.VisualBasic.TriState)(-2), Microsoft.VisualBasic.TriState UseParensForNegativeNumbers=(Microsoft.VisualBasic.TriState)(-2), Microsoft.VisualBasic.TriState GroupDigits=(Microsoft.VisualBasic.TriState)(-2)) { throw null; }
FormatDateTime(System.DateTime Expression, Microsoft.VisualBasic.DateFormat NamedFormat=(Microsoft.VisualBasic.DateFormat)(0))626         public static string FormatDateTime(System.DateTime Expression, Microsoft.VisualBasic.DateFormat NamedFormat=(Microsoft.VisualBasic.DateFormat)(0)) { throw null; }
FormatNumber(object Expression, int NumDigitsAfterDecimal=-1, Microsoft.VisualBasic.TriState IncludeLeadingDigit=(Microsoft.VisualBasic.TriState)(-2), Microsoft.VisualBasic.TriState UseParensForNegativeNumbers=(Microsoft.VisualBasic.TriState)(-2), Microsoft.VisualBasic.TriState GroupDigits=(Microsoft.VisualBasic.TriState)(-2))627         public static string FormatNumber(object Expression, int NumDigitsAfterDecimal=-1, Microsoft.VisualBasic.TriState IncludeLeadingDigit=(Microsoft.VisualBasic.TriState)(-2), Microsoft.VisualBasic.TriState UseParensForNegativeNumbers=(Microsoft.VisualBasic.TriState)(-2), Microsoft.VisualBasic.TriState GroupDigits=(Microsoft.VisualBasic.TriState)(-2)) { throw null; }
FormatPercent(object Expression, int NumDigitsAfterDecimal=-1, Microsoft.VisualBasic.TriState IncludeLeadingDigit=(Microsoft.VisualBasic.TriState)(-2), Microsoft.VisualBasic.TriState UseParensForNegativeNumbers=(Microsoft.VisualBasic.TriState)(-2), Microsoft.VisualBasic.TriState GroupDigits=(Microsoft.VisualBasic.TriState)(-2))628         public static string FormatPercent(object Expression, int NumDigitsAfterDecimal=-1, Microsoft.VisualBasic.TriState IncludeLeadingDigit=(Microsoft.VisualBasic.TriState)(-2), Microsoft.VisualBasic.TriState UseParensForNegativeNumbers=(Microsoft.VisualBasic.TriState)(-2), Microsoft.VisualBasic.TriState GroupDigits=(Microsoft.VisualBasic.TriState)(-2)) { throw null; }
GetChar(string str, int Index)629         public static char GetChar(string str, int Index) { throw null; }
InStr(int Start, string String1, string String2, [Microsoft.VisualBasic.CompilerServices.OptionCompareAttribute]Microsoft.VisualBasic.CompareMethod Compare=(Microsoft.VisualBasic.CompareMethod)(0))630         public static int InStr(int Start, string String1, string String2, [Microsoft.VisualBasic.CompilerServices.OptionCompareAttribute]Microsoft.VisualBasic.CompareMethod Compare=(Microsoft.VisualBasic.CompareMethod)(0)) { throw null; }
InStr(string String1, string String2, [Microsoft.VisualBasic.CompilerServices.OptionCompareAttribute]Microsoft.VisualBasic.CompareMethod Compare=(Microsoft.VisualBasic.CompareMethod)(0))631         public static int InStr(string String1, string String2, [Microsoft.VisualBasic.CompilerServices.OptionCompareAttribute]Microsoft.VisualBasic.CompareMethod Compare=(Microsoft.VisualBasic.CompareMethod)(0)) { throw null; }
InStrRev(string StringCheck, string StringMatch, int Start=-1, [Microsoft.VisualBasic.CompilerServices.OptionCompareAttribute]Microsoft.VisualBasic.CompareMethod Compare=(Microsoft.VisualBasic.CompareMethod)(0))632         public static int InStrRev(string StringCheck, string StringMatch, int Start=-1, [Microsoft.VisualBasic.CompilerServices.OptionCompareAttribute]Microsoft.VisualBasic.CompareMethod Compare=(Microsoft.VisualBasic.CompareMethod)(0)) { throw null; }
Join(object[] SourceArray, string Delimiter=R)633         public static string Join(object[] SourceArray, string Delimiter=" ") { throw null; }
Join(string[] SourceArray, string Delimiter=R)634         public static string Join(string[] SourceArray, string Delimiter=" ") { throw null; }
LCase(char Value)635         public static char LCase(char Value) { throw null; }
LCase(string Value)636         public static string LCase(string Value) { throw null; }
Left(string str, int Length)637         public static string Left(string str, int Length) { throw null; }
Len(bool Expression)638         public static int Len(bool Expression) { throw null; }
Len(byte Expression)639         public static int Len(byte Expression) { throw null; }
Len(char Expression)640         public static int Len(char Expression) { throw null; }
Len(System.DateTime Expression)641         public static int Len(System.DateTime Expression) { throw null; }
Len(decimal Expression)642         public static int Len(decimal Expression) { throw null; }
Len(double Expression)643         public static int Len(double Expression) { throw null; }
Len(short Expression)644         public static int Len(short Expression) { throw null; }
Len(int Expression)645         public static int Len(int Expression) { throw null; }
Len(long Expression)646         public static int Len(long Expression) { throw null; }
Len(object Expression)647         public static int Len(object Expression) { throw null; }
648         [System.CLSCompliantAttribute(false)]
Len(sbyte Expression)649         public static int Len(sbyte Expression) { throw null; }
Len(float Expression)650         public static int Len(float Expression) { throw null; }
Len(string Expression)651         public static int Len(string Expression) { throw null; }
652         [System.CLSCompliantAttribute(false)]
Len(ushort Expression)653         public static int Len(ushort Expression) { throw null; }
654         [System.CLSCompliantAttribute(false)]
Len(uint Expression)655         public static int Len(uint Expression) { throw null; }
656         [System.CLSCompliantAttribute(false)]
Len(ulong Expression)657         public static int Len(ulong Expression) { throw null; }
LSet(string Source, int Length)658         public static string LSet(string Source, int Length) { throw null; }
LTrim(string str)659         public static string LTrim(string str) { throw null; }
Mid(string str, int Start)660         public static string Mid(string str, int Start) { throw null; }
Mid(string str, int Start, int Length)661         public static string Mid(string str, int Start, int Length) { throw null; }
Replace(string Expression, string Find, string Replacement, int Start=1, int Count=-1, [Microsoft.VisualBasic.CompilerServices.OptionCompareAttribute]Microsoft.VisualBasic.CompareMethod Compare=(Microsoft.VisualBasic.CompareMethod)(0))662         public static string Replace(string Expression, string Find, string Replacement, int Start=1, int Count=-1, [Microsoft.VisualBasic.CompilerServices.OptionCompareAttribute]Microsoft.VisualBasic.CompareMethod Compare=(Microsoft.VisualBasic.CompareMethod)(0)) { throw null; }
Right(string str, int Length)663         public static string Right(string str, int Length) { throw null; }
RSet(string Source, int Length)664         public static string RSet(string Source, int Length) { throw null; }
RTrim(string str)665         public static string RTrim(string str) { throw null; }
Space(int Number)666         public static string Space(int Number) { throw null; }
Split(string Expression, string Delimiter=R, int Limit=-1, [Microsoft.VisualBasic.CompilerServices.OptionCompareAttribute]Microsoft.VisualBasic.CompareMethod Compare=(Microsoft.VisualBasic.CompareMethod)(0))667         public static string[] Split(string Expression, string Delimiter=" ", int Limit=-1, [Microsoft.VisualBasic.CompilerServices.OptionCompareAttribute]Microsoft.VisualBasic.CompareMethod Compare=(Microsoft.VisualBasic.CompareMethod)(0)) { throw null; }
StrComp(string String1, string String2, [Microsoft.VisualBasic.CompilerServices.OptionCompareAttribute]Microsoft.VisualBasic.CompareMethod Compare=(Microsoft.VisualBasic.CompareMethod)(0))668         public static int StrComp(string String1, string String2, [Microsoft.VisualBasic.CompilerServices.OptionCompareAttribute]Microsoft.VisualBasic.CompareMethod Compare=(Microsoft.VisualBasic.CompareMethod)(0)) { throw null; }
StrConv(string str, Microsoft.VisualBasic.VbStrConv Conversion, int LocaleID=0)669         public static string StrConv(string str, Microsoft.VisualBasic.VbStrConv Conversion, int LocaleID=0) { throw null; }
StrDup(int Number, char Character)670         public static string StrDup(int Number, char Character) { throw null; }
StrDup(int Number, object Character)671         public static object StrDup(int Number, object Character) { throw null; }
StrDup(int Number, string Character)672         public static string StrDup(int Number, string Character) { throw null; }
StrReverse(string Expression)673         public static string StrReverse(string Expression) { throw null; }
Trim(string str)674         public static string Trim(string str) { throw null; }
UCase(char Value)675         public static char UCase(char Value) { throw null; }
UCase(string Value)676         public static string UCase(string Value) { throw null; }
677     }
678     [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
679     [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)]
680     public partial struct TabInfo
681     {
682         public short Column;
683     }
684     public enum TriState
685     {
686         False = 0,
687         True = -1,
688         UseDefault = -2,
689     }
690     public enum VariantType
691     {
692         Array = 8192,
693         Boolean = 11,
694         Byte = 17,
695         Char = 18,
696         Currency = 6,
697         DataObject = 13,
698         Date = 7,
699         Decimal = 14,
700         Double = 5,
701         Empty = 0,
702         Error = 10,
703         Integer = 3,
704         Long = 20,
705         Null = 1,
706         Object = 9,
707         Short = 2,
708         Single = 4,
709         String = 8,
710         UserDefinedType = 36,
711         Variant = 12,
712     }
713     [System.AttributeUsageAttribute((System.AttributeTargets)(256), Inherited=false, AllowMultiple=false)]
714     public sealed partial class VBFixedArrayAttribute : System.Attribute
715     {
VBFixedArrayAttribute(int UpperBound1)716         public VBFixedArrayAttribute(int UpperBound1) { }
VBFixedArrayAttribute(int UpperBound1, int UpperBound2)717         public VBFixedArrayAttribute(int UpperBound1, int UpperBound2) { }
718         public int[] Bounds { get { throw null; } }
719         public int Length { get { throw null; } }
720     }
721     [System.AttributeUsageAttribute((System.AttributeTargets)(256), Inherited=false, AllowMultiple=false)]
722     public sealed partial class VBFixedStringAttribute : System.Attribute
723     {
VBFixedStringAttribute(int Length)724         public VBFixedStringAttribute(int Length) { }
725         public int Length { get { throw null; } }
726     }
727     [Microsoft.VisualBasic.CompilerServices.StandardModuleAttribute]
728     public sealed partial class VBMath
729     {
VBMath()730         internal VBMath() { }
Randomize()731         public static void Randomize() { }
Randomize(double Number)732         public static void Randomize(double Number) { }
Rnd()733         public static float Rnd() { throw null; }
Rnd(float Number)734         public static float Rnd(float Number) { throw null; }
735     }
736     [System.FlagsAttribute]
737     public enum VbStrConv
738     {
739         Hiragana = 32,
740         Katakana = 16,
741         LinguisticCasing = 1024,
742         Lowercase = 2,
743         Narrow = 8,
744         None = 0,
745         ProperCase = 3,
746         SimplifiedChinese = 256,
747         TraditionalChinese = 512,
748         Uppercase = 1,
749         Wide = 4,
750     }
751 }
752 namespace Microsoft.VisualBasic.ApplicationServices
753 {
754     public partial class ApplicationBase
755     {
ApplicationBase()756         public ApplicationBase() { }
757         public System.Globalization.CultureInfo Culture { get { throw null; } }
758         public Microsoft.VisualBasic.ApplicationServices.AssemblyInfo Info { get { throw null; } }
759         public Microsoft.VisualBasic.Logging.Log Log { get { throw null; } }
760         public System.Globalization.CultureInfo UICulture { get { throw null; } }
ChangeCulture(string cultureName)761         public void ChangeCulture(string cultureName) { }
ChangeUICulture(string cultureName)762         public void ChangeUICulture(string cultureName) { }
GetEnvironmentVariable(string name)763         public string GetEnvironmentVariable(string name) { throw null; }
764     }
765     public partial class AssemblyInfo
766     {
AssemblyInfo(System.Reflection.Assembly currentAssembly)767         public AssemblyInfo(System.Reflection.Assembly currentAssembly) { }
768         public string AssemblyName { get { throw null; } }
769         public string CompanyName { get { throw null; } }
770         public string Copyright { get { throw null; } }
771         public string Description { get { throw null; } }
772         public string DirectoryPath { get { throw null; } }
773         public System.Collections.ObjectModel.ReadOnlyCollection<System.Reflection.Assembly> LoadedAssemblies { get { throw null; } }
774         public string ProductName { get { throw null; } }
775         public string StackTrace { get { throw null; } }
776         public string Title { get { throw null; } }
777         public string Trademark { get { throw null; } }
778         public System.Version Version { get { throw null; } }
779         public long WorkingSet { get { throw null; } }
780     }
781     public enum AuthenticationMode
782     {
783         ApplicationDefined = 1,
784         Windows = 0,
785     }
786     [System.ComponentModel.TypeConverterAttribute(typeof(Microsoft.VisualBasic.ApplicationServices.BuiltInRoleConverter))]
787     public enum BuiltInRole
788     {
789         AccountOperator = 548,
790         Administrator = 544,
791         BackupOperator = 551,
792         Guest = 546,
793         PowerUser = 547,
794         PrintOperator = 550,
795         Replicator = 552,
796         SystemOperator = 549,
797         User = 545,
798     }
799     public partial class BuiltInRoleConverter : System.ComponentModel.TypeConverter
800     {
BuiltInRoleConverter()801         public BuiltInRoleConverter() { }
CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType)802         public override bool CanConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Type destinationType) { throw null; }
ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType)803         public override object ConvertTo(System.ComponentModel.ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, System.Type destinationType) { throw null; }
804     }
805     [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
806     [System.SerializableAttribute]
807     public partial class CantStartSingleInstanceException : System.Exception
808     {
CantStartSingleInstanceException()809         public CantStartSingleInstanceException() { }
810         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(2))]
CantStartSingleInstanceException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context)811         protected CantStartSingleInstanceException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { }
CantStartSingleInstanceException(string message)812         public CantStartSingleInstanceException(string message) { }
CantStartSingleInstanceException(string message, System.Exception inner)813         public CantStartSingleInstanceException(string message, System.Exception inner) { }
814     }
815     public partial class ConsoleApplicationBase : Microsoft.VisualBasic.ApplicationServices.ApplicationBase
816     {
ConsoleApplicationBase()817         public ConsoleApplicationBase() { }
818         public System.Collections.ObjectModel.ReadOnlyCollection<string> CommandLineArgs { get { throw null; } }
819         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(2))]
820         protected System.Collections.ObjectModel.ReadOnlyCollection<string> InternalCommandLine { set { } }
821         public bool IsNetworkDeployed { get { throw null; } }
822     }
823     [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
824     [System.SerializableAttribute]
825     public partial class NoStartupFormException : System.Exception
826     {
NoStartupFormException()827         public NoStartupFormException() { }
828         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(2))]
NoStartupFormException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context)829         protected NoStartupFormException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { }
NoStartupFormException(string message)830         public NoStartupFormException(string message) { }
NoStartupFormException(string message, System.Exception inner)831         public NoStartupFormException(string message, System.Exception inner) { }
832     }
833     [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(2))]
ShutdownEventHandler(object sender, System.EventArgs e)834     public delegate void ShutdownEventHandler(object sender, System.EventArgs e);
835     public enum ShutdownMode
836     {
837         AfterAllFormsClose = 1,
838         AfterMainFormCloses = 0,
839     }
840     [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(2))]
841     [System.Runtime.InteropServices.ComVisibleAttribute(false)]
842     public partial class StartupEventArgs : System.ComponentModel.CancelEventArgs
843     {
StartupEventArgs(System.Collections.ObjectModel.ReadOnlyCollection<string> args)844         public StartupEventArgs(System.Collections.ObjectModel.ReadOnlyCollection<string> args) { }
845         public System.Collections.ObjectModel.ReadOnlyCollection<string> CommandLine { get { throw null; } }
846     }
847     [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(2))]
StartupEventHandler(object sender, Microsoft.VisualBasic.ApplicationServices.StartupEventArgs e)848     public delegate void StartupEventHandler(object sender, Microsoft.VisualBasic.ApplicationServices.StartupEventArgs e);
849     [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(2))]
850     public partial class StartupNextInstanceEventArgs : System.EventArgs
851     {
StartupNextInstanceEventArgs(System.Collections.ObjectModel.ReadOnlyCollection<string> args, bool bringToForegroundFlag)852         public StartupNextInstanceEventArgs(System.Collections.ObjectModel.ReadOnlyCollection<string> args, bool bringToForegroundFlag) { }
853         public bool BringToForeground { get { throw null; } set { } }
854         public System.Collections.ObjectModel.ReadOnlyCollection<string> CommandLine { get { throw null; } }
855     }
856     [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(2))]
StartupNextInstanceEventHandler(object sender, Microsoft.VisualBasic.ApplicationServices.StartupNextInstanceEventArgs e)857     public delegate void StartupNextInstanceEventHandler(object sender, Microsoft.VisualBasic.ApplicationServices.StartupNextInstanceEventArgs e);
858     [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(2))]
859     [System.Runtime.InteropServices.ComVisibleAttribute(false)]
860     public partial class UnhandledExceptionEventArgs : System.Threading.ThreadExceptionEventArgs
861     {
UnhandledExceptionEventArgs(bool exitApplication, System.Exception exception)862         public UnhandledExceptionEventArgs(bool exitApplication, System.Exception exception) : base (default(System.Exception)) { }
863         public bool ExitApplication { get { throw null; } set { } }
864     }
865     [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(2))]
UnhandledExceptionEventHandler(object sender, Microsoft.VisualBasic.ApplicationServices.UnhandledExceptionEventArgs e)866     public delegate void UnhandledExceptionEventHandler(object sender, Microsoft.VisualBasic.ApplicationServices.UnhandledExceptionEventArgs e);
867     public partial class User
868     {
User()869         public User() { }
870         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(2))]
871         public System.Security.Principal.IPrincipal CurrentPrincipal { get { throw null; } set { } }
872         protected virtual System.Security.Principal.IPrincipal InternalPrincipal { get { throw null; } set { } }
873         public bool IsAuthenticated { get { throw null; } }
874         public string Name { get { throw null; } }
875         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(2))]
InitializeWithWindowsUser()876         public void InitializeWithWindowsUser() { }
IsInRole(Microsoft.VisualBasic.ApplicationServices.BuiltInRole role)877         public bool IsInRole(Microsoft.VisualBasic.ApplicationServices.BuiltInRole role) { throw null; }
IsInRole(string role)878         public bool IsInRole(string role) { throw null; }
879     }
880     public partial class WebUser : Microsoft.VisualBasic.ApplicationServices.User
881     {
WebUser()882         public WebUser() { }
883         protected override System.Security.Principal.IPrincipal InternalPrincipal { get { throw null; } set { } }
884     }
885     public partial class WindowsFormsApplicationBase : Microsoft.VisualBasic.ApplicationServices.ConsoleApplicationBase
886     {
WindowsFormsApplicationBase()887         public WindowsFormsApplicationBase() { }
WindowsFormsApplicationBase(Microsoft.VisualBasic.ApplicationServices.AuthenticationMode authenticationMode)888         public WindowsFormsApplicationBase(Microsoft.VisualBasic.ApplicationServices.AuthenticationMode authenticationMode) { }
889         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(2))]
890         public System.Windows.Forms.ApplicationContext ApplicationContext { get { throw null; } }
891         protected bool EnableVisualStyles { get { throw null; } set { } }
892         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(2))]
893         protected bool IsSingleInstance { get { throw null; } set { } }
894         protected System.Windows.Forms.Form MainForm { get { throw null; } set { } }
895         public int MinimumSplashScreenDisplayTime { get { throw null; } set { } }
896         public System.Windows.Forms.FormCollection OpenForms { get { throw null; } }
897         public bool SaveMySettingsOnExit { get { throw null; } set { } }
898         protected internal Microsoft.VisualBasic.ApplicationServices.ShutdownMode ShutdownStyle { get { throw null; } set { } }
899         public System.Windows.Forms.Form SplashScreen { get { throw null; } set { } }
900         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(2))]
901         protected static bool UseCompatibleTextRendering { get { throw null; } }
902         public event Microsoft.VisualBasic.Devices.NetworkAvailableEventHandler NetworkAvailabilityChanged { add { } remove { } }
903         public event Microsoft.VisualBasic.ApplicationServices.ShutdownEventHandler Shutdown { add { } remove { } }
904         public event Microsoft.VisualBasic.ApplicationServices.StartupEventHandler Startup { add { } remove { } }
905         public event Microsoft.VisualBasic.ApplicationServices.StartupNextInstanceEventHandler StartupNextInstance { add { } remove { } }
906         public event Microsoft.VisualBasic.ApplicationServices.UnhandledExceptionEventHandler UnhandledException { add { } remove { } }
DoEvents()907         public void DoEvents() { }
908         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(2))]
HideSplashScreen()909         protected void HideSplashScreen() { }
910         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(2))]
OnCreateMainForm()911         protected virtual void OnCreateMainForm() { }
912         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(2))]
OnCreateSplashScreen()913         protected virtual void OnCreateSplashScreen() { }
914         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(2))]
915         [System.STAThreadAttribute]
OnInitialize(System.Collections.ObjectModel.ReadOnlyCollection<string> commandLineArgs)916         protected virtual bool OnInitialize(System.Collections.ObjectModel.ReadOnlyCollection<string> commandLineArgs) { throw null; }
917         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(2))]
OnRun()918         protected virtual void OnRun() { }
919         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(2))]
OnShutdown()920         protected virtual void OnShutdown() { }
921         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(2))]
OnStartup(Microsoft.VisualBasic.ApplicationServices.StartupEventArgs eventArgs)922         protected virtual bool OnStartup(Microsoft.VisualBasic.ApplicationServices.StartupEventArgs eventArgs) { throw null; }
923         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(2))]
OnStartupNextInstance(Microsoft.VisualBasic.ApplicationServices.StartupNextInstanceEventArgs eventArgs)924         protected virtual void OnStartupNextInstance(Microsoft.VisualBasic.ApplicationServices.StartupNextInstanceEventArgs eventArgs) { }
925         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(2))]
OnUnhandledException(Microsoft.VisualBasic.ApplicationServices.UnhandledExceptionEventArgs e)926         protected virtual bool OnUnhandledException(Microsoft.VisualBasic.ApplicationServices.UnhandledExceptionEventArgs e) { throw null; }
Run(string[] commandLine)927         public void Run(string[] commandLine) { }
928         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(2))]
ShowSplashScreen()929         protected void ShowSplashScreen() { }
930     }
931 }
932 namespace Microsoft.VisualBasic.CompilerServices
933 {
934     [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
935     public sealed partial class BooleanType
936     {
BooleanType()937         internal BooleanType() { }
FromObject(object Value)938         public static bool FromObject(object Value) { throw null; }
FromString(string Value)939         public static bool FromString(string Value) { throw null; }
940     }
941     [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
942     public sealed partial class ByteType
943     {
ByteType()944         internal ByteType() { }
FromObject(object Value)945         public static byte FromObject(object Value) { throw null; }
FromString(string Value)946         public static byte FromString(string Value) { throw null; }
947     }
948     [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
949     public sealed partial class CharArrayType
950     {
CharArrayType()951         internal CharArrayType() { }
FromObject(object Value)952         public static char[] FromObject(object Value) { throw null; }
FromString(string Value)953         public static char[] FromString(string Value) { throw null; }
954     }
955     [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
956     public sealed partial class CharType
957     {
CharType()958         internal CharType() { }
FromObject(object Value)959         public static char FromObject(object Value) { throw null; }
FromString(string Value)960         public static char FromString(string Value) { throw null; }
961     }
962     [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
963     public sealed partial class Conversions
964     {
Conversions()965         internal Conversions() { }
ChangeType(object Expression, System.Type TargetType)966         public static object ChangeType(object Expression, System.Type TargetType) { throw null; }
FallbackUserDefinedConversion(object Expression, System.Type TargetType)967         public static object FallbackUserDefinedConversion(object Expression, System.Type TargetType) { throw null; }
FromCharAndCount(char Value, int Count)968         public static string FromCharAndCount(char Value, int Count) { throw null; }
FromCharArray(char[] Value)969         public static string FromCharArray(char[] Value) { throw null; }
FromCharArraySubset(char[] Value, int StartIndex, int Length)970         public static string FromCharArraySubset(char[] Value, int StartIndex, int Length) { throw null; }
ToBoolean(object Value)971         public static bool ToBoolean(object Value) { throw null; }
ToBoolean(string Value)972         public static bool ToBoolean(string Value) { throw null; }
ToByte(object Value)973         public static byte ToByte(object Value) { throw null; }
ToByte(string Value)974         public static byte ToByte(string Value) { throw null; }
ToChar(object Value)975         public static char ToChar(object Value) { throw null; }
ToChar(string Value)976         public static char ToChar(string Value) { throw null; }
ToCharArrayRankOne(object Value)977         public static char[] ToCharArrayRankOne(object Value) { throw null; }
ToCharArrayRankOne(string Value)978         public static char[] ToCharArrayRankOne(string Value) { throw null; }
ToDate(object Value)979         public static System.DateTime ToDate(object Value) { throw null; }
ToDate(string Value)980         public static System.DateTime ToDate(string Value) { throw null; }
ToDecimal(bool Value)981         public static decimal ToDecimal(bool Value) { throw null; }
ToDecimal(object Value)982         public static decimal ToDecimal(object Value) { throw null; }
ToDecimal(string Value)983         public static decimal ToDecimal(string Value) { throw null; }
ToDouble(object Value)984         public static double ToDouble(object Value) { throw null; }
ToDouble(string Value)985         public static double ToDouble(string Value) { throw null; }
ToGenericParameter(object Value)986         public static T ToGenericParameter<T>(object Value) { throw null; }
ToInteger(object Value)987         public static int ToInteger(object Value) { throw null; }
ToInteger(string Value)988         public static int ToInteger(string Value) { throw null; }
ToLong(object Value)989         public static long ToLong(object Value) { throw null; }
ToLong(string Value)990         public static long ToLong(string Value) { throw null; }
991         [System.CLSCompliantAttribute(false)]
ToSByte(object Value)992         public static sbyte ToSByte(object Value) { throw null; }
993         [System.CLSCompliantAttribute(false)]
ToSByte(string Value)994         public static sbyte ToSByte(string Value) { throw null; }
ToShort(object Value)995         public static short ToShort(object Value) { throw null; }
ToShort(string Value)996         public static short ToShort(string Value) { throw null; }
ToSingle(object Value)997         public static float ToSingle(object Value) { throw null; }
ToSingle(string Value)998         public static float ToSingle(string Value) { throw null; }
ToString(bool Value)999         public static string ToString(bool Value) { throw null; }
ToString(byte Value)1000         public static string ToString(byte Value) { throw null; }
ToString(char Value)1001         public static string ToString(char Value) { throw null; }
ToString(System.DateTime Value)1002         public static string ToString(System.DateTime Value) { throw null; }
ToString(decimal Value)1003         public static string ToString(decimal Value) { throw null; }
ToString(decimal Value, System.Globalization.NumberFormatInfo NumberFormat)1004         public static string ToString(decimal Value, System.Globalization.NumberFormatInfo NumberFormat) { throw null; }
ToString(double Value)1005         public static string ToString(double Value) { throw null; }
ToString(double Value, System.Globalization.NumberFormatInfo NumberFormat)1006         public static string ToString(double Value, System.Globalization.NumberFormatInfo NumberFormat) { throw null; }
ToString(short Value)1007         public static string ToString(short Value) { throw null; }
ToString(int Value)1008         public static string ToString(int Value) { throw null; }
ToString(long Value)1009         public static string ToString(long Value) { throw null; }
ToString(object Value)1010         public static string ToString(object Value) { throw null; }
ToString(float Value)1011         public static string ToString(float Value) { throw null; }
ToString(float Value, System.Globalization.NumberFormatInfo NumberFormat)1012         public static string ToString(float Value, System.Globalization.NumberFormatInfo NumberFormat) { throw null; }
1013         [System.CLSCompliantAttribute(false)]
ToString(uint Value)1014         public static string ToString(uint Value) { throw null; }
1015         [System.CLSCompliantAttribute(false)]
ToString(ulong Value)1016         public static string ToString(ulong Value) { throw null; }
1017         [System.CLSCompliantAttribute(false)]
ToUInteger(object Value)1018         public static uint ToUInteger(object Value) { throw null; }
1019         [System.CLSCompliantAttribute(false)]
ToUInteger(string Value)1020         public static uint ToUInteger(string Value) { throw null; }
1021         [System.CLSCompliantAttribute(false)]
ToULong(object Value)1022         public static ulong ToULong(object Value) { throw null; }
1023         [System.CLSCompliantAttribute(false)]
ToULong(string Value)1024         public static ulong ToULong(string Value) { throw null; }
1025         [System.CLSCompliantAttribute(false)]
ToUShort(object Value)1026         public static ushort ToUShort(object Value) { throw null; }
1027         [System.CLSCompliantAttribute(false)]
ToUShort(string Value)1028         public static ushort ToUShort(string Value) { throw null; }
1029     }
1030     [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
1031     public sealed partial class DateType
1032     {
DateType()1033         internal DateType() { }
FromObject(object Value)1034         public static System.DateTime FromObject(object Value) { throw null; }
FromString(string Value)1035         public static System.DateTime FromString(string Value) { throw null; }
FromString(string Value, System.Globalization.CultureInfo culture)1036         public static System.DateTime FromString(string Value, System.Globalization.CultureInfo culture) { throw null; }
1037     }
1038     [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
1039     public sealed partial class DecimalType
1040     {
DecimalType()1041         internal DecimalType() { }
FromBoolean(bool Value)1042         public static decimal FromBoolean(bool Value) { throw null; }
FromObject(object Value)1043         public static decimal FromObject(object Value) { throw null; }
FromObject(object Value, System.Globalization.NumberFormatInfo NumberFormat)1044         public static decimal FromObject(object Value, System.Globalization.NumberFormatInfo NumberFormat) { throw null; }
FromString(string Value)1045         public static decimal FromString(string Value) { throw null; }
FromString(string Value, System.Globalization.NumberFormatInfo NumberFormat)1046         public static decimal FromString(string Value, System.Globalization.NumberFormatInfo NumberFormat) { throw null; }
Parse(string Value, System.Globalization.NumberFormatInfo NumberFormat)1047         public static decimal Parse(string Value, System.Globalization.NumberFormatInfo NumberFormat) { throw null; }
1048     }
1049     [System.AttributeUsageAttribute((System.AttributeTargets)(4), AllowMultiple=false, Inherited=false)]
1050     [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
1051     public sealed partial class DesignerGeneratedAttribute : System.Attribute
1052     {
DesignerGeneratedAttribute()1053         public DesignerGeneratedAttribute() { }
1054     }
1055     [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
1056     public sealed partial class DoubleType
1057     {
DoubleType()1058         internal DoubleType() { }
FromObject(object Value)1059         public static double FromObject(object Value) { throw null; }
FromObject(object Value, System.Globalization.NumberFormatInfo NumberFormat)1060         public static double FromObject(object Value, System.Globalization.NumberFormatInfo NumberFormat) { throw null; }
FromString(string Value)1061         public static double FromString(string Value) { throw null; }
FromString(string Value, System.Globalization.NumberFormatInfo NumberFormat)1062         public static double FromString(string Value, System.Globalization.NumberFormatInfo NumberFormat) { throw null; }
Parse(string Value)1063         public static double Parse(string Value) { throw null; }
Parse(string Value, System.Globalization.NumberFormatInfo NumberFormat)1064         public static double Parse(string Value, System.Globalization.NumberFormatInfo NumberFormat) { throw null; }
1065     }
1066     [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
1067     public sealed partial class ExceptionUtils
1068     {
ExceptionUtils()1069         internal ExceptionUtils() { }
1070     }
1071     [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
1072     public sealed partial class FlowControl
1073     {
FlowControl()1074         internal FlowControl() { }
CheckForSyncLockOnValueType(object obj)1075         public static void CheckForSyncLockOnValueType(object obj) { }
ForEachInArr(System.Array ary)1076         public static System.Collections.IEnumerator ForEachInArr(System.Array ary) { throw null; }
ForEachInObj(object obj)1077         public static System.Collections.IEnumerator ForEachInObj(object obj) { throw null; }
ForEachNextObj(ref object obj, System.Collections.IEnumerator enumerator)1078         public static bool ForEachNextObj(ref object obj, System.Collections.IEnumerator enumerator) { throw null; }
ForLoopInitObj(object Counter, object Start, object Limit, object StepValue, ref object LoopForResult, ref object CounterResult)1079         public static bool ForLoopInitObj(object Counter, object Start, object Limit, object StepValue, ref object LoopForResult, ref object CounterResult) { throw null; }
ForNextCheckDec(decimal count, decimal limit, decimal StepValue)1080         public static bool ForNextCheckDec(decimal count, decimal limit, decimal StepValue) { throw null; }
ForNextCheckObj(object Counter, object LoopObj, ref object CounterResult)1081         public static bool ForNextCheckObj(object Counter, object LoopObj, ref object CounterResult) { throw null; }
ForNextCheckR4(float count, float limit, float StepValue)1082         public static bool ForNextCheckR4(float count, float limit, float StepValue) { throw null; }
ForNextCheckR8(double count, double limit, double StepValue)1083         public static bool ForNextCheckR8(double count, double limit, double StepValue) { throw null; }
1084     }
1085     [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
1086     public sealed partial class HostServices
1087     {
HostServices()1088         public HostServices() { }
1089         public static Microsoft.VisualBasic.CompilerServices.IVbHost VBHost { get { throw null; } set { } }
1090     }
1091     [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
1092     [System.SerializableAttribute]
1093     public sealed partial class IncompleteInitialization : System.Exception
1094     {
IncompleteInitialization()1095         public IncompleteInitialization() { }
1096         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(2))]
IncompleteInitialization(string message)1097         public IncompleteInitialization(string message) { }
1098         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(2))]
IncompleteInitialization(string message, System.Exception innerException)1099         public IncompleteInitialization(string message, System.Exception innerException) { }
1100     }
1101     [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
1102     public sealed partial class IntegerType
1103     {
IntegerType()1104         internal IntegerType() { }
FromObject(object Value)1105         public static int FromObject(object Value) { throw null; }
FromString(string Value)1106         public static int FromString(string Value) { throw null; }
1107     }
1108     [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
1109     [System.SerializableAttribute]
1110     public sealed partial class InternalErrorException : System.Exception
1111     {
InternalErrorException()1112         public InternalErrorException() { }
1113         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(2))]
InternalErrorException(string message)1114         public InternalErrorException(string message) { }
1115         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(2))]
InternalErrorException(string message, System.Exception innerException)1116         public InternalErrorException(string message, System.Exception innerException) { }
1117     }
1118     [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
1119     public partial interface IVbHost
1120     {
GetParentWindow()1121         System.Windows.Forms.IWin32Window GetParentWindow();
GetWindowTitle()1122         string GetWindowTitle();
1123     }
1124     [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
1125     public sealed partial class LateBinding
1126     {
LateBinding()1127         internal LateBinding() { }
1128         [System.Diagnostics.DebuggerHiddenAttribute]
1129         [System.Diagnostics.DebuggerStepThroughAttribute]
LateCall(object o, System.Type objType, string name, object[] args, string[] paramnames, bool[] CopyBack)1130         public static void LateCall(object o, System.Type objType, string name, object[] args, string[] paramnames, bool[] CopyBack) { }
1131         [System.Diagnostics.DebuggerHiddenAttribute]
1132         [System.Diagnostics.DebuggerStepThroughAttribute]
LateGet(object o, System.Type objType, string name, object[] args, string[] paramnames, bool[] CopyBack)1133         public static object LateGet(object o, System.Type objType, string name, object[] args, string[] paramnames, bool[] CopyBack) { throw null; }
1134         [System.Diagnostics.DebuggerHiddenAttribute]
1135         [System.Diagnostics.DebuggerStepThroughAttribute]
LateIndexGet(object o, object[] args, string[] paramnames)1136         public static object LateIndexGet(object o, object[] args, string[] paramnames) { throw null; }
1137         [System.Diagnostics.DebuggerHiddenAttribute]
1138         [System.Diagnostics.DebuggerStepThroughAttribute]
LateIndexSet(object o, object[] args, string[] paramnames)1139         public static void LateIndexSet(object o, object[] args, string[] paramnames) { }
1140         [System.Diagnostics.DebuggerHiddenAttribute]
1141         [System.Diagnostics.DebuggerStepThroughAttribute]
LateIndexSetComplex(object o, object[] args, string[] paramnames, bool OptimisticSet, bool RValueBase)1142         public static void LateIndexSetComplex(object o, object[] args, string[] paramnames, bool OptimisticSet, bool RValueBase) { }
1143         [System.Diagnostics.DebuggerHiddenAttribute]
1144         [System.Diagnostics.DebuggerStepThroughAttribute]
LateSet(object o, System.Type objType, string name, object[] args, string[] paramnames)1145         public static void LateSet(object o, System.Type objType, string name, object[] args, string[] paramnames) { }
1146         [System.Diagnostics.DebuggerHiddenAttribute]
1147         [System.Diagnostics.DebuggerStepThroughAttribute]
LateSetComplex(object o, System.Type objType, string name, object[] args, string[] paramnames, bool OptimisticSet, bool RValueBase)1148         public static void LateSetComplex(object o, System.Type objType, string name, object[] args, string[] paramnames, bool OptimisticSet, bool RValueBase) { }
1149     }
1150     [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
1151     public sealed partial class LikeOperator
1152     {
LikeOperator()1153         internal LikeOperator() { }
LikeObject(object Source, object Pattern, Microsoft.VisualBasic.CompareMethod CompareOption)1154         public static object LikeObject(object Source, object Pattern, Microsoft.VisualBasic.CompareMethod CompareOption) { throw null; }
LikeString(string Source, string Pattern, Microsoft.VisualBasic.CompareMethod CompareOption)1155         public static bool LikeString(string Source, string Pattern, Microsoft.VisualBasic.CompareMethod CompareOption) { throw null; }
1156     }
1157     [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
1158     public sealed partial class LongType
1159     {
LongType()1160         internal LongType() { }
FromObject(object Value)1161         public static long FromObject(object Value) { throw null; }
FromString(string Value)1162         public static long FromString(string Value) { throw null; }
1163     }
1164     [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
1165     public sealed partial class NewLateBinding
1166     {
NewLateBinding()1167         internal NewLateBinding() { }
FallbackCall(object Instance, string MemberName, object[] Arguments, string[] ArgumentNames, bool IgnoreReturn)1168         public static object FallbackCall(object Instance, string MemberName, object[] Arguments, string[] ArgumentNames, bool IgnoreReturn) { throw null; }
FallbackGet(object Instance, string MemberName, object[] Arguments, string[] ArgumentNames)1169         public static object FallbackGet(object Instance, string MemberName, object[] Arguments, string[] ArgumentNames) { throw null; }
FallbackIndexSet(object Instance, object[] Arguments, string[] ArgumentNames)1170         public static void FallbackIndexSet(object Instance, object[] Arguments, string[] ArgumentNames) { }
FallbackIndexSetComplex(object Instance, object[] Arguments, string[] ArgumentNames, bool OptimisticSet, bool RValueBase)1171         public static void FallbackIndexSetComplex(object Instance, object[] Arguments, string[] ArgumentNames, bool OptimisticSet, bool RValueBase) { }
FallbackInvokeDefault1(object Instance, object[] Arguments, string[] ArgumentNames, bool ReportErrors)1172         public static object FallbackInvokeDefault1(object Instance, object[] Arguments, string[] ArgumentNames, bool ReportErrors) { throw null; }
FallbackInvokeDefault2(object Instance, object[] Arguments, string[] ArgumentNames, bool ReportErrors)1173         public static object FallbackInvokeDefault2(object Instance, object[] Arguments, string[] ArgumentNames, bool ReportErrors) { throw null; }
FallbackSet(object Instance, string MemberName, object[] Arguments)1174         public static void FallbackSet(object Instance, string MemberName, object[] Arguments) { }
FallbackSetComplex(object Instance, string MemberName, object[] Arguments, bool OptimisticSet, bool RValueBase)1175         public static void FallbackSetComplex(object Instance, string MemberName, object[] Arguments, bool OptimisticSet, bool RValueBase) { }
1176         [System.Diagnostics.DebuggerHiddenAttribute]
1177         [System.Diagnostics.DebuggerStepThroughAttribute]
LateCall(object Instance, System.Type Type, string MemberName, object[] Arguments, string[] ArgumentNames, System.Type[] TypeArguments, bool[] CopyBack, bool IgnoreReturn)1178         public static object LateCall(object Instance, System.Type Type, string MemberName, object[] Arguments, string[] ArgumentNames, System.Type[] TypeArguments, bool[] CopyBack, bool IgnoreReturn) { throw null; }
LateCallInvokeDefault(object Instance, object[] Arguments, string[] ArgumentNames, bool ReportErrors)1179         public static object LateCallInvokeDefault(object Instance, object[] Arguments, string[] ArgumentNames, bool ReportErrors) { throw null; }
1180         [System.Diagnostics.DebuggerHiddenAttribute]
1181         [System.Diagnostics.DebuggerStepThroughAttribute]
LateCanEvaluate(object instance, System.Type type, string memberName, object[] arguments, bool allowFunctionEvaluation, bool allowPropertyEvaluation)1182         public static bool LateCanEvaluate(object instance, System.Type type, string memberName, object[] arguments, bool allowFunctionEvaluation, bool allowPropertyEvaluation) { throw null; }
1183         [System.Diagnostics.DebuggerHiddenAttribute]
1184         [System.Diagnostics.DebuggerStepThroughAttribute]
LateGet(object Instance, System.Type Type, string MemberName, object[] Arguments, string[] ArgumentNames, System.Type[] TypeArguments, bool[] CopyBack)1185         public static object LateGet(object Instance, System.Type Type, string MemberName, object[] Arguments, string[] ArgumentNames, System.Type[] TypeArguments, bool[] CopyBack) { throw null; }
LateGetInvokeDefault(object Instance, object[] Arguments, string[] ArgumentNames, bool ReportErrors)1186         public static object LateGetInvokeDefault(object Instance, object[] Arguments, string[] ArgumentNames, bool ReportErrors) { throw null; }
1187         [System.Diagnostics.DebuggerHiddenAttribute]
1188         [System.Diagnostics.DebuggerStepThroughAttribute]
LateIndexGet(object Instance, object[] Arguments, string[] ArgumentNames)1189         public static object LateIndexGet(object Instance, object[] Arguments, string[] ArgumentNames) { throw null; }
1190         [System.Diagnostics.DebuggerHiddenAttribute]
1191         [System.Diagnostics.DebuggerStepThroughAttribute]
LateIndexSet(object Instance, object[] Arguments, string[] ArgumentNames)1192         public static void LateIndexSet(object Instance, object[] Arguments, string[] ArgumentNames) { }
1193         [System.Diagnostics.DebuggerHiddenAttribute]
1194         [System.Diagnostics.DebuggerStepThroughAttribute]
LateIndexSetComplex(object Instance, object[] Arguments, string[] ArgumentNames, bool OptimisticSet, bool RValueBase)1195         public static void LateIndexSetComplex(object Instance, object[] Arguments, string[] ArgumentNames, bool OptimisticSet, bool RValueBase) { }
1196         [System.Diagnostics.DebuggerHiddenAttribute]
1197         [System.Diagnostics.DebuggerStepThroughAttribute]
LateSet(object Instance, System.Type Type, string MemberName, object[] Arguments, string[] ArgumentNames, System.Type[] TypeArguments)1198         public static void LateSet(object Instance, System.Type Type, string MemberName, object[] Arguments, string[] ArgumentNames, System.Type[] TypeArguments) { }
1199         [System.Diagnostics.DebuggerHiddenAttribute]
1200         [System.Diagnostics.DebuggerStepThroughAttribute]
LateSet(object Instance, System.Type Type, string MemberName, object[] Arguments, string[] ArgumentNames, System.Type[] TypeArguments, bool OptimisticSet, bool RValueBase, Microsoft.VisualBasic.CallType CallType)1201         public static void LateSet(object Instance, System.Type Type, string MemberName, object[] Arguments, string[] ArgumentNames, System.Type[] TypeArguments, bool OptimisticSet, bool RValueBase, Microsoft.VisualBasic.CallType CallType) { }
1202         [System.Diagnostics.DebuggerHiddenAttribute]
1203         [System.Diagnostics.DebuggerStepThroughAttribute]
LateSetComplex(object Instance, System.Type Type, string MemberName, object[] Arguments, string[] ArgumentNames, System.Type[] TypeArguments, bool OptimisticSet, bool RValueBase)1204         public static void LateSetComplex(object Instance, System.Type Type, string MemberName, object[] Arguments, string[] ArgumentNames, System.Type[] TypeArguments, bool OptimisticSet, bool RValueBase) { }
1205     }
1206     [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
1207     public sealed partial class ObjectFlowControl
1208     {
ObjectFlowControl()1209         internal ObjectFlowControl() { }
CheckForSyncLockOnValueType(object Expression)1210         public static void CheckForSyncLockOnValueType(object Expression) { }
1211         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
1212         public sealed partial class ForLoopControl
1213         {
ForLoopControl()1214             internal ForLoopControl() { }
ForLoopInitObj(object Counter, object Start, object Limit, object StepValue, ref object LoopForResult, ref object CounterResult)1215             public static bool ForLoopInitObj(object Counter, object Start, object Limit, object StepValue, ref object LoopForResult, ref object CounterResult) { throw null; }
ForNextCheckDec(decimal count, decimal limit, decimal StepValue)1216             public static bool ForNextCheckDec(decimal count, decimal limit, decimal StepValue) { throw null; }
ForNextCheckObj(object Counter, object LoopObj, ref object CounterResult)1217             public static bool ForNextCheckObj(object Counter, object LoopObj, ref object CounterResult) { throw null; }
ForNextCheckR4(float count, float limit, float StepValue)1218             public static bool ForNextCheckR4(float count, float limit, float StepValue) { throw null; }
ForNextCheckR8(double count, double limit, double StepValue)1219             public static bool ForNextCheckR8(double count, double limit, double StepValue) { throw null; }
1220         }
1221     }
1222     [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
1223     public sealed partial class ObjectType
1224     {
ObjectType()1225         public ObjectType() { }
AddObj(object o1, object o2)1226         public static object AddObj(object o1, object o2) { throw null; }
BitAndObj(object obj1, object obj2)1227         public static object BitAndObj(object obj1, object obj2) { throw null; }
BitOrObj(object obj1, object obj2)1228         public static object BitOrObj(object obj1, object obj2) { throw null; }
BitXorObj(object obj1, object obj2)1229         public static object BitXorObj(object obj1, object obj2) { throw null; }
DivObj(object o1, object o2)1230         public static object DivObj(object o1, object o2) { throw null; }
GetObjectValuePrimitive(object o)1231         public static object GetObjectValuePrimitive(object o) { throw null; }
IDivObj(object o1, object o2)1232         public static object IDivObj(object o1, object o2) { throw null; }
LikeObj(object vLeft, object vRight, Microsoft.VisualBasic.CompareMethod CompareOption)1233         public static bool LikeObj(object vLeft, object vRight, Microsoft.VisualBasic.CompareMethod CompareOption) { throw null; }
ModObj(object o1, object o2)1234         public static object ModObj(object o1, object o2) { throw null; }
MulObj(object o1, object o2)1235         public static object MulObj(object o1, object o2) { throw null; }
NegObj(object obj)1236         public static object NegObj(object obj) { throw null; }
NotObj(object obj)1237         public static object NotObj(object obj) { throw null; }
ObjTst(object o1, object o2, bool TextCompare)1238         public static int ObjTst(object o1, object o2, bool TextCompare) { throw null; }
PlusObj(object obj)1239         public static object PlusObj(object obj) { throw null; }
PowObj(object obj1, object obj2)1240         public static object PowObj(object obj1, object obj2) { throw null; }
ShiftLeftObj(object o1, int amount)1241         public static object ShiftLeftObj(object o1, int amount) { throw null; }
ShiftRightObj(object o1, int amount)1242         public static object ShiftRightObj(object o1, int amount) { throw null; }
StrCatObj(object vLeft, object vRight)1243         public static object StrCatObj(object vLeft, object vRight) { throw null; }
SubObj(object o1, object o2)1244         public static object SubObj(object o1, object o2) { throw null; }
XorObj(object obj1, object obj2)1245         public static object XorObj(object obj1, object obj2) { throw null; }
1246     }
1247     [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
1248     public sealed partial class Operators
1249     {
Operators()1250         internal Operators() { }
AddObject(object Left, object Right)1251         public static object AddObject(object Left, object Right) { throw null; }
AndObject(object Left, object Right)1252         public static object AndObject(object Left, object Right) { throw null; }
CompareObject(object Left, object Right, bool TextCompare)1253         public static int CompareObject(object Left, object Right, bool TextCompare) { throw null; }
CompareObjectEqual(object Left, object Right, bool TextCompare)1254         public static object CompareObjectEqual(object Left, object Right, bool TextCompare) { throw null; }
CompareObjectGreater(object Left, object Right, bool TextCompare)1255         public static object CompareObjectGreater(object Left, object Right, bool TextCompare) { throw null; }
CompareObjectGreaterEqual(object Left, object Right, bool TextCompare)1256         public static object CompareObjectGreaterEqual(object Left, object Right, bool TextCompare) { throw null; }
CompareObjectLess(object Left, object Right, bool TextCompare)1257         public static object CompareObjectLess(object Left, object Right, bool TextCompare) { throw null; }
CompareObjectLessEqual(object Left, object Right, bool TextCompare)1258         public static object CompareObjectLessEqual(object Left, object Right, bool TextCompare) { throw null; }
CompareObjectNotEqual(object Left, object Right, bool TextCompare)1259         public static object CompareObjectNotEqual(object Left, object Right, bool TextCompare) { throw null; }
CompareString(string Left, string Right, bool TextCompare)1260         public static int CompareString(string Left, string Right, bool TextCompare) { throw null; }
ConcatenateObject(object Left, object Right)1261         public static object ConcatenateObject(object Left, object Right) { throw null; }
ConditionalCompareObjectEqual(object Left, object Right, bool TextCompare)1262         public static bool ConditionalCompareObjectEqual(object Left, object Right, bool TextCompare) { throw null; }
ConditionalCompareObjectGreater(object Left, object Right, bool TextCompare)1263         public static bool ConditionalCompareObjectGreater(object Left, object Right, bool TextCompare) { throw null; }
ConditionalCompareObjectGreaterEqual(object Left, object Right, bool TextCompare)1264         public static bool ConditionalCompareObjectGreaterEqual(object Left, object Right, bool TextCompare) { throw null; }
ConditionalCompareObjectLess(object Left, object Right, bool TextCompare)1265         public static bool ConditionalCompareObjectLess(object Left, object Right, bool TextCompare) { throw null; }
ConditionalCompareObjectLessEqual(object Left, object Right, bool TextCompare)1266         public static bool ConditionalCompareObjectLessEqual(object Left, object Right, bool TextCompare) { throw null; }
ConditionalCompareObjectNotEqual(object Left, object Right, bool TextCompare)1267         public static bool ConditionalCompareObjectNotEqual(object Left, object Right, bool TextCompare) { throw null; }
DivideObject(object Left, object Right)1268         public static object DivideObject(object Left, object Right) { throw null; }
ExponentObject(object Left, object Right)1269         public static object ExponentObject(object Left, object Right) { throw null; }
FallbackInvokeUserDefinedOperator(object vbOp, object[] Arguments)1270         public static object FallbackInvokeUserDefinedOperator(object vbOp, object[] Arguments) { throw null; }
IntDivideObject(object Left, object Right)1271         public static object IntDivideObject(object Left, object Right) { throw null; }
LeftShiftObject(object Operand, object Amount)1272         public static object LeftShiftObject(object Operand, object Amount) { throw null; }
LikeObject(object Source, object Pattern, Microsoft.VisualBasic.CompareMethod CompareOption)1273         public static object LikeObject(object Source, object Pattern, Microsoft.VisualBasic.CompareMethod CompareOption) { throw null; }
LikeString(string Source, string Pattern, Microsoft.VisualBasic.CompareMethod CompareOption)1274         public static bool LikeString(string Source, string Pattern, Microsoft.VisualBasic.CompareMethod CompareOption) { throw null; }
ModObject(object Left, object Right)1275         public static object ModObject(object Left, object Right) { throw null; }
MultiplyObject(object Left, object Right)1276         public static object MultiplyObject(object Left, object Right) { throw null; }
NegateObject(object Operand)1277         public static object NegateObject(object Operand) { throw null; }
NotObject(object Operand)1278         public static object NotObject(object Operand) { throw null; }
OrObject(object Left, object Right)1279         public static object OrObject(object Left, object Right) { throw null; }
PlusObject(object Operand)1280         public static object PlusObject(object Operand) { throw null; }
RightShiftObject(object Operand, object Amount)1281         public static object RightShiftObject(object Operand, object Amount) { throw null; }
SubtractObject(object Left, object Right)1282         public static object SubtractObject(object Left, object Right) { throw null; }
XorObject(object Left, object Right)1283         public static object XorObject(object Left, object Right) { throw null; }
1284     }
1285     [System.AttributeUsageAttribute((System.AttributeTargets)(2048), Inherited=false, AllowMultiple=false)]
1286     [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
1287     public sealed partial class OptionCompareAttribute : System.Attribute
1288     {
OptionCompareAttribute()1289         public OptionCompareAttribute() { }
1290     }
1291     [System.AttributeUsageAttribute((System.AttributeTargets)(4), Inherited=false, AllowMultiple=false)]
1292     [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
1293     public sealed partial class OptionTextAttribute : System.Attribute
1294     {
OptionTextAttribute()1295         public OptionTextAttribute() { }
1296     }
1297     [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
1298     public sealed partial class ProjectData
1299     {
ProjectData()1300         internal ProjectData() { }
1301         [System.Runtime.ConstrainedExecution.ReliabilityContractAttribute((System.Runtime.ConstrainedExecution.Consistency)(3), (System.Runtime.ConstrainedExecution.Cer)(2))]
ClearProjectError()1302         public static void ClearProjectError() { }
CreateProjectError(int hr)1303         public static System.Exception CreateProjectError(int hr) { throw null; }
EndApp()1304         public static void EndApp() { }
1305         [System.Runtime.ConstrainedExecution.ReliabilityContractAttribute((System.Runtime.ConstrainedExecution.Consistency)(3), (System.Runtime.ConstrainedExecution.Cer)(2))]
SetProjectError(System.Exception ex)1306         public static void SetProjectError(System.Exception ex) { }
1307         [System.Runtime.ConstrainedExecution.ReliabilityContractAttribute((System.Runtime.ConstrainedExecution.Consistency)(3), (System.Runtime.ConstrainedExecution.Cer)(2))]
SetProjectError(System.Exception ex, int lErl)1308         public static void SetProjectError(System.Exception ex, int lErl) { }
1309     }
1310     [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
1311     public sealed partial class ShortType
1312     {
ShortType()1313         internal ShortType() { }
FromObject(object Value)1314         public static short FromObject(object Value) { throw null; }
FromString(string Value)1315         public static short FromString(string Value) { throw null; }
1316     }
1317     [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
1318     public sealed partial class SingleType
1319     {
SingleType()1320         internal SingleType() { }
FromObject(object Value)1321         public static float FromObject(object Value) { throw null; }
FromObject(object Value, System.Globalization.NumberFormatInfo NumberFormat)1322         public static float FromObject(object Value, System.Globalization.NumberFormatInfo NumberFormat) { throw null; }
FromString(string Value)1323         public static float FromString(string Value) { throw null; }
FromString(string Value, System.Globalization.NumberFormatInfo NumberFormat)1324         public static float FromString(string Value, System.Globalization.NumberFormatInfo NumberFormat) { throw null; }
1325     }
1326     [System.AttributeUsageAttribute((System.AttributeTargets)(4), Inherited=false, AllowMultiple=false)]
1327     [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
1328     public sealed partial class StandardModuleAttribute : System.Attribute
1329     {
StandardModuleAttribute()1330         public StandardModuleAttribute() { }
1331     }
1332     [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
1333     [System.SerializableAttribute]
1334     public sealed partial class StaticLocalInitFlag
1335     {
1336         public short State;
StaticLocalInitFlag()1337         public StaticLocalInitFlag() { }
1338     }
1339     [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
1340     public sealed partial class StringType
1341     {
StringType()1342         internal StringType() { }
FromBoolean(bool Value)1343         public static string FromBoolean(bool Value) { throw null; }
FromByte(byte Value)1344         public static string FromByte(byte Value) { throw null; }
FromChar(char Value)1345         public static string FromChar(char Value) { throw null; }
FromDate(System.DateTime Value)1346         public static string FromDate(System.DateTime Value) { throw null; }
FromDecimal(decimal Value)1347         public static string FromDecimal(decimal Value) { throw null; }
FromDecimal(decimal Value, System.Globalization.NumberFormatInfo NumberFormat)1348         public static string FromDecimal(decimal Value, System.Globalization.NumberFormatInfo NumberFormat) { throw null; }
FromDouble(double Value)1349         public static string FromDouble(double Value) { throw null; }
FromDouble(double Value, System.Globalization.NumberFormatInfo NumberFormat)1350         public static string FromDouble(double Value, System.Globalization.NumberFormatInfo NumberFormat) { throw null; }
FromInteger(int Value)1351         public static string FromInteger(int Value) { throw null; }
FromLong(long Value)1352         public static string FromLong(long Value) { throw null; }
FromObject(object Value)1353         public static string FromObject(object Value) { throw null; }
FromShort(short Value)1354         public static string FromShort(short Value) { throw null; }
FromSingle(float Value)1355         public static string FromSingle(float Value) { throw null; }
FromSingle(float Value, System.Globalization.NumberFormatInfo NumberFormat)1356         public static string FromSingle(float Value, System.Globalization.NumberFormatInfo NumberFormat) { throw null; }
MidStmtStr(ref string sDest, int StartPosition, int MaxInsertLength, string sInsert)1357         public static void MidStmtStr(ref string sDest, int StartPosition, int MaxInsertLength, string sInsert) { }
StrCmp(string sLeft, string sRight, bool TextCompare)1358         public static int StrCmp(string sLeft, string sRight, bool TextCompare) { throw null; }
StrLike(string Source, string Pattern, Microsoft.VisualBasic.CompareMethod CompareOption)1359         public static bool StrLike(string Source, string Pattern, Microsoft.VisualBasic.CompareMethod CompareOption) { throw null; }
StrLikeBinary(string Source, string Pattern)1360         public static bool StrLikeBinary(string Source, string Pattern) { throw null; }
StrLikeText(string Source, string Pattern)1361         public static bool StrLikeText(string Source, string Pattern) { throw null; }
1362     }
1363     [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
1364     public sealed partial class Utils
1365     {
Utils()1366         internal Utils() { }
CopyArray(System.Array arySrc, System.Array aryDest)1367         public static System.Array CopyArray(System.Array arySrc, System.Array aryDest) { throw null; }
GetResourceString(string ResourceKey, params string[] Args)1368         public static string GetResourceString(string ResourceKey, params string[] Args) { throw null; }
MethodToString(System.Reflection.MethodBase Method)1369         public static string MethodToString(System.Reflection.MethodBase Method) { throw null; }
SetCultureInfo(System.Globalization.CultureInfo Culture)1370         public static object SetCultureInfo(System.Globalization.CultureInfo Culture) { throw null; }
ThrowException(int hr)1371         public static void ThrowException(int hr) { }
1372     }
1373     [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
1374     public sealed partial class Versioned
1375     {
Versioned()1376         internal Versioned() { }
1377         [System.MonoLimitationAttribute("CallType.Let options is not supported.")]
CallByName(object Instance, string MethodName, Microsoft.VisualBasic.CallType UseCallType, params object[] Arguments)1378         public static object CallByName(object Instance, string MethodName, Microsoft.VisualBasic.CallType UseCallType, params object[] Arguments) { throw null; }
IsNumeric(object Expression)1379         public static bool IsNumeric(object Expression) { throw null; }
SystemTypeName(string VbName)1380         public static string SystemTypeName(string VbName) { throw null; }
TypeName(object Expression)1381         public static string TypeName(object Expression) { throw null; }
VbTypeName(string SystemName)1382         public static string VbTypeName(string SystemName) { throw null; }
1383     }
1384 }
1385 namespace Microsoft.VisualBasic.Devices
1386 {
1387     public partial class Audio
1388     {
Audio()1389         public Audio() { }
Play(byte[] data, Microsoft.VisualBasic.AudioPlayMode playMode)1390         public void Play(byte[] data, Microsoft.VisualBasic.AudioPlayMode playMode) { }
Play(System.IO.Stream stream, Microsoft.VisualBasic.AudioPlayMode playMode)1391         public void Play(System.IO.Stream stream, Microsoft.VisualBasic.AudioPlayMode playMode) { }
Play(string location)1392         public void Play(string location) { }
Play(string location, Microsoft.VisualBasic.AudioPlayMode playMode)1393         public void Play(string location, Microsoft.VisualBasic.AudioPlayMode playMode) { }
PlaySystemSound(System.Media.SystemSound systemSound)1394         public void PlaySystemSound(System.Media.SystemSound systemSound) { }
Stop()1395         public void Stop() { }
1396     }
1397     public partial class Clock
1398     {
Clock()1399         public Clock() { }
1400         public System.DateTime GmtTime { get { throw null; } }
1401         public System.DateTime LocalTime { get { throw null; } }
1402         public int TickCount { get { throw null; } }
1403     }
1404     public partial class Computer : Microsoft.VisualBasic.Devices.ServerComputer
1405     {
Computer()1406         public Computer() { }
1407         public Microsoft.VisualBasic.Devices.Audio Audio { get { throw null; } }
1408         public Microsoft.VisualBasic.MyServices.ClipboardProxy Clipboard { get { throw null; } }
1409         public Microsoft.VisualBasic.Devices.Keyboard Keyboard { get { throw null; } }
1410         public Microsoft.VisualBasic.Devices.Mouse Mouse { get { throw null; } }
1411         public Microsoft.VisualBasic.Devices.Ports Ports { get { throw null; } }
1412         public System.Windows.Forms.Screen Screen { get { throw null; } }
1413     }
1414     [System.Diagnostics.DebuggerTypeProxyAttribute("Microsoft.VisualBasic.Devices.ComputerInfo.ComputerInfoDebugView")]
1415     public partial class ComputerInfo
1416     {
ComputerInfo()1417         public ComputerInfo() { }
1418         [System.CLSCompliantAttribute(false)]
1419         public ulong AvailablePhysicalMemory { get { throw null; } }
1420         [System.CLSCompliantAttribute(false)]
1421         public ulong AvailableVirtualMemory { get { throw null; } }
1422         public System.Globalization.CultureInfo InstalledUICulture { get { throw null; } }
1423         public string OSFullName { get { throw null; } }
1424         public string OSPlatform { get { throw null; } }
1425         public string OSVersion { get { throw null; } }
1426         [System.CLSCompliantAttribute(false)]
1427         public ulong TotalPhysicalMemory { get { throw null; } }
1428         [System.CLSCompliantAttribute(false)]
1429         public ulong TotalVirtualMemory { get { throw null; } }
1430     }
1431     public partial class Keyboard
1432     {
Keyboard()1433         public Keyboard() { }
1434         public bool AltKeyDown { get { throw null; } }
1435         public bool CapsLock { get { throw null; } }
1436         public bool CtrlKeyDown { get { throw null; } }
1437         public bool NumLock { get { throw null; } }
1438         public bool ScrollLock { get { throw null; } }
1439         public bool ShiftKeyDown { get { throw null; } }
SendKeys(string keys)1440         public void SendKeys(string keys) { }
SendKeys(string keys, bool wait)1441         public void SendKeys(string keys, bool wait) { }
1442     }
1443     public partial class Mouse
1444     {
Mouse()1445         public Mouse() { }
1446         public bool ButtonsSwapped { get { throw null; } }
1447         public bool WheelExists { get { throw null; } }
1448         public int WheelScrollLines { get { throw null; } }
1449     }
1450     public partial class Network
1451     {
Network()1452         public Network() { }
1453         public bool IsAvailable { get { throw null; } }
1454         public event Microsoft.VisualBasic.Devices.NetworkAvailableEventHandler NetworkAvailabilityChanged { add { } remove { } }
DownloadFile(string address, string destinationFileName)1455         public void DownloadFile(string address, string destinationFileName) { }
DownloadFile(string address, string destinationFileName, string userName, string password)1456         public void DownloadFile(string address, string destinationFileName, string userName, string password) { }
DownloadFile(string address, string destinationFileName, string userName, string password, bool showUI, int connectionTimeout, bool overwrite)1457         public void DownloadFile(string address, string destinationFileName, string userName, string password, bool showUI, int connectionTimeout, bool overwrite) { }
DownloadFile(string address, string destinationFileName, string userName, string password, bool showUI, int connectionTimeout, bool overwrite, Microsoft.VisualBasic.FileIO.UICancelOption onUserCancel)1458         public void DownloadFile(string address, string destinationFileName, string userName, string password, bool showUI, int connectionTimeout, bool overwrite, Microsoft.VisualBasic.FileIO.UICancelOption onUserCancel) { }
DownloadFile(System.Uri address, string destinationFileName)1459         public void DownloadFile(System.Uri address, string destinationFileName) { }
DownloadFile(System.Uri address, string destinationFileName, System.Net.ICredentials networkCredentials, bool showUI, int connectionTimeout, bool overwrite)1460         public void DownloadFile(System.Uri address, string destinationFileName, System.Net.ICredentials networkCredentials, bool showUI, int connectionTimeout, bool overwrite) { }
DownloadFile(System.Uri address, string destinationFileName, System.Net.ICredentials networkCredentials, bool showUI, int connectionTimeout, bool overwrite, Microsoft.VisualBasic.FileIO.UICancelOption onUserCancel)1461         public void DownloadFile(System.Uri address, string destinationFileName, System.Net.ICredentials networkCredentials, bool showUI, int connectionTimeout, bool overwrite, Microsoft.VisualBasic.FileIO.UICancelOption onUserCancel) { }
DownloadFile(System.Uri address, string destinationFileName, string userName, string password)1462         public void DownloadFile(System.Uri address, string destinationFileName, string userName, string password) { }
DownloadFile(System.Uri address, string destinationFileName, string userName, string password, bool showUI, int connectionTimeout, bool overwrite)1463         public void DownloadFile(System.Uri address, string destinationFileName, string userName, string password, bool showUI, int connectionTimeout, bool overwrite) { }
DownloadFile(System.Uri address, string destinationFileName, string userName, string password, bool showUI, int connectionTimeout, bool overwrite, Microsoft.VisualBasic.FileIO.UICancelOption onUserCancel)1464         public void DownloadFile(System.Uri address, string destinationFileName, string userName, string password, bool showUI, int connectionTimeout, bool overwrite, Microsoft.VisualBasic.FileIO.UICancelOption onUserCancel) { }
1465         [System.MonoNotSupportedAttribute("")]
Ping(string hostNameOrAddress)1466         public bool Ping(string hostNameOrAddress) { throw null; }
1467         [System.MonoNotSupportedAttribute("")]
Ping(string hostNameOrAddress, int timeout)1468         public bool Ping(string hostNameOrAddress, int timeout) { throw null; }
1469         [System.MonoNotSupportedAttribute("")]
Ping(System.Uri address)1470         public bool Ping(System.Uri address) { throw null; }
1471         [System.MonoNotSupportedAttribute("")]
Ping(System.Uri address, int timeout)1472         public bool Ping(System.Uri address, int timeout) { throw null; }
UploadFile(string sourceFileName, string address)1473         public void UploadFile(string sourceFileName, string address) { }
UploadFile(string sourceFileName, string address, string userName, string password)1474         public void UploadFile(string sourceFileName, string address, string userName, string password) { }
UploadFile(string sourceFileName, string address, string userName, string password, bool showUI, int connectionTimeout)1475         public void UploadFile(string sourceFileName, string address, string userName, string password, bool showUI, int connectionTimeout) { }
UploadFile(string sourceFileName, string address, string userName, string password, bool showUI, int connectionTimeout, Microsoft.VisualBasic.FileIO.UICancelOption onUserCancel)1476         public void UploadFile(string sourceFileName, string address, string userName, string password, bool showUI, int connectionTimeout, Microsoft.VisualBasic.FileIO.UICancelOption onUserCancel) { }
UploadFile(string sourceFileName, System.Uri address)1477         public void UploadFile(string sourceFileName, System.Uri address) { }
UploadFile(string sourceFileName, System.Uri address, System.Net.ICredentials networkCredentials, bool showUI, int connectionTimeout)1478         public void UploadFile(string sourceFileName, System.Uri address, System.Net.ICredentials networkCredentials, bool showUI, int connectionTimeout) { }
UploadFile(string sourceFileName, System.Uri address, System.Net.ICredentials networkCredentials, bool showUI, int connectionTimeout, Microsoft.VisualBasic.FileIO.UICancelOption onUserCancel)1479         public void UploadFile(string sourceFileName, System.Uri address, System.Net.ICredentials networkCredentials, bool showUI, int connectionTimeout, Microsoft.VisualBasic.FileIO.UICancelOption onUserCancel) { }
UploadFile(string sourceFileName, System.Uri address, string userName, string password)1480         public void UploadFile(string sourceFileName, System.Uri address, string userName, string password) { }
UploadFile(string sourceFileName, System.Uri address, string userName, string password, bool showUI, int connectionTimeout)1481         public void UploadFile(string sourceFileName, System.Uri address, string userName, string password, bool showUI, int connectionTimeout) { }
UploadFile(string sourceFileName, System.Uri address, string userName, string password, bool showUI, int connectionTimeout, Microsoft.VisualBasic.FileIO.UICancelOption onUserCancel)1482         public void UploadFile(string sourceFileName, System.Uri address, string userName, string password, bool showUI, int connectionTimeout, Microsoft.VisualBasic.FileIO.UICancelOption onUserCancel) { }
1483     }
1484     public partial class NetworkAvailableEventArgs : System.EventArgs
1485     {
NetworkAvailableEventArgs(bool networkAvailable)1486         public NetworkAvailableEventArgs(bool networkAvailable) { }
1487         public bool IsNetworkAvailable { get { throw null; } }
1488     }
1489     [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(2))]
NetworkAvailableEventHandler(object sender, Microsoft.VisualBasic.Devices.NetworkAvailableEventArgs e)1490     public delegate void NetworkAvailableEventHandler(object sender, Microsoft.VisualBasic.Devices.NetworkAvailableEventArgs e);
1491     public partial class Ports
1492     {
Ports()1493         public Ports() { }
1494         public System.Collections.ObjectModel.ReadOnlyCollection<string> SerialPortNames { get { throw null; } }
OpenSerialPort(string portName)1495         public System.IO.Ports.SerialPort OpenSerialPort(string portName) { throw null; }
OpenSerialPort(string portName, int baudRate)1496         public System.IO.Ports.SerialPort OpenSerialPort(string portName, int baudRate) { throw null; }
OpenSerialPort(string portName, int baudRate, System.IO.Ports.Parity parity)1497         public System.IO.Ports.SerialPort OpenSerialPort(string portName, int baudRate, System.IO.Ports.Parity parity) { throw null; }
OpenSerialPort(string portName, int baudRate, System.IO.Ports.Parity parity, int dataBits)1498         public System.IO.Ports.SerialPort OpenSerialPort(string portName, int baudRate, System.IO.Ports.Parity parity, int dataBits) { throw null; }
OpenSerialPort(string portName, int baudRate, System.IO.Ports.Parity parity, int dataBits, System.IO.Ports.StopBits stopBits)1499         public System.IO.Ports.SerialPort OpenSerialPort(string portName, int baudRate, System.IO.Ports.Parity parity, int dataBits, System.IO.Ports.StopBits stopBits) { throw null; }
1500     }
1501     public partial class ServerComputer
1502     {
ServerComputer()1503         public ServerComputer() { }
1504         public Microsoft.VisualBasic.Devices.Clock Clock { get { throw null; } }
1505         public Microsoft.VisualBasic.MyServices.FileSystemProxy FileSystem { get { throw null; } }
1506         public Microsoft.VisualBasic.Devices.ComputerInfo Info { get { throw null; } }
1507         public string Name { get { throw null; } }
1508         public Microsoft.VisualBasic.Devices.Network Network { get { throw null; } }
1509         public Microsoft.VisualBasic.MyServices.RegistryProxy Registry { get { throw null; } }
1510     }
1511 }
1512 namespace Microsoft.VisualBasic.FileIO
1513 {
1514     public enum DeleteDirectoryOption
1515     {
1516         DeleteAllContents = 5,
1517         ThrowIfDirectoryNonEmpty = 4,
1518     }
1519     public enum FieldType
1520     {
1521         Delimited = 0,
1522         FixedWidth = 1,
1523     }
1524     public partial class FileSystem
1525     {
FileSystem()1526         public FileSystem() { }
1527         public static string CurrentDirectory { get { throw null; } set { } }
1528         public static System.Collections.ObjectModel.ReadOnlyCollection<System.IO.DriveInfo> Drives { get { throw null; } }
CombinePath(string baseDirectory, string relativePath)1529         public static string CombinePath(string baseDirectory, string relativePath) { throw null; }
CopyDirectory(string sourceDirectoryName, string destinationDirectoryName)1530         public static void CopyDirectory(string sourceDirectoryName, string destinationDirectoryName) { }
CopyDirectory(string sourceDirectoryName, string destinationDirectoryName, Microsoft.VisualBasic.FileIO.UIOption showUI)1531         public static void CopyDirectory(string sourceDirectoryName, string destinationDirectoryName, Microsoft.VisualBasic.FileIO.UIOption showUI) { }
CopyDirectory(string sourceDirectoryName, string destinationDirectoryName, Microsoft.VisualBasic.FileIO.UIOption showUI, Microsoft.VisualBasic.FileIO.UICancelOption onUserCancel)1532         public static void CopyDirectory(string sourceDirectoryName, string destinationDirectoryName, Microsoft.VisualBasic.FileIO.UIOption showUI, Microsoft.VisualBasic.FileIO.UICancelOption onUserCancel) { }
CopyDirectory(string sourceDirectoryName, string destinationDirectoryName, bool overwrite)1533         public static void CopyDirectory(string sourceDirectoryName, string destinationDirectoryName, bool overwrite) { }
CopyFile(string sourceFileName, string destinationFileName)1534         public static void CopyFile(string sourceFileName, string destinationFileName) { }
CopyFile(string sourceFileName, string destinationFileName, Microsoft.VisualBasic.FileIO.UIOption showUI)1535         public static void CopyFile(string sourceFileName, string destinationFileName, Microsoft.VisualBasic.FileIO.UIOption showUI) { }
CopyFile(string sourceFileName, string destinationFileName, Microsoft.VisualBasic.FileIO.UIOption showUI, Microsoft.VisualBasic.FileIO.UICancelOption onUserCancel)1536         public static void CopyFile(string sourceFileName, string destinationFileName, Microsoft.VisualBasic.FileIO.UIOption showUI, Microsoft.VisualBasic.FileIO.UICancelOption onUserCancel) { }
CopyFile(string sourceFileName, string destinationFileName, bool overwrite)1537         public static void CopyFile(string sourceFileName, string destinationFileName, bool overwrite) { }
CreateDirectory(string directory)1538         public static void CreateDirectory(string directory) { }
DeleteDirectory(string directory, Microsoft.VisualBasic.FileIO.DeleteDirectoryOption onDirectoryNotEmpty)1539         public static void DeleteDirectory(string directory, Microsoft.VisualBasic.FileIO.DeleteDirectoryOption onDirectoryNotEmpty) { }
DeleteDirectory(string directory, Microsoft.VisualBasic.FileIO.UIOption showUI, Microsoft.VisualBasic.FileIO.RecycleOption recycle)1540         public static void DeleteDirectory(string directory, Microsoft.VisualBasic.FileIO.UIOption showUI, Microsoft.VisualBasic.FileIO.RecycleOption recycle) { }
DeleteDirectory(string directory, Microsoft.VisualBasic.FileIO.UIOption showUI, Microsoft.VisualBasic.FileIO.RecycleOption recycle, Microsoft.VisualBasic.FileIO.UICancelOption onUserCancel)1541         public static void DeleteDirectory(string directory, Microsoft.VisualBasic.FileIO.UIOption showUI, Microsoft.VisualBasic.FileIO.RecycleOption recycle, Microsoft.VisualBasic.FileIO.UICancelOption onUserCancel) { }
DeleteFile(string file)1542         public static void DeleteFile(string file) { }
DeleteFile(string file, Microsoft.VisualBasic.FileIO.UIOption showUI, Microsoft.VisualBasic.FileIO.RecycleOption recycle)1543         public static void DeleteFile(string file, Microsoft.VisualBasic.FileIO.UIOption showUI, Microsoft.VisualBasic.FileIO.RecycleOption recycle) { }
DeleteFile(string file, Microsoft.VisualBasic.FileIO.UIOption showUI, Microsoft.VisualBasic.FileIO.RecycleOption recycle, Microsoft.VisualBasic.FileIO.UICancelOption onUserCancel)1544         public static void DeleteFile(string file, Microsoft.VisualBasic.FileIO.UIOption showUI, Microsoft.VisualBasic.FileIO.RecycleOption recycle, Microsoft.VisualBasic.FileIO.UICancelOption onUserCancel) { }
DirectoryExists(string directory)1545         public static bool DirectoryExists(string directory) { throw null; }
FileExists(string file)1546         public static bool FileExists(string file) { throw null; }
FindInFiles(string directory, string containsText, bool ignoreCase, Microsoft.VisualBasic.FileIO.SearchOption searchType)1547         public static System.Collections.ObjectModel.ReadOnlyCollection<string> FindInFiles(string directory, string containsText, bool ignoreCase, Microsoft.VisualBasic.FileIO.SearchOption searchType) { throw null; }
FindInFiles(string directory, string containsText, bool ignoreCase, Microsoft.VisualBasic.FileIO.SearchOption searchType, params string[] fileWildcards)1548         public static System.Collections.ObjectModel.ReadOnlyCollection<string> FindInFiles(string directory, string containsText, bool ignoreCase, Microsoft.VisualBasic.FileIO.SearchOption searchType, params string[] fileWildcards) { throw null; }
GetDirectories(string directory)1549         public static System.Collections.ObjectModel.ReadOnlyCollection<string> GetDirectories(string directory) { throw null; }
GetDirectories(string directory, Microsoft.VisualBasic.FileIO.SearchOption searchType, params string[] wildcards)1550         public static System.Collections.ObjectModel.ReadOnlyCollection<string> GetDirectories(string directory, Microsoft.VisualBasic.FileIO.SearchOption searchType, params string[] wildcards) { throw null; }
GetDirectoryInfo(string directory)1551         public static System.IO.DirectoryInfo GetDirectoryInfo(string directory) { throw null; }
GetDriveInfo(string drive)1552         public static System.IO.DriveInfo GetDriveInfo(string drive) { throw null; }
GetFileInfo(string file)1553         public static System.IO.FileInfo GetFileInfo(string file) { throw null; }
GetFiles(string directory)1554         public static System.Collections.ObjectModel.ReadOnlyCollection<string> GetFiles(string directory) { throw null; }
GetFiles(string directory, Microsoft.VisualBasic.FileIO.SearchOption searchType, params string[] wildcards)1555         public static System.Collections.ObjectModel.ReadOnlyCollection<string> GetFiles(string directory, Microsoft.VisualBasic.FileIO.SearchOption searchType, params string[] wildcards) { throw null; }
GetName(string path)1556         public static string GetName(string path) { throw null; }
GetParentPath(string path)1557         public static string GetParentPath(string path) { throw null; }
GetTempFileName()1558         public static string GetTempFileName() { throw null; }
MoveDirectory(string sourceDirectoryName, string destinationDirectoryName)1559         public static void MoveDirectory(string sourceDirectoryName, string destinationDirectoryName) { }
MoveDirectory(string sourceDirectoryName, string destinationDirectoryName, Microsoft.VisualBasic.FileIO.UIOption showUI)1560         public static void MoveDirectory(string sourceDirectoryName, string destinationDirectoryName, Microsoft.VisualBasic.FileIO.UIOption showUI) { }
MoveDirectory(string sourceDirectoryName, string destinationDirectoryName, Microsoft.VisualBasic.FileIO.UIOption showUI, Microsoft.VisualBasic.FileIO.UICancelOption onUserCancel)1561         public static void MoveDirectory(string sourceDirectoryName, string destinationDirectoryName, Microsoft.VisualBasic.FileIO.UIOption showUI, Microsoft.VisualBasic.FileIO.UICancelOption onUserCancel) { }
MoveDirectory(string sourceDirectoryName, string destinationDirectoryName, bool overwrite)1562         public static void MoveDirectory(string sourceDirectoryName, string destinationDirectoryName, bool overwrite) { }
MoveFile(string sourceFileName, string destinationFileName)1563         public static void MoveFile(string sourceFileName, string destinationFileName) { }
MoveFile(string sourceFileName, string destinationFileName, Microsoft.VisualBasic.FileIO.UIOption showUI)1564         public static void MoveFile(string sourceFileName, string destinationFileName, Microsoft.VisualBasic.FileIO.UIOption showUI) { }
MoveFile(string sourceFileName, string destinationFileName, Microsoft.VisualBasic.FileIO.UIOption showUI, Microsoft.VisualBasic.FileIO.UICancelOption onUserCancel)1565         public static void MoveFile(string sourceFileName, string destinationFileName, Microsoft.VisualBasic.FileIO.UIOption showUI, Microsoft.VisualBasic.FileIO.UICancelOption onUserCancel) { }
MoveFile(string sourceFileName, string destinationFileName, bool overwrite)1566         public static void MoveFile(string sourceFileName, string destinationFileName, bool overwrite) { }
OpenTextFieldParser(string file)1567         public static Microsoft.VisualBasic.FileIO.TextFieldParser OpenTextFieldParser(string file) { throw null; }
OpenTextFieldParser(string file, params int[] fieldWidths)1568         public static Microsoft.VisualBasic.FileIO.TextFieldParser OpenTextFieldParser(string file, params int[] fieldWidths) { throw null; }
OpenTextFieldParser(string file, params string[] delimiters)1569         public static Microsoft.VisualBasic.FileIO.TextFieldParser OpenTextFieldParser(string file, params string[] delimiters) { throw null; }
OpenTextFileReader(string file)1570         public static System.IO.StreamReader OpenTextFileReader(string file) { throw null; }
OpenTextFileReader(string file, System.Text.Encoding encoding)1571         public static System.IO.StreamReader OpenTextFileReader(string file, System.Text.Encoding encoding) { throw null; }
OpenTextFileWriter(string file, bool append)1572         public static System.IO.StreamWriter OpenTextFileWriter(string file, bool append) { throw null; }
OpenTextFileWriter(string file, bool append, System.Text.Encoding encoding)1573         public static System.IO.StreamWriter OpenTextFileWriter(string file, bool append, System.Text.Encoding encoding) { throw null; }
ReadAllBytes(string file)1574         public static byte[] ReadAllBytes(string file) { throw null; }
ReadAllText(string file)1575         public static string ReadAllText(string file) { throw null; }
ReadAllText(string file, System.Text.Encoding encoding)1576         public static string ReadAllText(string file, System.Text.Encoding encoding) { throw null; }
RenameDirectory(string directory, string newName)1577         public static void RenameDirectory(string directory, string newName) { }
RenameFile(string file, string newName)1578         public static void RenameFile(string file, string newName) { }
WriteAllBytes(string file, byte[] data, bool append)1579         public static void WriteAllBytes(string file, byte[] data, bool append) { }
WriteAllText(string file, string text, bool append)1580         public static void WriteAllText(string file, string text, bool append) { }
WriteAllText(string file, string text, bool append, System.Text.Encoding encoding)1581         public static void WriteAllText(string file, string text, bool append, System.Text.Encoding encoding) { }
1582     }
1583     [System.SerializableAttribute]
1584     public partial class MalformedLineException : System.Exception
1585     {
MalformedLineException()1586         public MalformedLineException() { }
1587         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(2))]
MalformedLineException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context)1588         protected MalformedLineException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { }
MalformedLineException(string message)1589         public MalformedLineException(string message) { }
MalformedLineException(string message, System.Exception innerException)1590         public MalformedLineException(string message, System.Exception innerException) { }
MalformedLineException(string message, long lineNumber)1591         public MalformedLineException(string message, long lineNumber) { }
MalformedLineException(string message, long lineNumber, System.Exception innerException)1592         public MalformedLineException(string message, long lineNumber, System.Exception innerException) { }
1593         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(0))]
1594         public long LineNumber { get { throw null; } set { } }
1595         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(2))]
1596         [System.Security.SecurityCriticalAttribute]
1597         [System.Security.Permissions.SecurityPermissionAttribute(System.Security.Permissions.SecurityAction.Demand, SerializationFormatter=true)]
GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context)1598         public override void GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { }
ToString()1599         public override string ToString() { throw null; }
1600     }
1601     public enum RecycleOption
1602     {
1603         DeletePermanently = 2,
1604         SendToRecycleBin = 3,
1605     }
1606     public enum SearchOption
1607     {
1608         SearchAllSubDirectories = 3,
1609         SearchTopLevelOnly = 2,
1610     }
1611     public partial class SpecialDirectories
1612     {
SpecialDirectories()1613         public SpecialDirectories() { }
1614         public static string AllUsersApplicationData { get { throw null; } }
1615         public static string CurrentUserApplicationData { get { throw null; } }
1616         public static string Desktop { get { throw null; } }
1617         public static string MyDocuments { get { throw null; } }
1618         public static string MyMusic { get { throw null; } }
1619         public static string MyPictures { get { throw null; } }
1620         public static string ProgramFiles { get { throw null; } }
1621         public static string Programs { get { throw null; } }
1622         public static string Temp { get { throw null; } }
1623     }
1624     public partial class TextFieldParser : System.IDisposable
1625     {
TextFieldParser(System.IO.Stream stream)1626         public TextFieldParser(System.IO.Stream stream) { }
TextFieldParser(System.IO.Stream stream, System.Text.Encoding defaultEncoding)1627         public TextFieldParser(System.IO.Stream stream, System.Text.Encoding defaultEncoding) { }
TextFieldParser(System.IO.Stream stream, System.Text.Encoding defaultEncoding, bool detectEncoding)1628         public TextFieldParser(System.IO.Stream stream, System.Text.Encoding defaultEncoding, bool detectEncoding) { }
TextFieldParser(System.IO.Stream stream, System.Text.Encoding defaultEncoding, bool detectEncoding, bool leaveOpen)1629         public TextFieldParser(System.IO.Stream stream, System.Text.Encoding defaultEncoding, bool detectEncoding, bool leaveOpen) { }
TextFieldParser(System.IO.TextReader reader)1630         public TextFieldParser(System.IO.TextReader reader) { }
TextFieldParser(string path)1631         public TextFieldParser(string path) { }
TextFieldParser(string path, System.Text.Encoding defaultEncoding)1632         public TextFieldParser(string path, System.Text.Encoding defaultEncoding) { }
TextFieldParser(string path, System.Text.Encoding defaultEncoding, bool detectEncoding)1633         public TextFieldParser(string path, System.Text.Encoding defaultEncoding, bool detectEncoding) { }
1634         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(2))]
1635         public string[] CommentTokens { get { throw null; } set { } }
1636         public string[] Delimiters { get { throw null; } set { } }
1637         public bool EndOfData { get { throw null; } }
1638         public string ErrorLine { get { throw null; } }
1639         public long ErrorLineNumber { get { throw null; } }
1640         public int[] FieldWidths { get { throw null; } set { } }
1641         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(2))]
1642         public bool HasFieldsEnclosedInQuotes { get { throw null; } set { } }
1643         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(2))]
1644         public long LineNumber { get { throw null; } }
1645         public Microsoft.VisualBasic.FileIO.FieldType TextFieldType { get { throw null; } set { } }
1646         public bool TrimWhiteSpace { get { throw null; } set { } }
Close()1647         public void Close() { }
Dispose()1648         public void Dispose() { }
Dispose(bool disposing)1649         protected virtual void Dispose(bool disposing) { }
~TextFieldParser()1650         ~TextFieldParser() { }
PeekChars(int numberOfChars)1651         public string PeekChars(int numberOfChars) { throw null; }
ReadFields()1652         public string[] ReadFields() { throw null; }
1653         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(2))]
ReadLine()1654         public string ReadLine() { throw null; }
1655         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(2))]
ReadToEnd()1656         public string ReadToEnd() { throw null; }
SetDelimiters(params string[] delimiters)1657         public void SetDelimiters(params string[] delimiters) { }
SetFieldWidths(params int[] fieldWidths)1658         public void SetFieldWidths(params int[] fieldWidths) { }
1659     }
1660     public enum UICancelOption
1661     {
1662         DoNothing = 2,
1663         ThrowException = 3,
1664     }
1665     public enum UIOption
1666     {
1667         AllDialogs = 3,
1668         OnlyErrorDialogs = 2,
1669     }
1670 }
1671 namespace Microsoft.VisualBasic.Logging
1672 {
1673     public partial class AspLog : Microsoft.VisualBasic.Logging.Log
1674     {
AspLog()1675         public AspLog() { }
AspLog(string name)1676         public AspLog(string name) { }
InitializeWithDefaultsSinceNoConfigExists()1677         protected internal override void InitializeWithDefaultsSinceNoConfigExists() { }
1678     }
1679     public enum DiskSpaceExhaustedOption
1680     {
1681         DiscardMessages = 1,
1682         ThrowException = 0,
1683     }
1684     [System.Runtime.InteropServices.ComVisibleAttribute(false)]
1685     public partial class FileLogTraceListener : System.Diagnostics.TraceListener
1686     {
FileLogTraceListener()1687         public FileLogTraceListener() { }
FileLogTraceListener(string name)1688         public FileLogTraceListener(string name) { }
1689         public bool Append { get { throw null; } set { } }
1690         public bool AutoFlush { get { throw null; } set { } }
1691         public string BaseFileName { get { throw null; } set { } }
1692         public string CustomLocation { get { throw null; } set { } }
1693         public string Delimiter { get { throw null; } set { } }
1694         public Microsoft.VisualBasic.Logging.DiskSpaceExhaustedOption DiskSpaceExhaustedBehavior { get { throw null; } set { } }
1695         public System.Text.Encoding Encoding { get { throw null; } set { } }
1696         public string FullLogFileName { get { throw null; } }
1697         public bool IncludeHostName { get { throw null; } set { } }
1698         public Microsoft.VisualBasic.Logging.LogFileLocation Location { get { throw null; } set { } }
1699         public Microsoft.VisualBasic.Logging.LogFileCreationScheduleOption LogFileCreationSchedule { get { throw null; } set { } }
1700         public long MaxFileSize { get { throw null; } set { } }
1701         public long ReserveDiskSpace { get { throw null; } set { } }
Close()1702         public override void Close() { }
Dispose(bool disposing)1703         protected override void Dispose(bool disposing) { }
Flush()1704         public override void Flush() { }
GetSupportedAttributes()1705         protected override string[] GetSupportedAttributes() { throw null; }
TraceData(System.Diagnostics.TraceEventCache eventCache, string source, System.Diagnostics.TraceEventType eventType, int id, object data)1706         public override void TraceData(System.Diagnostics.TraceEventCache eventCache, string source, System.Diagnostics.TraceEventType eventType, int id, object data) { }
TraceData(System.Diagnostics.TraceEventCache eventCache, string source, System.Diagnostics.TraceEventType eventType, int id, params object[] data)1707         public override void TraceData(System.Diagnostics.TraceEventCache eventCache, string source, System.Diagnostics.TraceEventType eventType, int id, params object[] data) { }
TraceEvent(System.Diagnostics.TraceEventCache eventCache, string source, System.Diagnostics.TraceEventType eventType, int id, string message)1708         public override void TraceEvent(System.Diagnostics.TraceEventCache eventCache, string source, System.Diagnostics.TraceEventType eventType, int id, string message) { }
TraceEvent(System.Diagnostics.TraceEventCache eventCache, string source, System.Diagnostics.TraceEventType eventType, int id, string format, params object[] args)1709         public override void TraceEvent(System.Diagnostics.TraceEventCache eventCache, string source, System.Diagnostics.TraceEventType eventType, int id, string format, params object[] args) { }
Write(string message)1710         public override void Write(string message) { }
WriteLine(string message)1711         public override void WriteLine(string message) { }
1712     }
1713     public partial class Log
1714     {
Log()1715         public Log() { }
Log(string name)1716         public Log(string name) { }
1717         public Microsoft.VisualBasic.Logging.FileLogTraceListener DefaultFileLogWriter { get { throw null; } }
1718         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(2))]
1719         public System.Diagnostics.TraceSource TraceSource { get { throw null; } }
InitializeWithDefaultsSinceNoConfigExists()1720         protected internal virtual void InitializeWithDefaultsSinceNoConfigExists() { }
WriteEntry(string message)1721         public void WriteEntry(string message) { }
WriteEntry(string message, System.Diagnostics.TraceEventType severity)1722         public void WriteEntry(string message, System.Diagnostics.TraceEventType severity) { }
WriteEntry(string message, System.Diagnostics.TraceEventType severity, int id)1723         public void WriteEntry(string message, System.Diagnostics.TraceEventType severity, int id) { }
WriteException(System.Exception ex)1724         public void WriteException(System.Exception ex) { }
WriteException(System.Exception ex, System.Diagnostics.TraceEventType severity, string additionalInfo)1725         public void WriteException(System.Exception ex, System.Diagnostics.TraceEventType severity, string additionalInfo) { }
WriteException(System.Exception ex, System.Diagnostics.TraceEventType severity, string additionalInfo, int id)1726         public void WriteException(System.Exception ex, System.Diagnostics.TraceEventType severity, string additionalInfo, int id) { }
1727     }
1728     public enum LogFileCreationScheduleOption
1729     {
1730         Daily = 1,
1731         None = 0,
1732         Weekly = 2,
1733     }
1734     public enum LogFileLocation
1735     {
1736         CommonApplicationDirectory = 2,
1737         Custom = 4,
1738         ExecutableDirectory = 3,
1739         LocalUserApplicationDirectory = 1,
1740         TempDirectory = 0,
1741     }
1742 }
1743 namespace Microsoft.VisualBasic.MyServices
1744 {
1745     [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
1746     public partial class ClipboardProxy
1747     {
ClipboardProxy()1748         internal ClipboardProxy() { }
Clear()1749         public void Clear() { }
ContainsAudio()1750         public bool ContainsAudio() { throw null; }
ContainsData(string format)1751         public bool ContainsData(string format) { throw null; }
ContainsFileDropList()1752         public bool ContainsFileDropList() { throw null; }
ContainsImage()1753         public bool ContainsImage() { throw null; }
ContainsText()1754         public bool ContainsText() { throw null; }
ContainsText(System.Windows.Forms.TextDataFormat format)1755         public bool ContainsText(System.Windows.Forms.TextDataFormat format) { throw null; }
GetAudioStream()1756         public System.IO.Stream GetAudioStream() { throw null; }
GetData(string format)1757         public object GetData(string format) { throw null; }
1758         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(2))]
GetDataObject()1759         public System.Windows.Forms.IDataObject GetDataObject() { throw null; }
GetFileDropList()1760         public System.Collections.Specialized.StringCollection GetFileDropList() { throw null; }
GetImage()1761         public System.Drawing.Image GetImage() { throw null; }
GetText()1762         public string GetText() { throw null; }
GetText(System.Windows.Forms.TextDataFormat format)1763         public string GetText(System.Windows.Forms.TextDataFormat format) { throw null; }
SetAudio(byte[] audioBytes)1764         public void SetAudio(byte[] audioBytes) { }
SetAudio(System.IO.Stream audioStream)1765         public void SetAudio(System.IO.Stream audioStream) { }
SetData(string format, object data)1766         public void SetData(string format, object data) { }
1767         [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(2))]
SetDataObject(System.Windows.Forms.DataObject data)1768         public void SetDataObject(System.Windows.Forms.DataObject data) { }
SetFileDropList(System.Collections.Specialized.StringCollection filePaths)1769         public void SetFileDropList(System.Collections.Specialized.StringCollection filePaths) { }
SetImage(System.Drawing.Image image)1770         public void SetImage(System.Drawing.Image image) { }
SetText(string text)1771         public void SetText(string text) { }
SetText(string text, System.Windows.Forms.TextDataFormat format)1772         public void SetText(string text, System.Windows.Forms.TextDataFormat format) { }
1773     }
1774     [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
1775     public partial class FileSystemProxy
1776     {
FileSystemProxy()1777         internal FileSystemProxy() { }
1778         public string CurrentDirectory { get { throw null; } set { } }
1779         public System.Collections.ObjectModel.ReadOnlyCollection<System.IO.DriveInfo> Drives { get { throw null; } }
1780         public Microsoft.VisualBasic.MyServices.SpecialDirectoriesProxy SpecialDirectories { get { throw null; } }
CombinePath(string baseDirectory, string relativePath)1781         public string CombinePath(string baseDirectory, string relativePath) { throw null; }
CopyDirectory(string sourceDirectoryName, string destinationDirectoryName)1782         public void CopyDirectory(string sourceDirectoryName, string destinationDirectoryName) { }
CopyDirectory(string sourceDirectoryName, string destinationDirectoryName, Microsoft.VisualBasic.FileIO.UIOption showUI)1783         public void CopyDirectory(string sourceDirectoryName, string destinationDirectoryName, Microsoft.VisualBasic.FileIO.UIOption showUI) { }
CopyDirectory(string sourceDirectoryName, string destinationDirectoryName, Microsoft.VisualBasic.FileIO.UIOption showUI, Microsoft.VisualBasic.FileIO.UICancelOption onUserCancel)1784         public void CopyDirectory(string sourceDirectoryName, string destinationDirectoryName, Microsoft.VisualBasic.FileIO.UIOption showUI, Microsoft.VisualBasic.FileIO.UICancelOption onUserCancel) { }
CopyDirectory(string sourceDirectoryName, string destinationDirectoryName, bool overwrite)1785         public void CopyDirectory(string sourceDirectoryName, string destinationDirectoryName, bool overwrite) { }
CopyFile(string sourceFileName, string destinationFileName)1786         public void CopyFile(string sourceFileName, string destinationFileName) { }
CopyFile(string sourceFileName, string destinationFileName, Microsoft.VisualBasic.FileIO.UIOption showUI)1787         public void CopyFile(string sourceFileName, string destinationFileName, Microsoft.VisualBasic.FileIO.UIOption showUI) { }
CopyFile(string sourceFileName, string destinationFileName, Microsoft.VisualBasic.FileIO.UIOption showUI, Microsoft.VisualBasic.FileIO.UICancelOption onUserCancel)1788         public void CopyFile(string sourceFileName, string destinationFileName, Microsoft.VisualBasic.FileIO.UIOption showUI, Microsoft.VisualBasic.FileIO.UICancelOption onUserCancel) { }
CopyFile(string sourceFileName, string destinationFileName, bool overwrite)1789         public void CopyFile(string sourceFileName, string destinationFileName, bool overwrite) { }
CreateDirectory(string directory)1790         public void CreateDirectory(string directory) { }
DeleteDirectory(string directory, Microsoft.VisualBasic.FileIO.DeleteDirectoryOption onDirectoryNotEmpty)1791         public void DeleteDirectory(string directory, Microsoft.VisualBasic.FileIO.DeleteDirectoryOption onDirectoryNotEmpty) { }
DeleteDirectory(string directory, Microsoft.VisualBasic.FileIO.UIOption showUI, Microsoft.VisualBasic.FileIO.RecycleOption recycle)1792         public void DeleteDirectory(string directory, Microsoft.VisualBasic.FileIO.UIOption showUI, Microsoft.VisualBasic.FileIO.RecycleOption recycle) { }
DeleteDirectory(string directory, Microsoft.VisualBasic.FileIO.UIOption showUI, Microsoft.VisualBasic.FileIO.RecycleOption recycle, Microsoft.VisualBasic.FileIO.UICancelOption onUserCancel)1793         public void DeleteDirectory(string directory, Microsoft.VisualBasic.FileIO.UIOption showUI, Microsoft.VisualBasic.FileIO.RecycleOption recycle, Microsoft.VisualBasic.FileIO.UICancelOption onUserCancel) { }
DeleteFile(string file)1794         public void DeleteFile(string file) { }
DeleteFile(string file, Microsoft.VisualBasic.FileIO.UIOption showUI, Microsoft.VisualBasic.FileIO.RecycleOption recycle)1795         public void DeleteFile(string file, Microsoft.VisualBasic.FileIO.UIOption showUI, Microsoft.VisualBasic.FileIO.RecycleOption recycle) { }
DeleteFile(string file, Microsoft.VisualBasic.FileIO.UIOption showUI, Microsoft.VisualBasic.FileIO.RecycleOption recycle, Microsoft.VisualBasic.FileIO.UICancelOption onUserCancel)1796         public void DeleteFile(string file, Microsoft.VisualBasic.FileIO.UIOption showUI, Microsoft.VisualBasic.FileIO.RecycleOption recycle, Microsoft.VisualBasic.FileIO.UICancelOption onUserCancel) { }
DirectoryExists(string directory)1797         public bool DirectoryExists(string directory) { throw null; }
FileExists(string file)1798         public bool FileExists(string file) { throw null; }
FindInFiles(string directory, string containsText, bool ignoreCase, Microsoft.VisualBasic.FileIO.SearchOption searchType)1799         public System.Collections.ObjectModel.ReadOnlyCollection<string> FindInFiles(string directory, string containsText, bool ignoreCase, Microsoft.VisualBasic.FileIO.SearchOption searchType) { throw null; }
FindInFiles(string directory, string containsText, bool ignoreCase, Microsoft.VisualBasic.FileIO.SearchOption searchType, params string[] fileWildcards)1800         public System.Collections.ObjectModel.ReadOnlyCollection<string> FindInFiles(string directory, string containsText, bool ignoreCase, Microsoft.VisualBasic.FileIO.SearchOption searchType, params string[] fileWildcards) { throw null; }
GetDirectories(string directory)1801         public System.Collections.ObjectModel.ReadOnlyCollection<string> GetDirectories(string directory) { throw null; }
GetDirectories(string directory, Microsoft.VisualBasic.FileIO.SearchOption searchType, params string[] wildcards)1802         public System.Collections.ObjectModel.ReadOnlyCollection<string> GetDirectories(string directory, Microsoft.VisualBasic.FileIO.SearchOption searchType, params string[] wildcards) { throw null; }
GetDirectoryInfo(string directory)1803         public System.IO.DirectoryInfo GetDirectoryInfo(string directory) { throw null; }
GetDriveInfo(string drive)1804         public System.IO.DriveInfo GetDriveInfo(string drive) { throw null; }
GetFileInfo(string file)1805         public System.IO.FileInfo GetFileInfo(string file) { throw null; }
GetFiles(string directory)1806         public System.Collections.ObjectModel.ReadOnlyCollection<string> GetFiles(string directory) { throw null; }
GetFiles(string directory, Microsoft.VisualBasic.FileIO.SearchOption searchType, params string[] wildcards)1807         public System.Collections.ObjectModel.ReadOnlyCollection<string> GetFiles(string directory, Microsoft.VisualBasic.FileIO.SearchOption searchType, params string[] wildcards) { throw null; }
GetName(string path)1808         public string GetName(string path) { throw null; }
GetParentPath(string path)1809         public string GetParentPath(string path) { throw null; }
GetTempFileName()1810         public string GetTempFileName() { throw null; }
MoveDirectory(string sourceDirectoryName, string destinationDirectoryName)1811         public void MoveDirectory(string sourceDirectoryName, string destinationDirectoryName) { }
MoveDirectory(string sourceDirectoryName, string destinationDirectoryName, Microsoft.VisualBasic.FileIO.UIOption showUI)1812         public void MoveDirectory(string sourceDirectoryName, string destinationDirectoryName, Microsoft.VisualBasic.FileIO.UIOption showUI) { }
MoveDirectory(string sourceDirectoryName, string destinationDirectoryName, Microsoft.VisualBasic.FileIO.UIOption showUI, Microsoft.VisualBasic.FileIO.UICancelOption onUserCancel)1813         public void MoveDirectory(string sourceDirectoryName, string destinationDirectoryName, Microsoft.VisualBasic.FileIO.UIOption showUI, Microsoft.VisualBasic.FileIO.UICancelOption onUserCancel) { }
MoveDirectory(string sourceDirectoryName, string destinationDirectoryName, bool overwrite)1814         public void MoveDirectory(string sourceDirectoryName, string destinationDirectoryName, bool overwrite) { }
MoveFile(string sourceFileName, string destinationFileName)1815         public void MoveFile(string sourceFileName, string destinationFileName) { }
MoveFile(string sourceFileName, string destinationFileName, Microsoft.VisualBasic.FileIO.UIOption showUI)1816         public void MoveFile(string sourceFileName, string destinationFileName, Microsoft.VisualBasic.FileIO.UIOption showUI) { }
MoveFile(string sourceFileName, string destinationFileName, Microsoft.VisualBasic.FileIO.UIOption showUI, Microsoft.VisualBasic.FileIO.UICancelOption onUserCancel)1817         public void MoveFile(string sourceFileName, string destinationFileName, Microsoft.VisualBasic.FileIO.UIOption showUI, Microsoft.VisualBasic.FileIO.UICancelOption onUserCancel) { }
MoveFile(string sourceFileName, string destinationFileName, bool overwrite)1818         public void MoveFile(string sourceFileName, string destinationFileName, bool overwrite) { }
OpenTextFieldParser(string file)1819         public Microsoft.VisualBasic.FileIO.TextFieldParser OpenTextFieldParser(string file) { throw null; }
OpenTextFieldParser(string file, params int[] fieldWidths)1820         public Microsoft.VisualBasic.FileIO.TextFieldParser OpenTextFieldParser(string file, params int[] fieldWidths) { throw null; }
OpenTextFieldParser(string file, params string[] delimiters)1821         public Microsoft.VisualBasic.FileIO.TextFieldParser OpenTextFieldParser(string file, params string[] delimiters) { throw null; }
OpenTextFileReader(string file)1822         public System.IO.StreamReader OpenTextFileReader(string file) { throw null; }
OpenTextFileReader(string file, System.Text.Encoding encoding)1823         public System.IO.StreamReader OpenTextFileReader(string file, System.Text.Encoding encoding) { throw null; }
OpenTextFileWriter(string file, bool append)1824         public System.IO.StreamWriter OpenTextFileWriter(string file, bool append) { throw null; }
OpenTextFileWriter(string file, bool append, System.Text.Encoding encoding)1825         public System.IO.StreamWriter OpenTextFileWriter(string file, bool append, System.Text.Encoding encoding) { throw null; }
ReadAllBytes(string file)1826         public byte[] ReadAllBytes(string file) { throw null; }
ReadAllText(string file)1827         public string ReadAllText(string file) { throw null; }
ReadAllText(string file, System.Text.Encoding encoding)1828         public string ReadAllText(string file, System.Text.Encoding encoding) { throw null; }
RenameDirectory(string directory, string newName)1829         public void RenameDirectory(string directory, string newName) { }
RenameFile(string file, string newName)1830         public void RenameFile(string file, string newName) { }
WriteAllBytes(string file, byte[] data, bool append)1831         public void WriteAllBytes(string file, byte[] data, bool append) { }
WriteAllText(string file, string text, bool append)1832         public void WriteAllText(string file, string text, bool append) { }
WriteAllText(string file, string text, bool append, System.Text.Encoding encoding)1833         public void WriteAllText(string file, string text, bool append, System.Text.Encoding encoding) { }
1834     }
1835     [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
1836     public partial class RegistryProxy
1837     {
RegistryProxy()1838         internal RegistryProxy() { }
1839         public Microsoft.Win32.RegistryKey ClassesRoot { get { throw null; } }
1840         public Microsoft.Win32.RegistryKey CurrentConfig { get { throw null; } }
1841         public Microsoft.Win32.RegistryKey CurrentUser { get { throw null; } }
1842         public Microsoft.Win32.RegistryKey DynData { get { throw null; } }
1843         public Microsoft.Win32.RegistryKey LocalMachine { get { throw null; } }
1844         public Microsoft.Win32.RegistryKey PerformanceData { get { throw null; } }
1845         public Microsoft.Win32.RegistryKey Users { get { throw null; } }
GetValue(string keyName, string valueName, object defaultValue)1846         public object GetValue(string keyName, string valueName, object defaultValue) { throw null; }
SetValue(string keyName, string valueName, object value)1847         public void SetValue(string keyName, string valueName, object value) { }
SetValue(string keyName, string valueName, object value, Microsoft.Win32.RegistryValueKind valueKind)1848         public void SetValue(string keyName, string valueName, object value, Microsoft.Win32.RegistryValueKind valueKind) { }
1849     }
1850     [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
1851     public partial class SpecialDirectoriesProxy
1852     {
SpecialDirectoriesProxy()1853         internal SpecialDirectoriesProxy() { }
1854         public string AllUsersApplicationData { get { throw null; } }
1855         public string CurrentUserApplicationData { get { throw null; } }
1856         public string Desktop { get { throw null; } }
1857         public string MyDocuments { get { throw null; } }
1858         public string MyMusic { get { throw null; } }
1859         public string MyPictures { get { throw null; } }
1860         public string ProgramFiles { get { throw null; } }
1861         public string Programs { get { throw null; } }
1862         public string Temp { get { throw null; } }
1863     }
1864 }
1865 namespace Microsoft.VisualBasic.MyServices.Internal
1866 {
1867     [System.ComponentModel.EditorBrowsableAttribute((System.ComponentModel.EditorBrowsableState)(1))]
1868     public partial class ContextValue<T>
1869     {
ContextValue()1870         public ContextValue() { }
1871         public T Value { get { throw null; } set { } }
1872     }
1873 }
1874 namespace System
1875 {
1876     [System.AttributeUsageAttribute((System.AttributeTargets)(32767))]
1877     internal partial class MonoDocumentationNoteAttribute : System.MonoTODOAttribute
1878     {
MonoDocumentationNoteAttribute(string comment)1879         public MonoDocumentationNoteAttribute(string comment) { }
1880     }
1881     [System.AttributeUsageAttribute((System.AttributeTargets)(32767))]
1882     internal partial class MonoExtensionAttribute : System.MonoTODOAttribute
1883     {
MonoExtensionAttribute(string comment)1884         public MonoExtensionAttribute(string comment) { }
1885     }
1886     [System.AttributeUsageAttribute((System.AttributeTargets)(32767))]
1887     internal partial class MonoInternalNoteAttribute : System.MonoTODOAttribute
1888     {
MonoInternalNoteAttribute(string comment)1889         public MonoInternalNoteAttribute(string comment) { }
1890     }
1891     [System.AttributeUsageAttribute((System.AttributeTargets)(32767))]
1892     internal partial class MonoLimitationAttribute : System.MonoTODOAttribute
1893     {
MonoLimitationAttribute(string comment)1894         public MonoLimitationAttribute(string comment) { }
1895     }
1896     [System.AttributeUsageAttribute((System.AttributeTargets)(32767))]
1897     internal partial class MonoNotSupportedAttribute : System.MonoTODOAttribute
1898     {
MonoNotSupportedAttribute(string comment)1899         public MonoNotSupportedAttribute(string comment) { }
1900     }
1901     [System.AttributeUsageAttribute((System.AttributeTargets)(32767))]
1902     internal partial class MonoTODOAttribute : System.Attribute
1903     {
MonoTODOAttribute()1904         public MonoTODOAttribute() { }
MonoTODOAttribute(string comment)1905         public MonoTODOAttribute(string comment) { }
1906         public string Comment { get { throw null; } }
1907     }
1908 }
1909