cf6848237fc35c92a3ac530fe5cabac78c91ee19
[platform/core/csapi/tizenfx.git] / pkg / Tizen.NET.API11 / build / tizen11.0 / ref / Microsoft.VisualBasic.Core.xml
1 <?xml version="1.0" encoding="utf-8"?>
2 <doc>
3   <assembly>
4     <name>Microsoft.VisualBasic.Core</name>
5   </assembly>
6   <members>
7     <member name="T:Microsoft.VisualBasic.AppWinStyle">
8       <summary>Indicates the window style to use for the invoked program when calling the <see langword="Shell" /> function.</summary>
9     </member>
10     <member name="F:Microsoft.VisualBasic.AppWinStyle.Hide">
11       <summary>Window is hidden and focus is passed to the hidden window. This member is equivalent to the Visual Basic constant <see langword="vbHide" />.</summary>
12     </member>
13     <member name="F:Microsoft.VisualBasic.AppWinStyle.MaximizedFocus">
14       <summary>Window is maximized with focus. This member is equivalent to the Visual Basic constant <see langword="vbMaximizedFocus" />.</summary>
15     </member>
16     <member name="F:Microsoft.VisualBasic.AppWinStyle.MinimizedFocus">
17       <summary>Window is displayed as an icon with focus. This member is equivalent to the Visual Basic constant <see langword="vbMinimizedFocus" />.</summary>
18     </member>
19     <member name="F:Microsoft.VisualBasic.AppWinStyle.MinimizedNoFocus">
20       <summary>Window is displayed as an icon. The currently active window remains active. This member is equivalent to the Visual Basic constant <see langword="vbMinimizedNoFocus" />.</summary>
21     </member>
22     <member name="F:Microsoft.VisualBasic.AppWinStyle.NormalFocus">
23       <summary>Window has focus and is restored to its original size and position. This member is equivalent to the Visual Basic constant <see langword="vbNormalFocus" />.</summary>
24     </member>
25     <member name="F:Microsoft.VisualBasic.AppWinStyle.NormalNoFocus">
26       <summary>Window is restored to its most recent size and position. The currently active window remains active. This member is equivalent to the Visual Basic constant <see langword="vbNormalNoFocus" />.</summary>
27     </member>
28     <member name="T:Microsoft.VisualBasic.CallType">
29       <summary>Indicates the type of procedure being invoked when calling the <see langword="CallByName" /> function.</summary>
30     </member>
31     <member name="F:Microsoft.VisualBasic.CallType.Get">
32       <summary>A property value is being retrieved.  This member is equivalent to the Visual Basic constant <see langword="vbGet" />.</summary>
33     </member>
34     <member name="F:Microsoft.VisualBasic.CallType.Let">
35       <summary>An Object property value is being determined. This member is equivalent to the Visual Basic constant <see langword="vbLet" />.</summary>
36     </member>
37     <member name="F:Microsoft.VisualBasic.CallType.Method">
38       <summary>A method is being invoked.  This member is equivalent to the Visual Basic constant <see langword="vbMethod" />.</summary>
39     </member>
40     <member name="F:Microsoft.VisualBasic.CallType.Set">
41       <summary>A property value is being determined.  This member is equivalent to the Visual Basic constant <see langword="vbSet" />.</summary>
42     </member>
43     <member name="T:Microsoft.VisualBasic.Collection">
44       <summary>A Visual Basic <see langword="Collection" /> is an ordered set of items that can be referred to as a unit.</summary>
45     </member>
46     <member name="M:Microsoft.VisualBasic.Collection.#ctor">
47       <summary>Creates and returns a new Visual Basic <see cref="T:Microsoft.VisualBasic.Collection" /> object.</summary>
48     </member>
49     <member name="M:Microsoft.VisualBasic.Collection.Add(System.Object,System.String,System.Object,System.Object)">
50       <summary>Adds an element to a <see langword="Collection" /> object.</summary>
51       <param name="Item">Required. An object of any type that specifies the element to add to the collection.</param>
52       <param name="Key">Optional. A unique <see langword="String" /> expression that specifies a key string that can be used instead of a positional index to access this new element in the collection.</param>
53       <param name="Before">Optional. An expression that specifies a relative position in the collection. The element to be added is placed in the collection before the element identified by the <paramref name="Before" /> argument. If <paramref name="Before" /> is a numeric expression, it must be a number from 1 through the value of the collection's <see cref="P:Microsoft.VisualBasic.Collection.Count" /> property. If <paramref name="Before" /> is a <see langword="String" /> expression, it must correspond to the key string specified when the element being referred to was added to the collection. You cannot specify both <paramref name="Before" /> and <paramref name="After" />.</param>
54       <param name="After">Optional. An expression that specifies a relative position in the collection. The element to be added is placed in the collection after the element identified by the <paramref name="After" /> argument. If <paramref name="After" /> is a numeric expression, it must be a number from 1 through the value of the collection's <see langword="Count" /> property. If <paramref name="After" /> is a <see langword="String" /> expression, it must correspond to the key string specified when the element referred to was added to the collection. You cannot specify both <paramref name="Before" /> and <paramref name="After" />.</param>
55     </member>
56     <member name="M:Microsoft.VisualBasic.Collection.Clear">
57       <summary>Deletes all elements of a Visual Basic <see langword="Collection" /> object.</summary>
58     </member>
59     <member name="M:Microsoft.VisualBasic.Collection.Contains(System.String)">
60       <summary>Returns a value that indicates whether a Visual Basic <see langword="Collection" /> object contains an element with a specific key.</summary>
61       <param name="Key">Required. A <see langword="String" /> expression that specifies the key for which to search the elements of the collection.</param>
62       <returns>
63         <see langword="true" /> if Visual Basic <see langword="Collection" /> object contains an element with a specific key; otherwise, <see langword="false" />.</returns>
64     </member>
65     <member name="M:Microsoft.VisualBasic.Collection.GetEnumerator">
66       <summary>Returns an enumerator that iterates through the collection.</summary>
67       <returns>An enumerator that can be used to iterate through the collection.</returns>
68     </member>
69     <member name="M:Microsoft.VisualBasic.Collection.Remove(System.Int32)">
70       <summary>Removes an element from a <see langword="Collection" /> object.</summary>
71       <param name="Index">A numeric expression that specifies the position of an element of the collection. <paramref name="Index" /> must be a number from 1 through the value of the collection's <see cref="P:Microsoft.VisualBasic.Collection.Count" /> property.</param>
72     </member>
73     <member name="M:Microsoft.VisualBasic.Collection.Remove(System.String)">
74       <summary>Removes an element from a <see langword="Collection" /> object.</summary>
75       <param name="Key">A unique <see langword="String" /> expression that specifies a key string that can be used, instead of a positional index, to access an element of the collection. <paramref name="Key" /> must correspond to the <paramref name="Key" /> argument specified when the element was added to the collection.</param>
76     </member>
77     <member name="P:Microsoft.VisualBasic.Collection.Count">
78       <summary>Gets the number of elements in a collection.</summary>
79       <returns>The number of elements in a collection.</returns>
80     </member>
81     <member name="P:Microsoft.VisualBasic.Collection.Item(System.Int32)">
82       <summary>Gets a specific element of a <see langword="Collection" /> object either by position or by key.</summary>
83       <param name="Index">A numeric expression that specifies the position of an element of the collection. <paramref name="Index" /> must be a number from 1 through the value of the collection's <see cref="P:Microsoft.VisualBasic.Collection.Count" /> property. Or (B) An <see langword="Object" /> expression that specifies the position or key string of an element of the collection.</param>
84       <returns>A specific element of a <see langword="Collection" /> object either by position or by key.</returns>
85     </member>
86     <member name="P:Microsoft.VisualBasic.Collection.Item(System.Object)">
87       <summary>Gets a specific element of a <see langword="Collection" /> object either by position or by key.</summary>
88       <param name="Index">A numeric expression that specifies the position of an element of the collection. <paramref name="Index" /> must be a number from 1 through the value of the collection's <see cref="P:Microsoft.VisualBasic.Collection.Count" /> property. Or (B) An <see langword="Object" /> expression that specifies the position or key string of an element of the collection.</param>
89       <returns>A specific element of a <see langword="Collection" /> object either by position or by key.</returns>
90     </member>
91     <member name="P:Microsoft.VisualBasic.Collection.Item(System.String)">
92       <summary>Gets a specific element of a <see langword="Collection" /> object either by position or by key.</summary>
93       <param name="Key">A unique <see langword="String" /> expression that specifies a key string that can be used, instead of a positional index, to access an element of the collection. <paramref name="Key" /> must correspond to the <paramref name="Key" /> argument specified when the element was added to the collection.</param>
94       <returns>A specific element of a <see langword="Collection" /> object either by position or by key.</returns>
95     </member>
96     <member name="T:Microsoft.VisualBasic.ComClassAttribute">
97       <summary>The <see langword="ComClassAttribute" /> attribute instructs the compiler to add metadata that allows a class to be exposed as a COM object.</summary>
98     </member>
99     <member name="M:Microsoft.VisualBasic.ComClassAttribute.#ctor">
100       <summary>Initializes a new instance of the <see langword="ComClassAttribute" /> class.</summary>
101     </member>
102     <member name="M:Microsoft.VisualBasic.ComClassAttribute.#ctor(System.String)">
103       <summary>Initializes a new instance of the <see langword="ComClassAttribute" /> class.</summary>
104       <param name="_ClassID">Initializes the value of the <see langword="ClassID" /> property that is used to uniquely identify a class.</param>
105     </member>
106     <member name="M:Microsoft.VisualBasic.ComClassAttribute.#ctor(System.String,System.String)">
107       <summary>Initializes a new instance of the <see langword="ComClassAttribute" /> class.</summary>
108       <param name="_ClassID">Initializes the value of the <see langword="ClassID" /> property that is used to uniquely identify a class.</param>
109       <param name="_InterfaceID">Initializes the value of the <see langword="InterfaceID" /> property that is used to uniquely identify an interface.</param>
110     </member>
111     <member name="M:Microsoft.VisualBasic.ComClassAttribute.#ctor(System.String,System.String,System.String)">
112       <summary>Initializes a new instance of the <see langword="ComClassAttribute" /> class.</summary>
113       <param name="_ClassID">Initializes the value of the <see langword="ClassID" /> property that is used to uniquely identify a class.</param>
114       <param name="_InterfaceID">Initializes the value of the <see langword="InterfaceID" /> property that is used to uniquely identify an interface.</param>
115       <param name="_EventId">Initializes the value of the <see langword="EventID" /> property that is used to uniquely identify an event.</param>
116     </member>
117     <member name="P:Microsoft.VisualBasic.ComClassAttribute.ClassID">
118       <summary>Gets a class ID used to uniquely identify a class.</summary>
119       <returns>Read-only. A string that can be used by the compiler to uniquely identify the class when a COM object is created.</returns>
120     </member>
121     <member name="P:Microsoft.VisualBasic.ComClassAttribute.EventID">
122       <summary>Gets an event ID used to uniquely identify an event.</summary>
123       <returns>Read only. A string that can be used by the compiler to uniquely identify an event for the class when a COM object is created.</returns>
124     </member>
125     <member name="P:Microsoft.VisualBasic.ComClassAttribute.InterfaceID">
126       <summary>Gets an interface ID used to uniquely identify an interface.</summary>
127       <returns>Read-only. A string that can be used by the compiler to uniquely identify an interface for the class when a COM object is created.</returns>
128     </member>
129     <member name="P:Microsoft.VisualBasic.ComClassAttribute.InterfaceShadows">
130       <summary>Indicates that the COM interface name shadows another member of the class or base class.</summary>
131       <returns>A <see langword="Boolean" /> value that indicates that the COM interface name shadows another member of the class or base class.</returns>
132     </member>
133     <member name="T:Microsoft.VisualBasic.CompareMethod">
134       <summary>Indicates how to compare strings when calling comparison functions.</summary>
135     </member>
136     <member name="F:Microsoft.VisualBasic.CompareMethod.Binary">
137       <summary>Performs a binary comparison. This member is equivalent to the Visual Basic constant <see langword="vbBinaryCompare" />.</summary>
138     </member>
139     <member name="F:Microsoft.VisualBasic.CompareMethod.Text">
140       <summary>Performs a textual comparison. This member is equivalent to the Visual Basic constant <see langword="vbTextCompare" />.</summary>
141     </member>
142     <member name="T:Microsoft.VisualBasic.CompilerServices.BooleanType">
143       <summary>This class has been deprecated as of Visual Basic 2005.</summary>
144     </member>
145     <member name="M:Microsoft.VisualBasic.CompilerServices.BooleanType.FromObject(System.Object)">
146       <summary>Returns a <see langword="Boolean" /> value that corresponds to the specified object.</summary>
147       <param name="Value">Required. Object to convert to a <see langword="Boolean" /> value.</param>
148       <returns>The <see langword="Boolean" /> value that corresponds to <paramref name="Value" />.</returns>
149     </member>
150     <member name="M:Microsoft.VisualBasic.CompilerServices.BooleanType.FromString(System.String)">
151       <summary>Returns a <see langword="Boolean" /> value that corresponds to the specified string.</summary>
152       <param name="Value">Required. String to convert to a <see langword="Boolean" /> value.</param>
153       <returns>The <see langword="Boolean" /> value that corresponds to <paramref name="Value" />.</returns>
154     </member>
155     <member name="T:Microsoft.VisualBasic.CompilerServices.ByteType">
156       <summary>This class has been deprecated as of Visual Basic 2005.</summary>
157     </member>
158     <member name="M:Microsoft.VisualBasic.CompilerServices.ByteType.FromObject(System.Object)">
159       <summary>Returns a <see langword="Byte" /> value that corresponds to the specified object.</summary>
160       <param name="Value">Required. Object to convert to a <see langword="Byte" /> value.</param>
161       <returns>The <see langword="Byte" /> value that corresponds to <paramref name="Value" />.</returns>
162     </member>
163     <member name="M:Microsoft.VisualBasic.CompilerServices.ByteType.FromString(System.String)">
164       <summary>Returns a <see langword="Byte" /> value that corresponds to the specified string.</summary>
165       <param name="Value">Required. String to convert to a <see langword="Byte" /> value.</param>
166       <returns>The <see langword="Byte" /> value that corresponds to <paramref name="Value" />.</returns>
167     </member>
168     <member name="T:Microsoft.VisualBasic.CompilerServices.CharArrayType">
169       <summary>This class has been deprecated as of Visual Basic 2005.</summary>
170     </member>
171     <member name="M:Microsoft.VisualBasic.CompilerServices.CharArrayType.FromObject(System.Object)">
172       <summary>Returns a <see langword="CharArray" /> value that corresponds to the specified object.</summary>
173       <param name="Value">Required. Object to convert to a <see langword="CharArray" /> value.</param>
174       <returns>The <see langword="CharArray" /> value that corresponds to <paramref name="Value" />.</returns>
175     </member>
176     <member name="M:Microsoft.VisualBasic.CompilerServices.CharArrayType.FromString(System.String)">
177       <summary>Returns a <see langword="CharArray" /> value that corresponds to the specified string.</summary>
178       <param name="Value">Required. String to convert to a <see langword="CharArray" /> value.</param>
179       <returns>The <see langword="CharArray" /> value that corresponds to <paramref name="Value" />.</returns>
180     </member>
181     <member name="T:Microsoft.VisualBasic.CompilerServices.CharType">
182       <summary>This class has been deprecated as of Visual Basic 2005.</summary>
183     </member>
184     <member name="M:Microsoft.VisualBasic.CompilerServices.CharType.FromObject(System.Object)">
185       <summary>Returns a <see langword="Char" /> value that corresponds to the specified object.</summary>
186       <param name="Value">Required. Object to convert to a <see langword="Char" /> value.</param>
187       <returns>The <see langword="Char" /> value that corresponds to <paramref name="Value" />.</returns>
188     </member>
189     <member name="M:Microsoft.VisualBasic.CompilerServices.CharType.FromString(System.String)">
190       <summary>Returns a <see langword="Char" /> value that corresponds to the specified string.</summary>
191       <param name="Value">Required. String to convert to a <see langword="Char" /> value.</param>
192       <returns>The <see langword="Char" /> value that corresponds to <paramref name="Value" />.</returns>
193     </member>
194     <member name="T:Microsoft.VisualBasic.CompilerServices.Conversions">
195       <summary>Provides methods that perform various type conversions.</summary>
196     </member>
197     <member name="M:Microsoft.VisualBasic.CompilerServices.Conversions.ChangeType(System.Object,System.Type)">
198       <summary>Converts an object to the specified type.</summary>
199       <param name="Expression">The object to convert.</param>
200       <param name="TargetType">The type to which to convert the object.</param>
201       <returns>An object of the specified target type.</returns>
202     </member>
203     <member name="M:Microsoft.VisualBasic.CompilerServices.Conversions.FallbackUserDefinedConversion(System.Object,System.Type)">
204       <summary>Converts an object to the specified type.</summary>
205       <param name="Expression">The object to convert.</param>
206       <param name="TargetType">The type to which to convert the object.</param>
207       <returns>An object of the specified target type.</returns>
208     </member>
209     <member name="M:Microsoft.VisualBasic.CompilerServices.Conversions.FromCharAndCount(System.Char,System.Int32)">
210       <summary>Converts a <see cref="T:System.Char" /> value to a string, given a byte count.</summary>
211       <param name="Value">The <see langword="Char" /> value to convert.</param>
212       <param name="Count">The byte count of the <see langword="Char" /> value.</param>
213       <returns>The string representation of the specified value.</returns>
214     </member>
215     <member name="M:Microsoft.VisualBasic.CompilerServices.Conversions.FromCharArray(System.Char[])">
216       <summary>Converts a <see cref="T:System.Char" /> array to a string.</summary>
217       <param name="Value">The <see langword="Char" /> array to convert.</param>
218       <returns>The string representation of the specified array.</returns>
219     </member>
220     <member name="M:Microsoft.VisualBasic.CompilerServices.Conversions.FromCharArraySubset(System.Char[],System.Int32,System.Int32)">
221       <summary>Converts a subset of a <see cref="T:System.Char" /> array to a string.</summary>
222       <param name="Value">The <see langword="Char" /> array to convert.</param>
223       <param name="StartIndex">Zero-based index of the start position.</param>
224       <param name="Length">Length of the subset in bytes.</param>
225       <returns>The string representation of the specified array from the start position to the specified length.</returns>
226     </member>
227     <member name="M:Microsoft.VisualBasic.CompilerServices.Conversions.ToBoolean(System.Object)">
228       <summary>Converts an object to a <see cref="T:System.Boolean" /> value.</summary>
229       <param name="Value">The object to convert.</param>
230       <returns>A <see langword="Boolean" /> value. Returns <see langword="False" /> if the object is null; otherwise, <see langword="True" />.</returns>
231     </member>
232     <member name="M:Microsoft.VisualBasic.CompilerServices.Conversions.ToBoolean(System.String)">
233       <summary>Converts a string to a <see cref="T:System.Boolean" /> value.</summary>
234       <param name="Value">The string to convert.</param>
235       <returns>A <see langword="Boolean" /> value. Returns <see langword="False" /> if the string is null; otherwise, <see langword="True" />.</returns>
236     </member>
237     <member name="M:Microsoft.VisualBasic.CompilerServices.Conversions.ToByte(System.Object)">
238       <summary>Converts an object to a <see cref="T:System.Byte" /> value.</summary>
239       <param name="Value">The object to convert.</param>
240       <returns>The <see langword="Byte" /> value of the object.</returns>
241     </member>
242     <member name="M:Microsoft.VisualBasic.CompilerServices.Conversions.ToByte(System.String)">
243       <summary>Converts a string to a <see cref="T:System.Byte" /> value.</summary>
244       <param name="Value">The string to convert.</param>
245       <returns>The <see langword="Byte" /> value of the string.</returns>
246     </member>
247     <member name="M:Microsoft.VisualBasic.CompilerServices.Conversions.ToChar(System.Object)">
248       <summary>Converts an object to a <see cref="T:System.Char" /> value.</summary>
249       <param name="Value">The object to convert.</param>
250       <returns>The <see langword="Char" /> value of the object.</returns>
251     </member>
252     <member name="M:Microsoft.VisualBasic.CompilerServices.Conversions.ToChar(System.String)">
253       <summary>Converts a string to a <see cref="T:System.Char" /> value.</summary>
254       <param name="Value">The string to convert.</param>
255       <returns>The <see langword="Char" /> value of the string.</returns>
256     </member>
257     <member name="M:Microsoft.VisualBasic.CompilerServices.Conversions.ToCharArrayRankOne(System.Object)">
258       <summary>Converts an object to a one-dimensional <see cref="T:System.Char" /> array.</summary>
259       <param name="Value">The object to convert.</param>
260       <returns>A one-dimensional <see langword="Char" /> array.</returns>
261     </member>
262     <member name="M:Microsoft.VisualBasic.CompilerServices.Conversions.ToCharArrayRankOne(System.String)">
263       <summary>Converts a string to a one-dimensional <see cref="T:System.Char" /> array.</summary>
264       <param name="Value">The string to convert.</param>
265       <returns>A one-dimensional <see langword="Char" /> array.</returns>
266     </member>
267     <member name="M:Microsoft.VisualBasic.CompilerServices.Conversions.ToDate(System.Object)">
268       <summary>Converts an object to a <see cref="T:System.DateTime" /> value.</summary>
269       <param name="Value">The object to convert.</param>
270       <returns>The <see langword="DateTime" /> value of the object.</returns>
271     </member>
272     <member name="M:Microsoft.VisualBasic.CompilerServices.Conversions.ToDate(System.String)">
273       <summary>Converts a string to a <see cref="T:System.DateTime" /> value.</summary>
274       <param name="Value">The string to convert.</param>
275       <returns>The <see langword="DateTime" /> value of the string.</returns>
276     </member>
277     <member name="M:Microsoft.VisualBasic.CompilerServices.Conversions.ToDecimal(System.Boolean)">
278       <summary>Converts a <see cref="T:System.Boolean" /> value to a <see cref="T:System.Decimal" /> value.</summary>
279       <param name="Value">A Boolean value to convert.</param>
280       <returns>The <see langword="Decimal" /> value of the Boolean value.</returns>
281     </member>
282     <member name="M:Microsoft.VisualBasic.CompilerServices.Conversions.ToDecimal(System.Object)">
283       <summary>Converts an object to a <see cref="T:System.Decimal" /> value.</summary>
284       <param name="Value">The object to convert.</param>
285       <returns>The <see langword="Decimal" /> value of the object.</returns>
286     </member>
287     <member name="M:Microsoft.VisualBasic.CompilerServices.Conversions.ToDecimal(System.String)">
288       <summary>Converts a string to a <see cref="T:System.Decimal" /> value.</summary>
289       <param name="Value">The string to convert.</param>
290       <returns>The <see langword="Decimal" /> value of the string.</returns>
291     </member>
292     <member name="M:Microsoft.VisualBasic.CompilerServices.Conversions.ToDouble(System.Object)">
293       <summary>Converts an object to a <see cref="T:System.Double" /> value.</summary>
294       <param name="Value">The object to convert.</param>
295       <returns>The <see cref="T:System.Double" /> value of the object.</returns>
296     </member>
297     <member name="M:Microsoft.VisualBasic.CompilerServices.Conversions.ToDouble(System.String)">
298       <summary>Converts a string to a <see cref="T:System.Double" /> value.</summary>
299       <param name="Value">The string to convert.</param>
300       <returns>The <see cref="T:System.Double" /> value of the string.</returns>
301     </member>
302     <member name="M:Microsoft.VisualBasic.CompilerServices.Conversions.ToGenericParameter``1(System.Object)">
303       <summary>Converts an object to a generic type <paramref name="T" />.</summary>
304       <param name="Value">The object to convert.</param>
305       <typeparam name="T">The type to convert <paramref name="Value" /> to.</typeparam>
306       <returns>A structure or object of generic type <paramref name="T" />.</returns>
307     </member>
308     <member name="M:Microsoft.VisualBasic.CompilerServices.Conversions.ToInteger(System.Object)">
309       <summary>Converts an object to an integer value.</summary>
310       <param name="Value">The object to convert.</param>
311       <returns>The <see langword="int" /> value of the object.</returns>
312     </member>
313     <member name="M:Microsoft.VisualBasic.CompilerServices.Conversions.ToInteger(System.String)">
314       <summary>Converts a string to an integer value.</summary>
315       <param name="Value">The string to convert.</param>
316       <returns>The <see langword="int" /> value of the string.</returns>
317     </member>
318     <member name="M:Microsoft.VisualBasic.CompilerServices.Conversions.ToLong(System.Object)">
319       <summary>Converts an object to a <see langword="Long" /> value.</summary>
320       <param name="Value">The object to convert.</param>
321       <returns>The <see langword="Long" /> value of the object.</returns>
322     </member>
323     <member name="M:Microsoft.VisualBasic.CompilerServices.Conversions.ToLong(System.String)">
324       <summary>Converts a string to a <see langword="Long" /> value.</summary>
325       <param name="Value">The string to convert.</param>
326       <returns>The <see langword="Long" /> value of the string.</returns>
327     </member>
328     <member name="M:Microsoft.VisualBasic.CompilerServices.Conversions.ToSByte(System.Object)">
329       <summary>Converts an object to an <see cref="T:System.SByte" /> value.</summary>
330       <param name="Value">The object to convert.</param>
331       <returns>The <see langword="SByte" /> value of the object.</returns>
332     </member>
333     <member name="M:Microsoft.VisualBasic.CompilerServices.Conversions.ToSByte(System.String)">
334       <summary>Converts a string to an <see cref="T:System.SByte" /> value.</summary>
335       <param name="Value">The string to convert.</param>
336       <returns>The <see langword="SByte" /> value of the string.</returns>
337     </member>
338     <member name="M:Microsoft.VisualBasic.CompilerServices.Conversions.ToShort(System.Object)">
339       <summary>Converts an object to a <see langword="Short" /> value.</summary>
340       <param name="Value">The object to convert.</param>
341       <returns>The <see langword="Short" /> value of the object.</returns>
342     </member>
343     <member name="M:Microsoft.VisualBasic.CompilerServices.Conversions.ToShort(System.String)">
344       <summary>Converts a string to a <see langword="Short" /> value.</summary>
345       <param name="Value">The string to convert.</param>
346       <returns>The <see langword="Short" /> value of the string.</returns>
347     </member>
348     <member name="M:Microsoft.VisualBasic.CompilerServices.Conversions.ToSingle(System.Object)">
349       <summary>Converts an object to a <see cref="T:System.Single" /> value.</summary>
350       <param name="Value">The object to convert.</param>
351       <returns>The <see cref="T:System.Single" /> value of the object.</returns>
352     </member>
353     <member name="M:Microsoft.VisualBasic.CompilerServices.Conversions.ToSingle(System.String)">
354       <summary>Converts a <see cref="T:System.String" /> to a <see cref="T:System.Single" /> value.</summary>
355       <param name="Value">The string to convert.</param>
356       <returns>The <see cref="T:System.Single" /> value of the string.</returns>
357     </member>
358     <member name="M:Microsoft.VisualBasic.CompilerServices.Conversions.ToString(System.Boolean)">
359       <summary>Converts a <see cref="T:System.Boolean" /> value to a <see cref="T:System.String" />.</summary>
360       <param name="Value">The <see langword="Boolean" /> value to convert.</param>
361       <returns>The <see langword="String" /> representation of the <see langword="Boolean" /> value.</returns>
362     </member>
363     <member name="M:Microsoft.VisualBasic.CompilerServices.Conversions.ToString(System.Byte)">
364       <summary>Converts a <see cref="T:System.Byte" /> value to a <see cref="T:System.String" />.</summary>
365       <param name="Value">The <see langword="Byte" /> value to convert.</param>
366       <returns>The <see langword="String" /> representation of the <see langword="Byte" /> value.</returns>
367     </member>
368     <member name="M:Microsoft.VisualBasic.CompilerServices.Conversions.ToString(System.Char)">
369       <summary>Converts a <see cref="T:System.Char" /> value to a <see cref="T:System.String" />.</summary>
370       <param name="Value">The <see langword="Char" /> value to convert.</param>
371       <returns>The <see langword="String" /> representation of the <see langword="Char" /> value.</returns>
372     </member>
373     <member name="M:Microsoft.VisualBasic.CompilerServices.Conversions.ToString(System.DateTime)">
374       <summary>Converts a <see cref="T:System.DateTime" /> value to a <see cref="T:System.String" /> value.</summary>
375       <param name="Value">The <see langword="DateTime" /> value to convert.</param>
376       <returns>The <see langword="String" /> representation of the <see langword="DateTime" /> value.</returns>
377     </member>
378     <member name="M:Microsoft.VisualBasic.CompilerServices.Conversions.ToString(System.Decimal)">
379       <summary>Converts a <see cref="T:System.Decimal" /> value to a <see cref="T:System.String" /> value.</summary>
380       <param name="Value">The <see langword="Decimal" /> value to convert.</param>
381       <returns>The <see langword="String" /> representation of the <see langword="Decimal" /> value.</returns>
382     </member>
383     <member name="M:Microsoft.VisualBasic.CompilerServices.Conversions.ToString(System.Decimal,System.Globalization.NumberFormatInfo)">
384       <summary>Converts a <see cref="T:System.Decimal" /> value to a <see cref="T:System.String" /> value, using the specified number format.</summary>
385       <param name="Value">The <see langword="decimal" /> value to convert.</param>
386       <param name="NumberFormat">The number format to use, according to <see cref="T:System.Globalization.NumberFormatInfo" />.</param>
387       <returns>The <see langword="String" /> representation of the <see langword="Decimal" /> value.</returns>
388     </member>
389     <member name="M:Microsoft.VisualBasic.CompilerServices.Conversions.ToString(System.Double)">
390       <summary>Converts a <see cref="T:System.Double" /> value to a <see cref="T:System.String" /> value.</summary>
391       <param name="Value">The <see cref="T:System.Double" /> value to convert.</param>
392       <returns>The string representation of the <see cref="T:System.Double" /> value.</returns>
393     </member>
394     <member name="M:Microsoft.VisualBasic.CompilerServices.Conversions.ToString(System.Double,System.Globalization.NumberFormatInfo)">
395       <summary>Converts a <see cref="T:System.Double" /> value to a <see cref="T:System.String" /> value, using the specified number format.</summary>
396       <param name="Value">The <see cref="T:System.Double" /> value to convert.</param>
397       <param name="NumberFormat">The number format to use, according to <see cref="T:System.Globalization.NumberFormatInfo" />.</param>
398       <returns>The string representation of the <see cref="T:System.Double" /> value.</returns>
399     </member>
400     <member name="M:Microsoft.VisualBasic.CompilerServices.Conversions.ToString(System.Int16)">
401       <summary>Converts a <see langword="Short" /> value to a <see cref="T:System.String" /> value.</summary>
402       <param name="Value">The <see langword="Short" /> value to convert.</param>
403       <returns>The <see langword="String" /> representation of the <see langword="Short" /> value.</returns>
404     </member>
405     <member name="M:Microsoft.VisualBasic.CompilerServices.Conversions.ToString(System.Int32)">
406       <summary>Converts an integer value to a <see cref="T:System.String" /> value.</summary>
407       <param name="Value">The <see langword="int" /> value to convert.</param>
408       <returns>The <see langword="String" /> representation of the <see langword="int" /> value.</returns>
409     </member>
410     <member name="M:Microsoft.VisualBasic.CompilerServices.Conversions.ToString(System.Int64)">
411       <summary>Converts a <see langword="Long" /> value to a <see cref="T:System.String" /> value.</summary>
412       <param name="Value">The <see langword="Long" /> value to convert.</param>
413       <returns>The <see langword="String" /> representation of the <see langword="Long" /> value.</returns>
414     </member>
415     <member name="M:Microsoft.VisualBasic.CompilerServices.Conversions.ToString(System.Object)">
416       <summary>Converts an object to a <see cref="T:System.String" /> value.</summary>
417       <param name="Value">The object to convert.</param>
418       <returns>The <see langword="String" /> representation of the object.</returns>
419     </member>
420     <member name="M:Microsoft.VisualBasic.CompilerServices.Conversions.ToString(System.Single)">
421       <summary>Converts a <see cref="T:System.Single" /> value (a single-precision floating point number) to a <see cref="T:System.String" /> value.</summary>
422       <param name="Value">The <see cref="T:System.Single" /> value to convert.</param>
423       <returns>The string representation of the <see cref="T:System.Single" /> value.</returns>
424     </member>
425     <member name="M:Microsoft.VisualBasic.CompilerServices.Conversions.ToString(System.Single,System.Globalization.NumberFormatInfo)">
426       <summary>Converts a <see cref="T:System.Single" /> value to a <see cref="T:System.String" /> value, using the specified number format.</summary>
427       <param name="Value">The <see cref="T:System.Single" /> value to convert.</param>
428       <param name="NumberFormat">The number format to use, according to <see cref="T:System.Globalization.NumberFormatInfo" />.</param>
429       <returns>The string representation of the <see cref="T:System.Single" /> value.</returns>
430     </member>
431     <member name="M:Microsoft.VisualBasic.CompilerServices.Conversions.ToString(System.UInt32)">
432       <summary>Converts a <see langword="uint" /> value to a <see cref="T:System.String" /> value.</summary>
433       <param name="Value">The <see langword="Uint" /> value to convert.</param>
434       <returns>The <see langword="String" /> representation of the <see langword="Uint" /> value.</returns>
435     </member>
436     <member name="M:Microsoft.VisualBasic.CompilerServices.Conversions.ToString(System.UInt64)">
437       <summary>Converts a <see langword="Ulong" /> value to a <see cref="T:System.String" /> value.</summary>
438       <param name="Value">The <see langword="Ulong" /> value to convert.</param>
439       <returns>The <see langword="String" /> representation of the <see langword="Ulong" /> value.</returns>
440     </member>
441     <member name="M:Microsoft.VisualBasic.CompilerServices.Conversions.ToUInteger(System.Object)">
442       <summary>Converts an object to a <see langword="Uint" /> value.</summary>
443       <param name="Value">The object to convert.</param>
444       <returns>The <see langword="Uint" /> value of the object.</returns>
445     </member>
446     <member name="M:Microsoft.VisualBasic.CompilerServices.Conversions.ToUInteger(System.String)">
447       <summary>Converts a string to a <see langword="Uint" /> value.</summary>
448       <param name="Value">The string to convert.</param>
449       <returns>The <see langword="Uint" /> value of the string.</returns>
450     </member>
451     <member name="M:Microsoft.VisualBasic.CompilerServices.Conversions.ToULong(System.Object)">
452       <summary>Converts an object to a <see langword="Ulong" /> value.</summary>
453       <param name="Value">The object to convert.</param>
454       <returns>The <see langword="Ulong" /> value of the object.</returns>
455     </member>
456     <member name="M:Microsoft.VisualBasic.CompilerServices.Conversions.ToULong(System.String)">
457       <summary>Converts a string to a <see langword="Ulong" /> value.</summary>
458       <param name="Value">The string to convert.</param>
459       <returns>The <see langword="Ulong" /> value of the string.</returns>
460     </member>
461     <member name="M:Microsoft.VisualBasic.CompilerServices.Conversions.ToUShort(System.Object)">
462       <summary>Converts an object to a <see langword="Ushort" /> value.</summary>
463       <param name="Value">The object to convert.</param>
464       <returns>The <see langword="Ushort" /> value of the object.</returns>
465     </member>
466     <member name="M:Microsoft.VisualBasic.CompilerServices.Conversions.ToUShort(System.String)">
467       <summary>Converts a string to a <see langword="Ushort" /> value.</summary>
468       <param name="Value">The string to convert.</param>
469       <returns>The <see langword="Ushort" /> value of the string.</returns>
470     </member>
471     <member name="T:Microsoft.VisualBasic.CompilerServices.DateType">
472       <summary>This class has been deprecated as of Visual Basic 2005.</summary>
473     </member>
474     <member name="M:Microsoft.VisualBasic.CompilerServices.DateType.FromObject(System.Object)">
475       <summary>Returns a <see langword="Date" /> value that corresponds to the specified object.</summary>
476       <param name="Value">Required. Object to convert to a <see langword="Date" /> value.</param>
477       <returns>The <see langword="Date" /> value that corresponds to <paramref name="Value" />.</returns>
478     </member>
479     <member name="M:Microsoft.VisualBasic.CompilerServices.DateType.FromString(System.String)">
480       <summary>Returns a <see langword="Date" /> value that corresponds to the specified string.</summary>
481       <param name="Value">Required. String to convert to a <see langword="Date" /> value.</param>
482       <returns>The <see langword="Date" /> value that corresponds to <paramref name="Value" />.</returns>
483     </member>
484     <member name="M:Microsoft.VisualBasic.CompilerServices.DateType.FromString(System.String,System.Globalization.CultureInfo)">
485       <summary>Returns a <see langword="Date" /> value that corresponds to the specified string and culture information.</summary>
486       <param name="Value">Required. String to convert to a <see langword="Date" /> value.</param>
487       <param name="culture">Required. A <see cref="T:System.Globalization.CultureInfo" /> object that defines how date values are formatted and displayed, depending on the culture.</param>
488       <returns>The <see langword="Date" /> value that corresponds to <paramref name="Value" />.</returns>
489     </member>
490     <member name="T:Microsoft.VisualBasic.CompilerServices.DecimalType">
491       <summary>This class has been deprecated as of Visual Basic 2005.</summary>
492     </member>
493     <member name="M:Microsoft.VisualBasic.CompilerServices.DecimalType.FromBoolean(System.Boolean)">
494       <summary>Returns a <see langword="Decimal" /> value that corresponds to the specified <see langword="Boolean" /> value.</summary>
495       <param name="Value">Required. <see langword="Boolean" /> value to convert to a <see langword="Decimal" /> value.</param>
496       <returns>The <see langword="Decimal" /> value that corresponds to <paramref name="Value" />.</returns>
497     </member>
498     <member name="M:Microsoft.VisualBasic.CompilerServices.DecimalType.FromObject(System.Object)">
499       <summary>Returns a <see langword="Decimal" /> value that corresponds to the specified object.</summary>
500       <param name="Value">Required. Object to convert to a <see langword="Decimal" /> value.</param>
501       <returns>The <see langword="Decimal" /> value that corresponds to <paramref name="Value" />.</returns>
502     </member>
503     <member name="M:Microsoft.VisualBasic.CompilerServices.DecimalType.FromObject(System.Object,System.Globalization.NumberFormatInfo)">
504       <summary>Returns a <see langword="Decimal" /> value that corresponds to the specified object and number format information.</summary>
505       <param name="Value">Required. Object to convert to a <see langword="Decimal" /> value.</param>
506       <param name="NumberFormat">A <see cref="T:System.Globalization.NumberFormatInfo" /> object that defines how numeric values are formatted and displayed, depending on the culture.</param>
507       <returns>The <see langword="Decimal" /> value that corresponds to <paramref name="Value" />.</returns>
508     </member>
509     <member name="M:Microsoft.VisualBasic.CompilerServices.DecimalType.FromString(System.String)">
510       <summary>Returns a <see langword="Decimal" /> value that corresponds to the specified string.</summary>
511       <param name="Value">Required. String to convert to a <see langword="Decimal" /> value.</param>
512       <returns>The <see langword="Decimal" /> value that corresponds to <paramref name="Value" />.</returns>
513     </member>
514     <member name="M:Microsoft.VisualBasic.CompilerServices.DecimalType.FromString(System.String,System.Globalization.NumberFormatInfo)">
515       <summary>Returns a <see langword="Decimal" /> value that corresponds to the specified string and number format information.</summary>
516       <param name="Value">Required. String to convert to a <see langword="Decimal" /> value.</param>
517       <param name="NumberFormat">A <see cref="T:System.Globalization.NumberFormatInfo" /> object that defines how numeric values are formatted and displayed, depending on the culture.</param>
518       <returns>The <see langword="Decimal" /> value that corresponds to <paramref name="Value" />.</returns>
519     </member>
520     <member name="M:Microsoft.VisualBasic.CompilerServices.DecimalType.Parse(System.String,System.Globalization.NumberFormatInfo)">
521       <summary>Returns a <see langword="Decimal" /> value that corresponds to the specified string and number format information.</summary>
522       <param name="Value">Required. String to convert to a <see langword="Decimal" /> value.</param>
523       <param name="NumberFormat">A <see cref="T:System.Globalization.NumberFormatInfo" /> object that defines how numeric values are formatted and displayed, depending on the culture.</param>
524       <returns>The <see langword="Decimal" /> value that corresponds to <paramref name="Value" />.</returns>
525     </member>
526     <member name="T:Microsoft.VisualBasic.CompilerServices.DesignerGeneratedAttribute">
527       <summary>When applied to a class, the compiler implicitly calls a component-initializing method from the default synthetic constructor.</summary>
528     </member>
529     <member name="M:Microsoft.VisualBasic.CompilerServices.DesignerGeneratedAttribute.#ctor">
530       <summary>Initializes a new instance of the <see cref="T:Microsoft.VisualBasic.CompilerServices.DesignerGeneratedAttribute" /> attribute.</summary>
531     </member>
532     <member name="T:Microsoft.VisualBasic.CompilerServices.DoubleType">
533       <summary>This class has been deprecated as of Visual Basic 2005.</summary>
534     </member>
535     <member name="M:Microsoft.VisualBasic.CompilerServices.DoubleType.FromObject(System.Object)">
536       <summary>Returns a <see cref="T:System.Double" /> value that corresponds to the specified object.</summary>
537       <param name="Value">Required. Object to convert to a <see cref="T:System.Double" /> value.</param>
538       <returns>The <see cref="T:System.Double" /> value corresponding to <paramref name="Value" />.</returns>
539     </member>
540     <member name="M:Microsoft.VisualBasic.CompilerServices.DoubleType.FromObject(System.Object,System.Globalization.NumberFormatInfo)">
541       <summary>Returns a <see cref="T:System.Double" /> value that corresponds to the specified object.</summary>
542       <param name="Value">Required. Object to convert to a <see cref="T:System.Double" /> value.</param>
543       <param name="NumberFormat">A <see cref="T:System.Globalization.NumberFormatInfo" /> object that defines how numeric values are formatted and displayed, depending on the culture.</param>
544       <returns>The <see cref="T:System.Double" /> value corresponding to <paramref name="Value" />.</returns>
545     </member>
546     <member name="M:Microsoft.VisualBasic.CompilerServices.DoubleType.FromString(System.String)">
547       <summary>Returns a <see cref="T:System.Double" /> value that corresponds to the specified string.</summary>
548       <param name="Value">Required. String to convert to a <see cref="T:System.Double" /> value.</param>
549       <returns>The <see cref="T:System.Double" /> value corresponding to <paramref name="Value" />.</returns>
550     </member>
551     <member name="M:Microsoft.VisualBasic.CompilerServices.DoubleType.FromString(System.String,System.Globalization.NumberFormatInfo)">
552       <summary>Returns a <see cref="T:System.Double" /> value that corresponds to the specified string and number format information.</summary>
553       <param name="Value">Required. String to convert to a <see cref="T:System.Double" /> value.</param>
554       <param name="NumberFormat">A <see cref="T:System.Globalization.NumberFormatInfo" /> object that defines how numeric values are formatted and displayed, depending on the culture.</param>
555       <returns>The <see cref="T:System.Double" /> value corresponding to <paramref name="Value" />.</returns>
556     </member>
557     <member name="M:Microsoft.VisualBasic.CompilerServices.DoubleType.Parse(System.String)">
558       <summary>Returns a <see cref="T:System.Double" /> value that corresponds to the specified string.</summary>
559       <param name="Value">Required. String to convert to a <see cref="T:System.Double" /> value.</param>
560       <returns>The <see cref="T:System.Double" /> value corresponding to <paramref name="Value" />.</returns>
561     </member>
562     <member name="M:Microsoft.VisualBasic.CompilerServices.DoubleType.Parse(System.String,System.Globalization.NumberFormatInfo)">
563       <summary>Returns a <see cref="T:System.Double" /> value that corresponds to the specified string and number format information.</summary>
564       <param name="Value">Required. String to convert to a <see cref="T:System.Double" /> value.</param>
565       <param name="NumberFormat">A <see cref="T:System.Globalization.NumberFormatInfo" /> object that defines how numeric values are formatted and displayed, depending on the culture.</param>
566       <returns>The <see cref="T:System.Double" /> value corresponding to <paramref name="Value" />.</returns>
567     </member>
568     <member name="T:Microsoft.VisualBasic.CompilerServices.IncompleteInitialization">
569       <summary>The Visual Basic compiler uses this class during static local initialization; it is not meant to be called directly from your code. An exception of this type is thrown if a static local variable fails to initialize.</summary>
570     </member>
571     <member name="M:Microsoft.VisualBasic.CompilerServices.IncompleteInitialization.#ctor">
572       <summary>Initializes a new instance of the <see cref="T:Microsoft.VisualBasic.CompilerServices.IncompleteInitialization" /> class.</summary>
573     </member>
574     <member name="T:Microsoft.VisualBasic.CompilerServices.IntegerType">
575       <summary>This class has been deprecated as of Visual Basic 2005.</summary>
576     </member>
577     <member name="M:Microsoft.VisualBasic.CompilerServices.IntegerType.FromObject(System.Object)">
578       <summary>Returns an <see langword="Integer" /> value that corresponds to the specified object.</summary>
579       <param name="Value">Required. Object to convert to an <see langword="Integer" /> value.</param>
580       <returns>The <see langword="Integer" /> value that corresponds to <paramref name="Value" />.</returns>
581     </member>
582     <member name="M:Microsoft.VisualBasic.CompilerServices.IntegerType.FromString(System.String)">
583       <summary>Returns an <see langword="Integer" /> value that corresponds to the specified string.</summary>
584       <param name="Value">Required. String to convert to an <see langword="Integer" /> value.</param>
585       <returns>The <see langword="Integer" /> value that corresponds to <paramref name="Value" />.</returns>
586     </member>
587     <member name="T:Microsoft.VisualBasic.CompilerServices.LateBinding">
588       <summary>This class has been deprecated since Visual Basic 2005.</summary>
589     </member>
590     <member name="M:Microsoft.VisualBasic.CompilerServices.LateBinding.LateCall(System.Object,System.Type,System.String,System.Object[],System.String[],System.Boolean[])">
591       <summary>Performs a late-bound call to an object method.</summary>
592       <param name="o">The object to call a method on.</param>
593       <param name="objType">The type of the object.</param>
594       <param name="name">The method name of <paramref name="o" /> to call.</param>
595       <param name="args">An array of parameter values to pass to the method.</param>
596       <param name="paramnames">An array that contains the names of the parameters to which the values in the <paramref name="args" /> array are passed.</param>
597       <param name="CopyBack">An array of <see langword="Boolean" /> values, where <see langword="True" /> indicates that the associated parameter is passed <see langword="ByRef" />.</param>
598     </member>
599     <member name="M:Microsoft.VisualBasic.CompilerServices.LateBinding.LateGet(System.Object,System.Type,System.String,System.Object[],System.String[],System.Boolean[])">
600       <summary>Returns a late-bound value from an object.</summary>
601       <param name="o">The object to return the value from.</param>
602       <param name="objType">The type of the object.</param>
603       <param name="name">The member name of <paramref name="o" /> to retrieve a value from.</param>
604       <param name="args">An array of one or more index values that specify the location in <paramref name="o" /> if <paramref name="o" /> is a one-dimensional or multi-dimensional array, or argument values to pass to the object <paramref name="o" />.</param>
605       <param name="paramnames">An array that contains the names of the parameters to which the values in the <paramref name="args" /> array are passed.</param>
606       <param name="CopyBack">An array of <see langword="Boolean" /> values, where <see langword="True" /> indicates that the associated parameter is passed <see langword="ByRef" />.</param>
607       <returns>If <paramref name="o" /> is an array, the value from <paramref name="o" /> at the location specified by <paramref name="args" />. If <paramref name="o" /> is an object, the return value of <paramref name="o" /> invoked by using the named parameters in <paramref name="paramnames" /> and their associated values in <paramref name="args" />.</returns>
608     </member>
609     <member name="M:Microsoft.VisualBasic.CompilerServices.LateBinding.LateIndexGet(System.Object,System.Object[],System.String[])">
610       <summary>Returns a late-bound value from an object, using the specified index or parameters.</summary>
611       <param name="o">The object to return the value from.</param>
612       <param name="args">An array of one or more index values that specify the location in <paramref name="o" /> if <paramref name="o" /> is a one-dimensional or multi-dimensional array, or argument values to pass to the object <paramref name="o" />.</param>
613       <param name="paramnames">An array that contains the names of the parameters to which the values in the <paramref name="args" /> array are passed.</param>
614       <returns>If <paramref name="o" /> is an array, the value from <paramref name="o" /> at the location specified by <paramref name="args" />. If <paramref name="o" /> is an object, the return value of <paramref name="o" /> invoked by using the named parameters in <paramref name="paramnames" /> and their associated values in <paramref name="args" />.</returns>
615     </member>
616     <member name="M:Microsoft.VisualBasic.CompilerServices.LateBinding.LateIndexSet(System.Object,System.Object[],System.String[])">
617       <summary>Sets a late-bound value of an object, using the specified parameters.</summary>
618       <param name="o">The object to set the value for.</param>
619       <param name="args">An array of one or more index values that specify the location in <paramref name="o" /> if <paramref name="o" /> is a one-dimensional or multi-dimensional array, or argument values to pass to the object <paramref name="o" />.</param>
620       <param name="paramnames">An array that contains the names of the parameters to which the values in the <paramref name="args" /> array are passed.</param>
621     </member>
622     <member name="M:Microsoft.VisualBasic.CompilerServices.LateBinding.LateIndexSetComplex(System.Object,System.Object[],System.String[],System.Boolean,System.Boolean)">
623       <summary>Sets a late-bound value of an object, using the specified parameters.</summary>
624       <param name="o">The object to set the value for.</param>
625       <param name="args">An array of one or more parameter values to pass to the object <paramref name="o" />.</param>
626       <param name="paramnames">An array that contains the names of the parameters to which the values in the <paramref name="args" /> array are passed.</param>
627       <param name="OptimisticSet">
628         <see langword="True" /> to suppress the exception thrown when the set member is not found.</param>
629       <param name="RValueBase">
630         <see langword="True" /> to identify <paramref name="o" /> as the result of a late-bound expression.</param>
631     </member>
632     <member name="M:Microsoft.VisualBasic.CompilerServices.LateBinding.LateSet(System.Object,System.Type,System.String,System.Object[],System.String[])">
633       <summary>Sets a late-bound value of a member of an object, using the specified parameters.</summary>
634       <param name="o">The object to set the member value for.</param>
635       <param name="objType">The type of the object.</param>
636       <param name="name">The member name to set.</param>
637       <param name="args">An array of one or parameter values to pass to the member of <paramref name="o" />.</param>
638       <param name="paramnames">An array that contains the names of the parameters to which the values in the <paramref name="args" /> array are passed.</param>
639     </member>
640     <member name="M:Microsoft.VisualBasic.CompilerServices.LateBinding.LateSetComplex(System.Object,System.Type,System.String,System.Object[],System.String[],System.Boolean,System.Boolean)">
641       <summary>Sets a late-bound value of a member of an object, using the specified parameters.</summary>
642       <param name="o">The object to set the member value for.</param>
643       <param name="objType">The type of the object.</param>
644       <param name="name">The member name to set.</param>
645       <param name="args">An array of one or more parameter values to pass to the member of <paramref name="o" />.</param>
646       <param name="paramnames">An array that contains the names of the parameters to which the values in the <paramref name="args" /> array are passed.</param>
647       <param name="OptimisticSet">
648         <see langword="True" /> to suppress the exception thrown when the set member is not found.</param>
649       <param name="RValueBase">
650         <see langword="True" /> to identify <paramref name="o" /> as the result of a late-bound expression.</param>
651     </member>
652     <member name="T:Microsoft.VisualBasic.CompilerServices.LikeOperator">
653       <summary>This class provides helpers that the Visual Basic compiler uses to do the work for the Like Operator. It is not meant to be called directly from your code.</summary>
654     </member>
655     <member name="M:Microsoft.VisualBasic.CompilerServices.LikeOperator.LikeObject(System.Object,System.Object,Microsoft.VisualBasic.CompareMethod)">
656       <summary>Performs binary or text string comparison given two objects. This helper method is not meant to be called directly from your code.</summary>
657       <param name="Source">The string to compare.</param>
658       <param name="Pattern">The string against which <paramref name="Source" /> is being compared.</param>
659       <param name="CompareOption">A <see cref="T:Microsoft.VisualBasic.CompareMethod" /> enumeration specifying whether or not to use text comparison. If <see cref="F:Microsoft.VisualBasic.CompareMethod.Text" />, this method uses text comparison; if <see cref="F:Microsoft.VisualBasic.CompareMethod.Binary" />, this method uses binary comparison.</param>
660       <returns>
661         <see langword="True" /> if the strings match; otherwise, <see langword="False" />.</returns>
662     </member>
663     <member name="M:Microsoft.VisualBasic.CompilerServices.LikeOperator.LikeString(System.String,System.String,Microsoft.VisualBasic.CompareMethod)">
664       <summary>Performs binary or text string comparison given two strings. This helper method is not meant to be called directly from your code.</summary>
665       <param name="Source">The string to compare.</param>
666       <param name="Pattern">The string against which <paramref name="Source" /> is being compared.</param>
667       <param name="CompareOption">A <see cref="T:Microsoft.VisualBasic.CompareMethod" /> enumeration specifying whether or not to use text comparison. If <see cref="F:Microsoft.VisualBasic.CompareMethod.Text" />, this method uses text comparison; if <see cref="F:Microsoft.VisualBasic.CompareMethod.Binary" />, this method uses binary comparison.</param>
668       <returns>
669         <see langword="True" /> if the strings match; otherwise, <see langword="False" />.</returns>
670     </member>
671     <member name="T:Microsoft.VisualBasic.CompilerServices.LongType">
672       <summary>This class has been deprecated as of Visual Basic 2005.</summary>
673     </member>
674     <member name="M:Microsoft.VisualBasic.CompilerServices.LongType.FromObject(System.Object)">
675       <summary>Returns a <see langword="Long" /> value that corresponds to the specified object.</summary>
676       <param name="Value">Required. Object to convert to a <see langword="Long" /> value.</param>
677       <returns>The <see langword="Long" /> value that corresponds to <paramref name="Value" />.</returns>
678     </member>
679     <member name="M:Microsoft.VisualBasic.CompilerServices.LongType.FromString(System.String)">
680       <summary>Returns a <see langword="Long" /> value that corresponds to the specified string.</summary>
681       <param name="Value">Required. String to convert to a <see langword="Long" /> value.</param>
682       <returns>The <see langword="Long" /> value that corresponds to <paramref name="Value" />.</returns>
683     </member>
684     <member name="T:Microsoft.VisualBasic.CompilerServices.NewLateBinding">
685       <summary>This class provides helpers that the Visual Basic compiler uses for late binding calls; it is not meant to be called directly from your code.</summary>
686     </member>
687     <member name="M:Microsoft.VisualBasic.CompilerServices.NewLateBinding.FallbackCall(System.Object,System.String,System.Object[],System.String[],System.Boolean)">
688       <summary>Executes a late-bound method or function call. This helper method is not meant to be called directly from your code.</summary>
689       <param name="Instance">An instance of the call object exposing the property or method.</param>
690       <param name="MemberName">The name of the property or method on the call object.</param>
691       <param name="Arguments">An array containing the arguments to be passed to the property or method being called.</param>
692       <param name="ArgumentNames">An array of argument names.</param>
693       <param name="IgnoreReturn">A <see langword="Boolean" /> value indicating whether or not the return value can be ignored.</param>
694       <returns>An instance of the call object.</returns>
695     </member>
696     <member name="M:Microsoft.VisualBasic.CompilerServices.NewLateBinding.FallbackGet(System.Object,System.String,System.Object[],System.String[])">
697       <summary>Executes a late-bound property get or field access call. This helper method is not meant to be called directly from your code.</summary>
698       <param name="Instance">An instance of the call object exposing the property or method.</param>
699       <param name="MemberName">The name of the property or method on the call object.</param>
700       <param name="Arguments">An array containing the arguments to be passed to the property or method being called.</param>
701       <param name="ArgumentNames">An array of argument names.</param>
702       <returns>An instance of the call object.</returns>
703     </member>
704     <member name="M:Microsoft.VisualBasic.CompilerServices.NewLateBinding.FallbackIndexSet(System.Object,System.Object[],System.String[])">
705       <summary>Executes a late-bound property set or field write call. This helper method is not meant to be called directly from your code.</summary>
706       <param name="Instance">An instance of the call object exposing the property or method.</param>
707       <param name="Arguments">An array containing the arguments to be passed to the property or method being called.</param>
708       <param name="ArgumentNames">An array of argument names.</param>
709     </member>
710     <member name="M:Microsoft.VisualBasic.CompilerServices.NewLateBinding.FallbackIndexSetComplex(System.Object,System.Object[],System.String[],System.Boolean,System.Boolean)">
711       <summary>Executes a late-bound property set or field write call. This helper method is not meant to be called directly from your code.</summary>
712       <param name="Instance">An instance of the call object exposing the property or method.</param>
713       <param name="Arguments">An array containing the arguments to be passed to the property or method being called.</param>
714       <param name="ArgumentNames">An array of argument names.</param>
715       <param name="OptimisticSet">A <see langword="Boolean" /> value used to determine whether the set operation will work. Set to <see langword="True" /> when you believe that an intermediate value has been set in the property or field; otherwise <see langword="False" />.</param>
716       <param name="RValueBase">A <see langword="Boolean" /> value that specifies when the base reference of the late reference is an <see langword="RValue" />. Set to <see langword="True" /> when the base reference of the late reference is an <see langword="RValue" />; this allows you to generate a run-time exception for late assignments to fields of <see langword="RValues" /> of value types. Otherwise, set to <see langword="False" />.</param>
717     </member>
718     <member name="M:Microsoft.VisualBasic.CompilerServices.NewLateBinding.FallbackInvokeDefault1(System.Object,System.Object[],System.String[],System.Boolean)">
719       <summary>Executes a late-bound get of the default property or field, or call to the default method or function. This helper method is not meant to be called directly from your code.</summary>
720       <param name="Instance">An instance of the call object exposing the property or method. If <paramref name="Instance" /> is of type <see cref="T:System.Dynamic.IDynamicMetaObjectProvider" />, then bind using the Dynamic Language Runtime; otherwise perform standard late-binding.</param>
721       <param name="Arguments">An array containing the arguments to be passed to the property or method being called.</param>
722       <param name="ArgumentNames">An array of argument names.</param>
723       <param name="ReportErrors">A <see langword="Boolean" /> value used to specify whether to throw exceptions when an error is encountered. Set to <see langword="True" /> to throw exceptions. Set to <see langword="False" /> to return <see langword="Nothing" /> when an error is encountered.</param>
724       <returns>An instance of the call object.</returns>
725     </member>
726     <member name="M:Microsoft.VisualBasic.CompilerServices.NewLateBinding.FallbackInvokeDefault2(System.Object,System.Object[],System.String[],System.Boolean)">
727       <summary>Executes a late-bound get of the default property or field, or call to the default method or function. This helper method is not meant to be called directly from your code.</summary>
728       <param name="Instance">An instance of the call object exposing the property or method.</param>
729       <param name="Arguments">An array containing the arguments to be passed to the property or method being called.</param>
730       <param name="ArgumentNames">An array of argument names.</param>
731       <param name="ReportErrors">A <see langword="Boolean" /> value used to specify whether to throw exceptions when an error is encountered. Set to <see langword="True" /> to throw exceptions. Set to <see langword="False" /> to return <see langword="Nothing" /> when an error is encountered.</param>
732       <returns>An instance of the call object.</returns>
733     </member>
734     <member name="M:Microsoft.VisualBasic.CompilerServices.NewLateBinding.FallbackSet(System.Object,System.String,System.Object[])">
735       <summary>Executes a late-bound property set or field write call. This helper method is not meant to be called directly from your code.</summary>
736       <param name="Instance">An instance of the call object exposing the property or method.</param>
737       <param name="MemberName">The name of the property or method on the call object.</param>
738       <param name="Arguments">An array containing the arguments to be passed to the property or method being called.</param>
739     </member>
740     <member name="M:Microsoft.VisualBasic.CompilerServices.NewLateBinding.FallbackSetComplex(System.Object,System.String,System.Object[],System.Boolean,System.Boolean)">
741       <summary>Executes a late-bound property set or field write call. This helper method is not meant to be called directly from your code.</summary>
742       <param name="Instance">An instance of the call object exposing the property or method.</param>
743       <param name="MemberName">The name of the property or method on the call object.</param>
744       <param name="Arguments">An array containing the arguments to be passed to the property or method being called.</param>
745       <param name="OptimisticSet">A <see langword="Boolean" /> value used to determine whether the set operation will work. Set to <see langword="True" /> when you believe that an intermediate value has been set in the property or field; otherwise <see langword="False" />.</param>
746       <param name="RValueBase">A <see langword="Boolean" /> value that specifies when the base reference of the late reference is an <see langword="RValue" />. Set to <see langword="True" /> when the base reference of the late reference is an <see langword="RValue" />; this allows you to generate a run-time exception for late assignments to fields of <see langword="RValues" /> of value types. Otherwise, set to <see langword="False" />.</param>
747     </member>
748     <member name="M:Microsoft.VisualBasic.CompilerServices.NewLateBinding.LateCall(System.Object,System.Type,System.String,System.Object[],System.String[],System.Type[],System.Boolean[],System.Boolean)">
749       <summary>Executes a late-bound method or function call. This helper method is not meant to be called directly from your code.</summary>
750       <param name="Instance">An instance of the call object exposing the property or method.</param>
751       <param name="Type">The type of the call object.</param>
752       <param name="MemberName">The name of the property or method on the call object.</param>
753       <param name="Arguments">An array containing the arguments to be passed to the property or method being called.</param>
754       <param name="ArgumentNames">An array of argument names.</param>
755       <param name="TypeArguments">An array of argument types; used only for generic calls to pass argument types.</param>
756       <param name="CopyBack">An array of <see langword="Boolean" /> values that the late binder uses to communicate back to the call site which arguments match <see langword="ByRef" /> parameters. Each <see langword="True" /> value indicates that the arguments matched and should be copied out after the call to <see langword="LateCall" /> is complete.</param>
757       <param name="IgnoreReturn">A <see langword="Boolean" /> value indicating whether or not the return value can be ignored.</param>
758       <returns>An instance of the call object.</returns>
759     </member>
760     <member name="M:Microsoft.VisualBasic.CompilerServices.NewLateBinding.LateCallInvokeDefault(System.Object,System.Object[],System.String[],System.Boolean)">
761       <summary>Executes a late-bound call to the default method or function. This helper method is not meant to be called directly from your code.</summary>
762       <param name="Instance">An instance of the call object exposing the property or method.</param>
763       <param name="Arguments">An array containing the arguments to be passed to the property or method being called.</param>
764       <param name="ArgumentNames">An array of argument names.</param>
765       <param name="ReportErrors">A <see langword="Boolean" /> value used to specify whether to throw exceptions when an error is encountered. Set to <see langword="True" /> to throw exceptions. Set to <see langword="False" /> to return <see langword="Nothing" /> when an error is encountered.</param>
766       <returns>An instance of the call object.</returns>
767     </member>
768     <member name="M:Microsoft.VisualBasic.CompilerServices.NewLateBinding.LateGet(System.Object,System.Type,System.String,System.Object[],System.String[],System.Type[],System.Boolean[])">
769       <summary>Executes a late-bound property get or field access call. This helper method is not meant to be called directly from your code.</summary>
770       <param name="Instance">An instance of the call object exposing the property or method.</param>
771       <param name="Type">The type of the call object.</param>
772       <param name="MemberName">The name of the property or method on the call object.</param>
773       <param name="Arguments">An array containing the arguments to be passed to the property or method being called.</param>
774       <param name="ArgumentNames">An array of argument names.</param>
775       <param name="TypeArguments">An array of argument types; used only for generic calls to pass argument types.</param>
776       <param name="CopyBack">An array of <see langword="Boolean" /> values that the late binder uses to communicate back to the call site which arguments match <see langword="ByRef" /> parameters. Each <see langword="True" /> value indicates that the arguments matched and should be copied out after the call to <see langword="LateCall" /> is complete.</param>
777       <returns>An instance of the call object.</returns>
778     </member>
779     <member name="M:Microsoft.VisualBasic.CompilerServices.NewLateBinding.LateGetInvokeDefault(System.Object,System.Object[],System.String[],System.Boolean)">
780       <summary>Executes a late-bound get of the default property or field. This helper method is not meant to be called directly from your code.</summary>
781       <param name="Instance">An instance of the call object exposing the property or method.</param>
782       <param name="Arguments">An array containing the arguments to be passed to the property or method being called.</param>
783       <param name="ArgumentNames">An array of argument names.</param>
784       <param name="ReportErrors">A <see langword="Boolean" /> value used to specify whether to throw exceptions when an error is encountered. Set to <see langword="True" /> to throw exceptions. Set to <see langword="False" /> to return <see langword="Nothing" /> when an error is encountered.</param>
785       <returns>An instance of the call object.</returns>
786     </member>
787     <member name="M:Microsoft.VisualBasic.CompilerServices.NewLateBinding.LateIndexGet(System.Object,System.Object[],System.String[])">
788       <summary>Executes a late-bound property get or field access call. This helper method is not meant to be called directly from your code.</summary>
789       <param name="Instance">An instance of the call object exposing the property or method.</param>
790       <param name="Arguments">An array containing the arguments to be passed to the property or method being called.</param>
791       <param name="ArgumentNames">An array of argument names.</param>
792       <returns>An instance of the call object.</returns>
793     </member>
794     <member name="M:Microsoft.VisualBasic.CompilerServices.NewLateBinding.LateIndexSet(System.Object,System.Object[],System.String[])">
795       <summary>Executes a late-bound property set or field write call. This helper method is not meant to be called directly from your code.</summary>
796       <param name="Instance">An instance of the call object exposing the property or method.</param>
797       <param name="Arguments">An array containing the arguments to be passed to the property or method being called.</param>
798       <param name="ArgumentNames">An array of argument names.</param>
799     </member>
800     <member name="M:Microsoft.VisualBasic.CompilerServices.NewLateBinding.LateIndexSetComplex(System.Object,System.Object[],System.String[],System.Boolean,System.Boolean)">
801       <summary>Executes a late-bound property set or field write call. This helper method is not meant to be called directly from your code.</summary>
802       <param name="Instance">An instance of the call object exposing the property or method.</param>
803       <param name="Arguments">An array containing the arguments to be passed to the property or method being called.</param>
804       <param name="ArgumentNames">An array of argument names.</param>
805       <param name="OptimisticSet">A <see langword="Boolean" /> value used to determine whether the set operation will work. Set to <see langword="True" /> when you believe that an intermediate value has been set in the property or field; otherwise <see langword="False" />.</param>
806       <param name="RValueBase">A <see langword="Boolean" /> value that specifies when the base reference of the late reference is an <see langword="RValue" />. Set to <see langword="True" /> when the base reference of the late reference is an <see langword="RValue" />; this allows you to generate a run-time exception for late assignments to fields of <see langword="RValues" /> of value types. Otherwise, set to <see langword="False" />.</param>
807     </member>
808     <member name="M:Microsoft.VisualBasic.CompilerServices.NewLateBinding.LateSet(System.Object,System.Type,System.String,System.Object[],System.String[],System.Type[])">
809       <summary>Executes a late-bound property set or field write call. This helper method is not meant to be called directly from your code.</summary>
810       <param name="Instance">An instance of the call object exposing the property or method.</param>
811       <param name="Type">The type of the call object.</param>
812       <param name="MemberName">The name of the property or method on the call object.</param>
813       <param name="Arguments">An array containing the arguments to be passed to the property or method being called.</param>
814       <param name="ArgumentNames">An array of argument names.</param>
815       <param name="TypeArguments">An array of argument types; used only for generic calls to pass argument types.</param>
816     </member>
817     <member name="M:Microsoft.VisualBasic.CompilerServices.NewLateBinding.LateSet(System.Object,System.Type,System.String,System.Object[],System.String[],System.Type[],System.Boolean,System.Boolean,Microsoft.VisualBasic.CallType)">
818       <summary>Executes a late-bound property set or field write call. This helper method is not meant to be called directly from your code.</summary>
819       <param name="Instance">An instance of the call object exposing the property or method.</param>
820       <param name="Type">The type of the call object.</param>
821       <param name="MemberName">The name of the property or method on the call object.</param>
822       <param name="Arguments">An array containing the arguments to be passed to the property or method being called.</param>
823       <param name="ArgumentNames">An array of argument names.</param>
824       <param name="TypeArguments">An array of argument types; used only for generic calls to pass argument types.</param>
825       <param name="OptimisticSet">A <see langword="Boolean" /> value used to determine whether the set operation will work. Set to <see langword="True" /> when you believe that an intermediate value has been set in the property or field; otherwise <see langword="False" />.</param>
826       <param name="RValueBase">A <see langword="Boolean" /> value that specifies when the base reference of the late reference is an <see langword="RValue" />. Set to <see langword="True" /> when the base reference of the late reference is an <see langword="RValue" />; this allows you to generate a run-time exception for late assignments to fields of <see langword="RValues" /> of value types. Otherwise, set to <see langword="False" />.</param>
827       <param name="CallType">An enumeration member of type <see cref="T:Microsoft.VisualBasic.CallType" /> representing the type of procedure being called. The value of CallType can be <see langword="Method" />, <see langword="Get" />, or <see langword="Set" />. Only <see langword="Set" /> is used.</param>
828     </member>
829     <member name="M:Microsoft.VisualBasic.CompilerServices.NewLateBinding.LateSetComplex(System.Object,System.Type,System.String,System.Object[],System.String[],System.Type[],System.Boolean,System.Boolean)">
830       <summary>Executes a late-bound property set or field write call. This helper method is not meant to be called directly from your code.</summary>
831       <param name="Instance">An instance of the call object exposing the property or method.</param>
832       <param name="Type">The type of the call object.</param>
833       <param name="MemberName">The name of the property or method on the call object.</param>
834       <param name="Arguments">An array containing the arguments to be passed to the property or method being called.</param>
835       <param name="ArgumentNames">An array of argument names.</param>
836       <param name="TypeArguments">An array of argument types; used only for generic calls to pass argument types.</param>
837       <param name="OptimisticSet">A <see langword="Boolean" /> value used to determine whether the set operation will work. Set to <see langword="True" /> when you believe that an intermediate value has been set in the property or field; otherwise <see langword="False" />.</param>
838       <param name="RValueBase">A <see langword="Boolean" /> value that specifies when the base reference of the late reference is an <see langword="RValue" />. Set to <see langword="True" /> when the base reference of the late reference is an <see langword="RValue" />; this allows you to generate a run-time exception for late assignments to fields of <see langword="RValues" /> of value types. Otherwise, set to <see langword="False" />.</param>
839     </member>
840     <member name="T:Microsoft.VisualBasic.CompilerServices.ObjectFlowControl">
841       <summary>The Visual Basic compiler uses this class for object flow control; it is not meant to be called directly from your code.</summary>
842     </member>
843     <member name="M:Microsoft.VisualBasic.CompilerServices.ObjectFlowControl.CheckForSyncLockOnValueType(System.Object)">
844       <summary>Checks for a synchronization lock on the specified type.</summary>
845       <param name="Expression">The data type for which to check for synchronization lock.</param>
846     </member>
847     <member name="T:Microsoft.VisualBasic.CompilerServices.ObjectFlowControl.ForLoopControl">
848       <summary>Provides services to the Visual Basic compiler for compiling <see langword="For...Next" /> loops.</summary>
849     </member>
850     <member name="M:Microsoft.VisualBasic.CompilerServices.ObjectFlowControl.ForLoopControl.ForLoopInitObj(System.Object,System.Object,System.Object,System.Object,System.Object@,System.Object@)">
851       <summary>Initializes a <see langword="For...Next" /> loop.</summary>
852       <param name="Counter">The loop counter variable.</param>
853       <param name="Start">The initial value of the loop counter.</param>
854       <param name="Limit">The value of the <see langword="To" /> option.</param>
855       <param name="StepValue">The value of the <see langword="Step" /> option.</param>
856       <param name="LoopForResult">An object that contains verified values for loop values.</param>
857       <param name="CounterResult">The counter value for the next loop iteration.</param>
858       <returns>
859         <see langword="False" /> if the loop has terminated; otherwise, <see langword="True" />.</returns>
860     </member>
861     <member name="M:Microsoft.VisualBasic.CompilerServices.ObjectFlowControl.ForLoopControl.ForNextCheckDec(System.Decimal,System.Decimal,System.Decimal)">
862       <summary>Checks for valid values for the loop counter, <see langword="Step" />, and <see langword="To" /> values.</summary>
863       <param name="count">Required. A <see langword="Decimal" /> value that represents the initial value passed for the loop counter variable.</param>
864       <param name="limit">Required. A <see langword="Decimal" /> value that represents the value passed by using the <see langword="To" /> keyword.</param>
865       <param name="StepValue">Required. A <see langword="Decimal" /> value that represents the value passed by using the <see langword="Step" /> keyword.</param>
866       <returns>
867         <see langword="True" /> if <paramref name="StepValue" /> is greater than zero and <paramref name="count" /> is less than or equal to <paramref name="limit" /> or <paramref name="StepValue" /> is less than or equal to zero and <paramref name="count" /> is greater than or equal to <paramref name="limit" />; otherwise, <see langword="False" />.</returns>
868     </member>
869     <member name="M:Microsoft.VisualBasic.CompilerServices.ObjectFlowControl.ForLoopControl.ForNextCheckObj(System.Object,System.Object,System.Object@)">
870       <summary>Increments a <see langword="For...Next" /> loop.</summary>
871       <param name="Counter">The loop counter variable.</param>
872       <param name="LoopObj">An object that contains verified values for loop values.</param>
873       <param name="CounterResult">The counter value for the next loop iteration.</param>
874       <returns>
875         <see langword="False" /> if the loop has terminated; otherwise, <see langword="True" />.</returns>
876     </member>
877     <member name="M:Microsoft.VisualBasic.CompilerServices.ObjectFlowControl.ForLoopControl.ForNextCheckR4(System.Single,System.Single,System.Single)">
878       <summary>Checks for valid values for the loop counter, <see langword="Step" />, and <see langword="To" /> values.</summary>
879       <param name="count">Required. A <see cref="T:System.Single" /> value that represents the initial value passed for the loop counter variable.</param>
880       <param name="limit">Required. A <see cref="T:System.Single" /> value that represents the value passed by using the <see langword="To" /> keyword.</param>
881       <param name="StepValue">Required. A <see cref="T:System.Single" /> value that represents the value passed by using the <see langword="Step" /> keyword.</param>
882       <returns>
883         <see langword="True" /> if <paramref name="StepValue" /> is greater than zero and <paramref name="count" /> is less than or equal to <paramref name="limit" />, or if <paramref name="StepValue" /> is less than or equal to zero and <paramref name="count" /> is greater than or equal to <paramref name="limit" />; otherwise, <see langword="False" />.</returns>
884     </member>
885     <member name="M:Microsoft.VisualBasic.CompilerServices.ObjectFlowControl.ForLoopControl.ForNextCheckR8(System.Double,System.Double,System.Double)">
886       <summary>Checks for valid values for the loop counter, <see langword="Step" />, and <see langword="To" /> values.</summary>
887       <param name="count">Required. A <see cref="T:System.Double" /> value that represents the initial value passed for the loop counter variable.</param>
888       <param name="limit">Required. A <see cref="T:System.Double" /> value that represents the value passed by using the <see langword="To" /> keyword.</param>
889       <param name="StepValue">Required. A <see cref="T:System.Double" /> value that represents the value passed by using the <see langword="Step" /> keyword.</param>
890       <returns>
891         <see langword="True" /> if <paramref name="StepValue" /> is greater than zero and <paramref name="count" /> is less than or equal to <paramref name="limit" />, or if <paramref name="StepValue" /> is less than or equal to zero and <paramref name="count" /> is greater than or equal to <paramref name="limit" />; otherwise, <see langword="False" />.</returns>
892     </member>
893     <member name="T:Microsoft.VisualBasic.CompilerServices.ObjectType">
894       <summary>This class has been deprecated as of Visual Basic 2005.</summary>
895     </member>
896     <member name="M:Microsoft.VisualBasic.CompilerServices.ObjectType.#ctor">
897       <summary>Initializes a new instance of the <see cref="T:Microsoft.VisualBasic.CompilerServices.ObjectType" /> class.</summary>
898     </member>
899     <member name="M:Microsoft.VisualBasic.CompilerServices.ObjectType.AddObj(System.Object,System.Object)">
900       <summary>Performs an addition (+) operation.</summary>
901       <param name="o1">Required. Any numeric expression.</param>
902       <param name="o2">Required. Any numeric expression.</param>
903       <returns>The sum of <paramref name="o1" /> and <paramref name="o2" />.</returns>
904     </member>
905     <member name="M:Microsoft.VisualBasic.CompilerServices.ObjectType.BitAndObj(System.Object,System.Object)">
906       <summary>Performs a bitwise <see langword="And" /> operation.</summary>
907       <param name="obj1">Required. Any <see langword="Boolean" /> or numeric expression.</param>
908       <param name="obj2">Required. Any <see langword="Boolean" /> or numeric expression.</param>
909       <returns>1 if both <paramref name="obj1" /> and <paramref name="obj2" /> evaluate to 1; otherwise, 0.</returns>
910     </member>
911     <member name="M:Microsoft.VisualBasic.CompilerServices.ObjectType.BitOrObj(System.Object,System.Object)">
912       <summary>Performs a bitwise <see langword="Or" /> operation.</summary>
913       <param name="obj1">Required. Any <see langword="Boolean" /> or numeric expression.</param>
914       <param name="obj2">Required. Any <see langword="Boolean" /> or numeric expression.</param>
915       <returns>0 if both <paramref name="obj1" /> and <paramref name="obj2" /> evaluate to 0; otherwise, 1.</returns>
916     </member>
917     <member name="M:Microsoft.VisualBasic.CompilerServices.ObjectType.BitXorObj(System.Object,System.Object)">
918       <summary>Performs an <see langword="Xor" /> operation.</summary>
919       <param name="obj1">Required. Any <see langword="Boolean" /> or numeric expression.</param>
920       <param name="obj2">Required. Any <see langword="Boolean" /> or numeric expression.</param>
921       <returns>A numeric value that represents the bitwise exclusion (exclusive bitwise disjunction) of two numeric bit patterns. For more information, see Xor Operator.</returns>
922     </member>
923     <member name="M:Microsoft.VisualBasic.CompilerServices.ObjectType.DivObj(System.Object,System.Object)">
924       <summary>Performs a division (/) operation.</summary>
925       <param name="o1">Required. Any numeric expression.</param>
926       <param name="o2">Required. Any numeric expression.</param>
927       <returns>The full quotient of <paramref name="o1" /> divided by <paramref name="o2" />, including any remainder.</returns>
928     </member>
929     <member name="M:Microsoft.VisualBasic.CompilerServices.ObjectType.GetObjectValuePrimitive(System.Object)">
930       <summary>Returns a boxed primitive value. This method is used to prevent copying structures multiple times.</summary>
931       <param name="o">Required. Any expression.</param>
932       <returns>The primitive value of <paramref name="o" /> typed as object.</returns>
933     </member>
934     <member name="M:Microsoft.VisualBasic.CompilerServices.ObjectType.IDivObj(System.Object,System.Object)">
935       <summary>Performs an integer division (\) operation.</summary>
936       <param name="o1">Required. Any numeric expression.</param>
937       <param name="o2">Required. Any numeric expression.</param>
938       <returns>The integer quotient of <paramref name="o1" /> divided by <paramref name="o2" />, which discards any remainder and retains only the integer portion.</returns>
939     </member>
940     <member name="M:Microsoft.VisualBasic.CompilerServices.ObjectType.LikeObj(System.Object,System.Object,Microsoft.VisualBasic.CompareMethod)">
941       <summary>Performs a <see langword="Like" /> comparison.</summary>
942       <param name="vLeft">Required. Any expression.</param>
943       <param name="vRight">Required. Any string expression conforming to the pattern-matching conventions described in Like Operator.</param>
944       <param name="CompareOption">Required. A <see cref="T:Microsoft.VisualBasic.CompareMethod" /> value that specifies that the operation use either text or binary comparison.</param>
945       <returns>
946         <see langword="True" /> if the string representation of the value in <paramref name="vLeft" /> satisfies the pattern that is contained in <paramref name="vRight" />; otherwise, <see langword="False" />. <see langword="True" /> if both <paramref name="vLeft" /> and <paramref name="vRight" /> are <see langword="Nothing" />.</returns>
947     </member>
948     <member name="M:Microsoft.VisualBasic.CompilerServices.ObjectType.ModObj(System.Object,System.Object)">
949       <summary>Performs a modulus (<see langword="Mod" />) operation.</summary>
950       <param name="o1">Required. Any numeric expression.</param>
951       <param name="o2">Required. Any numeric expression.</param>
952       <returns>The remainder after <paramref name="o1" /> is divided by <paramref name="o2" />.</returns>
953     </member>
954     <member name="M:Microsoft.VisualBasic.CompilerServices.ObjectType.MulObj(System.Object,System.Object)">
955       <summary>Performs a multiplication (*) operation.</summary>
956       <param name="o1">Required. Any numeric expression.</param>
957       <param name="o2">Required. Any numeric expression.</param>
958       <returns>The product of <paramref name="o1" /> and <paramref name="o2" />.</returns>
959     </member>
960     <member name="M:Microsoft.VisualBasic.CompilerServices.ObjectType.NegObj(System.Object)">
961       <summary>Performs a unary minus (-) operation.</summary>
962       <param name="obj">Required. Any numeric expression.</param>
963       <returns>The negative value of <paramref name="obj" />.</returns>
964     </member>
965     <member name="M:Microsoft.VisualBasic.CompilerServices.ObjectType.NotObj(System.Object)">
966       <summary>Performs a <see langword="Not" /> operation.</summary>
967       <param name="obj">Required. Any <see langword="Boolean" /> or numeric expression.</param>
968       <returns>For <see langword="Boolean" /> operations, <see langword="False" /> if <paramref name="obj" /> is <see langword="True" />; otherwise, <see langword="True" />. For bitwise operations, 1 if <paramref name="obj" /> is 0; otherwise, 0.</returns>
969     </member>
970     <member name="M:Microsoft.VisualBasic.CompilerServices.ObjectType.ObjTst(System.Object,System.Object,System.Boolean)">
971       <summary>Performs binary or text string comparison when given two objects.</summary>
972       <param name="o1">Required. Any expression.</param>
973       <param name="o2">Required. Any expression.</param>
974       <param name="TextCompare">Required. <see langword="True" /> to perform a case-insensitive string comparison; otherwise, <see langword="False" />.</param>
975       <returns>
976         <list type="table">
977           <listheader>
978             <term> Value</term>
979             <description> Condition</description>
980           </listheader>
981           <item>
982             <term> -1</term>
983             <description>
984               <paramref name="o1" /> is less than <paramref name="o2" />.</description>
985           </item>
986           <item>
987             <term> 0</term>
988             <description>
989               <paramref name="o1" /> is equal to <paramref name="o2" />.</description>
990           </item>
991           <item>
992             <term> 1</term>
993             <description>
994               <paramref name="o1" /> is greater than <paramref name="o2" />.</description>
995           </item>
996         </list>
997       </returns>
998     </member>
999     <member name="M:Microsoft.VisualBasic.CompilerServices.ObjectType.PlusObj(System.Object)">
1000       <summary>Performs a unary plus (+) operation.</summary>
1001       <param name="obj">Required. Any numeric expression.</param>
1002       <returns>The value of <paramref name="obj" />. (The sign of the <paramref name="obj" /> is unchanged.)</returns>
1003     </member>
1004     <member name="M:Microsoft.VisualBasic.CompilerServices.ObjectType.PowObj(System.Object,System.Object)">
1005       <summary>Performs an exponent (^) operation.</summary>
1006       <param name="obj1">Required. Any numeric expression.</param>
1007       <param name="obj2">Required. Any numeric expression.</param>
1008       <returns>The result of <paramref name="obj1" /> raised to the power of <paramref name="obj2" />.</returns>
1009     </member>
1010     <member name="M:Microsoft.VisualBasic.CompilerServices.ObjectType.ShiftLeftObj(System.Object,System.Int32)">
1011       <summary>Performs an arithmetic left shift (&lt;&lt;) operation.</summary>
1012       <param name="o1">Required. Integral numeric expression. The bit pattern to be shifted. The data type must be an integral type (<see langword="SByte" />, <see langword="Byte" />, <see langword="Short" />, <see langword="UShort" />, <see langword="Integer" />, <see langword="UInteger" />, <see langword="Long" />, or <see langword="ULong" />).</param>
1013       <param name="amount">Required. Numeric expression. The number of bits to shift the bit pattern. The data type must be <see langword="Integer" /> or widen to <see langword="Integer" />.</param>
1014       <returns>An integral numeric value. The result of shifting the bit pattern. The data type is the same as that of <paramref name="o1" />.</returns>
1015     </member>
1016     <member name="M:Microsoft.VisualBasic.CompilerServices.ObjectType.ShiftRightObj(System.Object,System.Int32)">
1017       <summary>Performs an arithmetic right shift (&gt;&gt;) operation.</summary>
1018       <param name="o1">Required. Integral numeric expression. The bit pattern to be shifted. The data type must be an integral type (<see langword="SByte" />, <see langword="Byte" />, <see langword="Short" />, <see langword="UShort" />, <see langword="Integer" />, <see langword="UInteger" />, <see langword="Long" />, or <see langword="ULong" />).</param>
1019       <param name="amount">Required. Numeric expression. The number of bits to shift the bit pattern. The data type must be <see langword="Integer" /> or widen to <see langword="Integer" />.</param>
1020       <returns>An integral numeric value. The result of shifting the bit pattern. The data type is the same as that of <paramref name="o1" />.</returns>
1021     </member>
1022     <member name="M:Microsoft.VisualBasic.CompilerServices.ObjectType.StrCatObj(System.Object,System.Object)">
1023       <summary>Performs a string concatenation (&amp;) operation.</summary>
1024       <param name="vLeft">Required. Any expression.</param>
1025       <param name="vRight">Required. Any expression.</param>
1026       <returns>A string representing the concatenation of <paramref name="vLeft" /> and <paramref name="vRight" />.</returns>
1027     </member>
1028     <member name="M:Microsoft.VisualBasic.CompilerServices.ObjectType.SubObj(System.Object,System.Object)">
1029       <summary>Performs a subtraction (-) operation.</summary>
1030       <param name="o1">Required. Any numeric expression.</param>
1031       <param name="o2">Required. Any numeric expression.</param>
1032       <returns>The difference between <paramref name="o1" /> and <paramref name="o2" />.</returns>
1033     </member>
1034     <member name="M:Microsoft.VisualBasic.CompilerServices.ObjectType.XorObj(System.Object,System.Object)">
1035       <summary>Performs an <see langword="Xor" /> comparison.</summary>
1036       <param name="obj1">Required. Any <see langword="Boolean" /> or numeric expression.</param>
1037       <param name="obj2">Required. Any <see langword="Boolean" /> or numeric expression.</param>
1038       <returns>A <see langword="Boolean" /> or numeric value. For a <see langword="Boolean" /> comparison, the return value is the logical exclusion (exclusive logical disjunction) of two <see langword="Boolean" /> values. For bitwise (numeric) operations, the return value is a numeric value that represents the bitwise exclusion (exclusive bitwise disjunction) of two numeric bit patterns. For more information, see Xor Operator.</returns>
1039     </member>
1040     <member name="T:Microsoft.VisualBasic.CompilerServices.Operators">
1041       <summary>Provides late-bound math operators, such as <see cref="M:Microsoft.VisualBasic.CompilerServices.Operators.AddObject(System.Object,System.Object)" /> and <see cref="M:Microsoft.VisualBasic.CompilerServices.Operators.CompareObject(System.Object,System.Object,System.Boolean)" />, which the Visual Basic compiler uses internally.</summary>
1042     </member>
1043     <member name="M:Microsoft.VisualBasic.CompilerServices.Operators.AddObject(System.Object,System.Object)">
1044       <summary>Represents the Visual Basic addition (+) operator.</summary>
1045       <param name="Left">Required. Any numeric expression.</param>
1046       <param name="Right">Required. Any numeric expression.</param>
1047       <returns>The sum of <paramref name="Left" /> and <paramref name="Right" />.</returns>
1048     </member>
1049     <member name="M:Microsoft.VisualBasic.CompilerServices.Operators.AndObject(System.Object,System.Object)">
1050       <summary>Represents the Visual Basic <see langword="And" /> operator.</summary>
1051       <param name="Left">Required. Any <see langword="Boolean" /> or numeric expression.</param>
1052       <param name="Right">Required. Any <see langword="Boolean" /> or numeric expression.</param>
1053       <returns>For <see langword="Boolean" /> operations, <see langword="True" /> if both <paramref name="Left" /> and <paramref name="Right" /> evaluate to <see langword="True" />; otherwise, <see langword="False" />. For bitwise operations, 1 if both <paramref name="Left" /> and <paramref name="Right" /> evaluate to 1; otherwise, 0.</returns>
1054     </member>
1055     <member name="M:Microsoft.VisualBasic.CompilerServices.Operators.CompareObjectEqual(System.Object,System.Object,System.Boolean)">
1056       <summary>Represents the Visual Basic equal (=) operator.</summary>
1057       <param name="Left">Required. Any expression.</param>
1058       <param name="Right">Required. Any expression.</param>
1059       <param name="TextCompare">Required. <see langword="True" /> to perform a case-insensitive string comparison; otherwise, <see langword="False" />.</param>
1060       <returns>
1061         <see langword="True" /> if <paramref name="Left" /> and <paramref name="Right" /> are equal; otherwise, <see langword="False" />.</returns>
1062     </member>
1063     <member name="M:Microsoft.VisualBasic.CompilerServices.Operators.CompareObjectGreater(System.Object,System.Object,System.Boolean)">
1064       <summary>Represents the Visual Basic greater-than (&gt;) operator.</summary>
1065       <param name="Left">Required. Any expression.</param>
1066       <param name="Right">Required. Any expression.</param>
1067       <param name="TextCompare">Required. <see langword="True" /> to perform a case-insensitive string comparison; otherwise, <see langword="False" />.</param>
1068       <returns>
1069         <see langword="True" /> if <paramref name="Left" /> is greater than <paramref name="Right" />; otherwise, <see langword="False" />.</returns>
1070     </member>
1071     <member name="M:Microsoft.VisualBasic.CompilerServices.Operators.CompareObjectGreaterEqual(System.Object,System.Object,System.Boolean)">
1072       <summary>Represents the Visual Basic greater-than or equal-to (&gt;=) operator.</summary>
1073       <param name="Left">Required. Any expression.</param>
1074       <param name="Right">Required. Any expression.</param>
1075       <param name="TextCompare">Required. <see langword="True" /> to perform a case-insensitive string comparison; otherwise, <see langword="False" />.</param>
1076       <returns>
1077         <see langword="True" /> if <paramref name="Left" /> is greater than or equal to <paramref name="Right" />; otherwise, <see langword="False" />.</returns>
1078     </member>
1079     <member name="M:Microsoft.VisualBasic.CompilerServices.Operators.CompareObjectLess(System.Object,System.Object,System.Boolean)">
1080       <summary>Represents the Visual Basic less-than (&lt;) operator.</summary>
1081       <param name="Left">Required. Any expression.</param>
1082       <param name="Right">Required. Any expression.</param>
1083       <param name="TextCompare">Required. <see langword="True" /> to perform a case-insensitive string comparison; otherwise, <see langword="False" />.</param>
1084       <returns>
1085         <see langword="True" /> if <paramref name="Left" /> is less than <paramref name="Right" />; otherwise, <see langword="False" />.</returns>
1086     </member>
1087     <member name="M:Microsoft.VisualBasic.CompilerServices.Operators.CompareObjectLessEqual(System.Object,System.Object,System.Boolean)">
1088       <summary>Represents the Visual Basic less-than or equal-to (&lt;=) operator.</summary>
1089       <param name="Left">Required. Any expression.</param>
1090       <param name="Right">Required. Any expression.</param>
1091       <param name="TextCompare">Required. <see langword="True" /> to perform a case-insensitive string comparison; otherwise, <see langword="False" />.</param>
1092       <returns>
1093         <see langword="True" /> if <paramref name="Left" /> is less than or equal to <paramref name="Right" />; otherwise, <see langword="False" />.</returns>
1094     </member>
1095     <member name="M:Microsoft.VisualBasic.CompilerServices.Operators.CompareObjectNotEqual(System.Object,System.Object,System.Boolean)">
1096       <summary>Represents the Visual Basic not-equal (&lt;&gt;) operator.</summary>
1097       <param name="Left">Required. Any expression.</param>
1098       <param name="Right">Required. Any expression.</param>
1099       <param name="TextCompare">Required. <see langword="True" /> to perform a case-insensitive string comparison; otherwise, <see langword="False" />.</param>
1100       <returns>
1101         <see langword="True" /> if <paramref name="Left" /> is not equal to <paramref name="Right" />; otherwise, <see langword="False" />.</returns>
1102     </member>
1103     <member name="M:Microsoft.VisualBasic.CompilerServices.Operators.CompareString(System.String,System.String,System.Boolean)">
1104       <summary>Performs binary or text string comparison when given two strings.</summary>
1105       <param name="Left">Required. Any <see langword="String" /> expression.</param>
1106       <param name="Right">Required. Any <see langword="String" /> expression.</param>
1107       <param name="TextCompare">Required. <see langword="True" /> to perform a case-insensitive string comparison; otherwise, <see langword="False" />.</param>
1108       <returns>
1109         <list type="table">
1110           <listheader>
1111             <term> Value</term>
1112             <description> Condition</description>
1113           </listheader>
1114           <item>
1115             <term> -1</term>
1116             <description>
1117               <paramref name="Left" /> is less than <paramref name="Right" />.</description>
1118           </item>
1119           <item>
1120             <term> 0</term>
1121             <description>
1122               <paramref name="Left" /> is equal to <paramref name="Right" />.</description>
1123           </item>
1124           <item>
1125             <term> 1</term>
1126             <description>
1127               <paramref name="Left" /> is greater than <paramref name="Right" />.</description>
1128           </item>
1129         </list>
1130       </returns>
1131     </member>
1132     <member name="M:Microsoft.VisualBasic.CompilerServices.Operators.ConcatenateObject(System.Object,System.Object)">
1133       <summary>Represents the Visual Basic concatenation (&amp;) operator.</summary>
1134       <param name="Left">Required. Any expression.</param>
1135       <param name="Right">Required. Any expression.</param>
1136       <returns>A string representing the concatenation of <paramref name="Left" /> and <paramref name="Right" />.</returns>
1137     </member>
1138     <member name="M:Microsoft.VisualBasic.CompilerServices.Operators.ConditionalCompareObjectEqual(System.Object,System.Object,System.Boolean)">
1139       <summary>Represents the overloaded Visual Basic equals (=) operator.</summary>
1140       <param name="Left">Required. Any expression.</param>
1141       <param name="Right">Required. Any expression.</param>
1142       <param name="TextCompare">Required. <see langword="True" /> to perform a case-insensitive string comparison; otherwise, <see langword="False" />.</param>
1143       <returns>The result of the overloaded equals operator. <see langword="False" /> if operator overloading is not supported.</returns>
1144     </member>
1145     <member name="M:Microsoft.VisualBasic.CompilerServices.Operators.ConditionalCompareObjectGreater(System.Object,System.Object,System.Boolean)">
1146       <summary>Represents the overloaded Visual Basic greater-than (&gt;) operator.</summary>
1147       <param name="Left">Required. Any expression.</param>
1148       <param name="Right">Required. Any expression.</param>
1149       <param name="TextCompare">Required. <see langword="True" /> to perform a case-insensitive string comparison; otherwise, <see langword="False" />.</param>
1150       <returns>The result of the overloaded greater-than operator. <see langword="False" /> if operator overloading is not supported.</returns>
1151     </member>
1152     <member name="M:Microsoft.VisualBasic.CompilerServices.Operators.ConditionalCompareObjectGreaterEqual(System.Object,System.Object,System.Boolean)">
1153       <summary>Represents the overloaded Visual Basic greater-than or equal-to (&gt;=) operator.</summary>
1154       <param name="Left">Required. Any expression.</param>
1155       <param name="Right">Required. Any expression.</param>
1156       <param name="TextCompare">Required. <see langword="True" /> to perform a case-insensitive string comparison; otherwise, <see langword="False" />.</param>
1157       <returns>The result of the overloaded greater-than or equal-to operator. <see langword="False" /> if operator overloading is not supported.</returns>
1158     </member>
1159     <member name="M:Microsoft.VisualBasic.CompilerServices.Operators.ConditionalCompareObjectLess(System.Object,System.Object,System.Boolean)">
1160       <summary>Represents the overloaded Visual Basic less-than (&lt;) operator.</summary>
1161       <param name="Left">Required. Any expression.</param>
1162       <param name="Right">Required. Any expression.</param>
1163       <param name="TextCompare">Required. <see langword="True" /> to perform a case-insensitive string comparison; otherwise, <see langword="False" />.</param>
1164       <returns>The result of the overloaded less-than operator. <see langword="False" /> if operator overloading is not supported.</returns>
1165     </member>
1166     <member name="M:Microsoft.VisualBasic.CompilerServices.Operators.ConditionalCompareObjectLessEqual(System.Object,System.Object,System.Boolean)">
1167       <summary>Represents the overloaded Visual Basic less-than or equal-to (&lt;=) operator.</summary>
1168       <param name="Left">Required. Any expression.</param>
1169       <param name="Right">Required. Any expression.</param>
1170       <param name="TextCompare">Required. <see langword="True" /> to perform a case-insensitive string comparison; otherwise, <see langword="False" />.</param>
1171       <returns>The result of the overloaded less-than or equal-to operator. <see langword="False" /> if operator overloading is not supported.</returns>
1172     </member>
1173     <member name="M:Microsoft.VisualBasic.CompilerServices.Operators.ConditionalCompareObjectNotEqual(System.Object,System.Object,System.Boolean)">
1174       <summary>Represents the overloaded Visual Basic not-equal (&lt;&gt;) operator.</summary>
1175       <param name="Left">Required. Any expression.</param>
1176       <param name="Right">Required. Any expression.</param>
1177       <param name="TextCompare">Required. <see langword="True" /> to perform a case-insensitive string comparison; otherwise, <see langword="False" />.</param>
1178       <returns>The result of the overloaded not-equal operator. <see langword="False" /> if operator overloading is not supported.</returns>
1179     </member>
1180     <member name="M:Microsoft.VisualBasic.CompilerServices.Operators.DivideObject(System.Object,System.Object)">
1181       <summary>Represents the Visual Basic division (/) operator.</summary>
1182       <param name="Left">Required. Any numeric expression.</param>
1183       <param name="Right">Required. Any numeric expression.</param>
1184       <returns>The full quotient of <paramref name="Left" /> divided by <paramref name="Right" />, including any remainder.</returns>
1185     </member>
1186     <member name="M:Microsoft.VisualBasic.CompilerServices.Operators.ExponentObject(System.Object,System.Object)">
1187       <summary>Represents the Visual Basic exponent (^) operator.</summary>
1188       <param name="Left">Required. Any numeric expression.</param>
1189       <param name="Right">Required. Any numeric expression.</param>
1190       <returns>The result of <paramref name="Left" /> raised to the power of <paramref name="Right" />.</returns>
1191     </member>
1192     <member name="M:Microsoft.VisualBasic.CompilerServices.Operators.FallbackInvokeUserDefinedOperator(System.Object,System.Object[])">
1193       <summary>Executes a late-bound evaluation of a user-defined operator. This helper method is not meant to be called directly from your code.</summary>
1194       <param name="vbOp">The user-defined operator.</param>
1195       <param name="arguments" />
1196       <returns>The result returned from the user-defined operator.</returns>
1197     </member>
1198     <member name="M:Microsoft.VisualBasic.CompilerServices.Operators.IntDivideObject(System.Object,System.Object)">
1199       <summary>Represents the Visual Basic integer division (\) operator.</summary>
1200       <param name="Left">Required. Any numeric expression.</param>
1201       <param name="Right">Required. Any numeric expression.</param>
1202       <returns>The integer quotient of <paramref name="Left" /> divided by <paramref name="Right" />, which discards any remainder and retains only the integer portion.</returns>
1203     </member>
1204     <member name="M:Microsoft.VisualBasic.CompilerServices.Operators.LeftShiftObject(System.Object,System.Object)">
1205       <summary>Represents the Visual Basic arithmetic left shift (&lt;&lt;) operator.</summary>
1206       <param name="Operand">Required. Integral numeric expression. The bit pattern to be shifted. The data type must be an integral type (<see langword="SByte" />, <see langword="Byte" />, <see langword="Short" />, <see langword="UShort" />, <see langword="Integer" />, <see langword="UInteger" />, <see langword="Long" />, or <see langword="ULong" />).</param>
1207       <param name="Amount">Required. Numeric expression. The number of bits to shift the bit pattern. The data type must be <see langword="Integer" /> or widen to <see langword="Integer" />.</param>
1208       <returns>An integral numeric value. The result of shifting the bit pattern. The data type is the same as that of <paramref name="Operand" />.</returns>
1209     </member>
1210     <member name="M:Microsoft.VisualBasic.CompilerServices.Operators.ModObject(System.Object,System.Object)">
1211       <summary>Represents the Visual Basic <see langword="Mod" /> operator.</summary>
1212       <param name="Left">Required. Any numeric expression.</param>
1213       <param name="Right">Required. Any numeric expression.</param>
1214       <returns>The remainder after <paramref name="Left" /> is divided by <paramref name="Right" />.</returns>
1215     </member>
1216     <member name="M:Microsoft.VisualBasic.CompilerServices.Operators.MultiplyObject(System.Object,System.Object)">
1217       <summary>Represents the Visual Basic multiply (*) operator.</summary>
1218       <param name="Left">Required. Any numeric expression.</param>
1219       <param name="Right">Required. Any numeric expression.</param>
1220       <returns>The product of <paramref name="Left" /> and <paramref name="Right" />.</returns>
1221     </member>
1222     <member name="M:Microsoft.VisualBasic.CompilerServices.Operators.NegateObject(System.Object)">
1223       <summary>Represents the Visual Basic unary minus (-) operator.</summary>
1224       <param name="Operand">Required. Any numeric expression.</param>
1225       <returns>The negative value of <paramref name="Operand" />.</returns>
1226     </member>
1227     <member name="M:Microsoft.VisualBasic.CompilerServices.Operators.NotObject(System.Object)">
1228       <summary>Represents the Visual Basic <see langword="Not" /> operator.</summary>
1229       <param name="Operand">Required. Any <see langword="Boolean" /> or numeric expression.</param>
1230       <returns>For <see langword="Boolean" /> operations, <see langword="False" /> if <paramref name="Operand" /> is <see langword="True" />; otherwise, <see langword="True" />. For bitwise operations, 1 if <paramref name="Operand" /> is 0; otherwise, 0.</returns>
1231     </member>
1232     <member name="M:Microsoft.VisualBasic.CompilerServices.Operators.OrObject(System.Object,System.Object)">
1233       <summary>Represents the Visual Basic <see langword="Or" /> operator.</summary>
1234       <param name="Left">Required. Any <see langword="Boolean" /> or numeric expression.</param>
1235       <param name="Right">Required. Any <see langword="Boolean" /> or numeric expression.</param>
1236       <returns>For <see langword="Boolean" /> operations, <see langword="False" /> if both <paramref name="Left" /> and <paramref name="Right" /> evaluate to <see langword="False" />; otherwise, <see langword="True" />. For bitwise operations, 0 if both <paramref name="Left" /> and <paramref name="Right" /> evaluate to 0; otherwise, 1.</returns>
1237     </member>
1238     <member name="M:Microsoft.VisualBasic.CompilerServices.Operators.PlusObject(System.Object)">
1239       <summary>Represents the Visual Basic unary plus (+) operator.</summary>
1240       <param name="Operand">Required. Any numeric expression.</param>
1241       <returns>The value of <paramref name="Operand" />. (The sign of the <paramref name="Operand" /> is unchanged.)</returns>
1242     </member>
1243     <member name="M:Microsoft.VisualBasic.CompilerServices.Operators.RightShiftObject(System.Object,System.Object)">
1244       <summary>Represents the Visual Basic arithmetic right shift (&gt;&gt;) operator.</summary>
1245       <param name="Operand">Required. Integral numeric expression. The bit pattern to be shifted. The data type must be an integral type (<see langword="SByte" />, <see langword="Byte" />, <see langword="Short" />, <see langword="UShort" />, <see langword="Integer" />, <see langword="UInteger" />, <see langword="Long" />, or <see langword="ULong" />).</param>
1246       <param name="Amount">Required. Numeric expression. The number of bits to shift the bit pattern. The data type must be <see langword="Integer" /> or widen to <see langword="Integer" />.</param>
1247       <returns>An integral numeric value. The result of shifting the bit pattern. The data type is the same as that of <paramref name="Operand" />.</returns>
1248     </member>
1249     <member name="M:Microsoft.VisualBasic.CompilerServices.Operators.SubtractObject(System.Object,System.Object)">
1250       <summary>Represents the Visual Basic subtraction (-) operator.</summary>
1251       <param name="Left">Required. Any numeric expression.</param>
1252       <param name="Right">Required. Any numeric expression.</param>
1253       <returns>The difference between <paramref name="Left" /> and <paramref name="Right" />.</returns>
1254     </member>
1255     <member name="M:Microsoft.VisualBasic.CompilerServices.Operators.XorObject(System.Object,System.Object)">
1256       <summary>Represents the Visual Basic <see langword="Xor" /> operator.</summary>
1257       <param name="Left">Required. Any <see langword="Boolean" /> or numeric expression.</param>
1258       <param name="Right">Required. Any <see langword="Boolean" /> or numeric expression.</param>
1259       <returns>A <see langword="Boolean" /> or numeric value. For a <see langword="Boolean" /> comparison, the return value is the logical exclusion (exclusive logical disjunction) of two <see langword="Boolean" /> values. For bitwise (numeric) operations, the return value is a numeric value that represents the bitwise exclusion (exclusive bitwise disjunction) of two numeric bit patterns. For more information, see Xor Operator.</returns>
1260     </member>
1261     <member name="T:Microsoft.VisualBasic.CompilerServices.OptionCompareAttribute">
1262       <summary>Specifies that the current <see langword="Option Compare" /> setting should be passed as the default value for an argument.</summary>
1263     </member>
1264     <member name="M:Microsoft.VisualBasic.CompilerServices.OptionCompareAttribute.#ctor">
1265       <summary>Initializes a new instance of the <see cref="T:Microsoft.VisualBasic.CompilerServices.OptionCompareAttribute" /> class.</summary>
1266     </member>
1267     <member name="T:Microsoft.VisualBasic.CompilerServices.OptionTextAttribute">
1268       <summary>The Visual Basic compiler emits this helper class to indicate (for Visual Basic debugging) which comparison option, binary or text, is being used.</summary>
1269     </member>
1270     <member name="M:Microsoft.VisualBasic.CompilerServices.OptionTextAttribute.#ctor">
1271       <summary>Initializes a new instance of the <see cref="T:Microsoft.VisualBasic.CompilerServices.OptionTextAttribute" /> class. This is a helper method.</summary>
1272     </member>
1273     <member name="T:Microsoft.VisualBasic.CompilerServices.ProjectData">
1274       <summary>Provides helpers for the Visual Basic <see langword="Err" /> object.</summary>
1275     </member>
1276     <member name="M:Microsoft.VisualBasic.CompilerServices.ProjectData.ClearProjectError">
1277       <summary>Performs the work for the <see langword="Clear" /> method of the <see langword="Err" /> object. A helper method.</summary>
1278     </member>
1279     <member name="M:Microsoft.VisualBasic.CompilerServices.ProjectData.CreateProjectError(System.Int32)">
1280       <summary>Performs the work for the <see langword="Raise" /> method of the <see langword="Err" /> object. A helper method.</summary>
1281       <param name="hr">An integer value that identifies the nature of the error. Visual Basic errors are in the range 0-65535; the range 0-512 is reserved for system errors; the range 513-65535 is available for user-defined errors.</param>
1282       <returns>An <see cref="T:System.Exception" /> object.</returns>
1283     </member>
1284     <member name="M:Microsoft.VisualBasic.CompilerServices.ProjectData.EndApp">
1285       <summary>Closes all files for the calling assembly and stops the process.</summary>
1286     </member>
1287     <member name="M:Microsoft.VisualBasic.CompilerServices.ProjectData.SetProjectError(System.Exception)">
1288       <summary>The Visual Basic compiler uses this helper method to capture exceptions in the <see langword="Err" /> object.</summary>
1289       <param name="ex">The <see cref="T:System.Exception" /> object to be caught.</param>
1290     </member>
1291     <member name="M:Microsoft.VisualBasic.CompilerServices.ProjectData.SetProjectError(System.Exception,System.Int32)">
1292       <summary>The Visual Basic compiler uses this helper method to capture exceptions in the <see langword="Err" /> object.</summary>
1293       <param name="ex">The <see cref="T:System.Exception" /> object to be caught.</param>
1294       <param name="lErl">The line number of the exception.</param>
1295     </member>
1296     <member name="T:Microsoft.VisualBasic.CompilerServices.ShortType">
1297       <summary>This class has been deprecated as of Visual Basic 2005.</summary>
1298     </member>
1299     <member name="M:Microsoft.VisualBasic.CompilerServices.ShortType.FromObject(System.Object)">
1300       <summary>Returns a <see langword="Short" /> value that corresponds to the specified object.</summary>
1301       <param name="Value">Required. Object to convert to a <see langword="Short" /> value.</param>
1302       <returns>The <see langword="Short" /> value that corresponds to <paramref name="Value" />.</returns>
1303     </member>
1304     <member name="M:Microsoft.VisualBasic.CompilerServices.ShortType.FromString(System.String)">
1305       <summary>Returns a <see langword="Short" /> value that corresponds to the specified string.</summary>
1306       <param name="Value">Required. String to convert to a <see langword="Short" /> value.</param>
1307       <returns>The <see langword="Short" /> value that corresponds to <paramref name="Value" />.</returns>
1308     </member>
1309     <member name="T:Microsoft.VisualBasic.CompilerServices.SingleType">
1310       <summary>This class has been deprecated as of Visual Basic 2005.</summary>
1311     </member>
1312     <member name="M:Microsoft.VisualBasic.CompilerServices.SingleType.FromObject(System.Object)">
1313       <summary>Returns a <see cref="T:System.Single" /> value that corresponds to the specified object.</summary>
1314       <param name="Value">Required. Object to convert to a <see cref="T:System.Single" /> value.</param>
1315       <returns>The <see cref="T:System.Single" /> value corresponding to <paramref name="Value" />.</returns>
1316     </member>
1317     <member name="M:Microsoft.VisualBasic.CompilerServices.SingleType.FromObject(System.Object,System.Globalization.NumberFormatInfo)">
1318       <summary>Returns a <see cref="T:System.Single" /> value that corresponds to the specified object.</summary>
1319       <param name="Value">Required. Object to convert to a <see cref="T:System.Single" /> value.</param>
1320       <param name="NumberFormat">A <see cref="T:System.Globalization.NumberFormatInfo" /> object that defines how numeric values are formatted and displayed, depending on the culture.</param>
1321       <returns>The <see cref="T:System.Single" /> value corresponding to <paramref name="Value" />.</returns>
1322     </member>
1323     <member name="M:Microsoft.VisualBasic.CompilerServices.SingleType.FromString(System.String)">
1324       <summary>Returns a <see cref="T:System.Single" /> value that corresponds to the specified string.</summary>
1325       <param name="Value">Required. String to convert to a <see cref="T:System.Single" /> value.</param>
1326       <returns>The <see cref="T:System.Single" /> value that corresponds to <paramref name="Value" />.</returns>
1327     </member>
1328     <member name="M:Microsoft.VisualBasic.CompilerServices.SingleType.FromString(System.String,System.Globalization.NumberFormatInfo)">
1329       <summary>Returns a <see cref="T:System.Single" /> value that corresponds to the specified string and number format information.</summary>
1330       <param name="Value">Required. String to convert to a <see cref="T:System.Single" /> value.</param>
1331       <param name="NumberFormat">A <see cref="T:System.Globalization.NumberFormatInfo" /> object that defines how numeric values are formatted and displayed, depending on the culture.</param>
1332       <returns>The <see cref="T:System.Single" /> value corresponding to <paramref name="Value" />.</returns>
1333     </member>
1334     <member name="T:Microsoft.VisualBasic.CompilerServices.StandardModuleAttribute">
1335       <summary>This class provides attributes that are applied to the standard module construct when it is emitted to Intermediate Language (IL). It is not intended to be called directly from your code.</summary>
1336     </member>
1337     <member name="M:Microsoft.VisualBasic.CompilerServices.StandardModuleAttribute.#ctor">
1338       <summary>Initializes a new instance of the <see cref="T:Microsoft.VisualBasic.CompilerServices.StandardModuleAttribute" /> class.</summary>
1339     </member>
1340     <member name="T:Microsoft.VisualBasic.CompilerServices.StaticLocalInitFlag">
1341       <summary>The Visual Basic compiler uses this class internally when initializing static local members; it is not meant to be called directly from your code.</summary>
1342     </member>
1343     <member name="F:Microsoft.VisualBasic.CompilerServices.StaticLocalInitFlag.State">
1344       <summary>Returns the state of the static local member's initialization flag (initialized or not).</summary>
1345     </member>
1346     <member name="M:Microsoft.VisualBasic.CompilerServices.StaticLocalInitFlag.#ctor">
1347       <summary>Initializes a new instance of the <see cref="T:Microsoft.VisualBasic.CompilerServices.StaticLocalInitFlag" /> class.</summary>
1348     </member>
1349     <member name="T:Microsoft.VisualBasic.CompilerServices.StringType">
1350       <summary>This class has been deprecated as of Visual Basic 2005.</summary>
1351     </member>
1352     <member name="M:Microsoft.VisualBasic.CompilerServices.StringType.FromBoolean(System.Boolean)">
1353       <summary>Returns a <see langword="String" /> value that corresponds to the specified <see langword="Boolean" />.</summary>
1354       <param name="Value">Required. <see langword="Boolean" /> to convert to a <see langword="String" /> value.</param>
1355       <returns>The <see langword="String" /> value corresponding to <paramref name="Value" />.</returns>
1356     </member>
1357     <member name="M:Microsoft.VisualBasic.CompilerServices.StringType.FromByte(System.Byte)">
1358       <summary>Returns a <see langword="String" /> value that corresponds to the specified <see langword="Byte" />.</summary>
1359       <param name="Value">Required. <see langword="Byte" /> to convert to a <see langword="String" /> value.</param>
1360       <returns>The <see langword="String" /> value corresponding to <paramref name="Value" />.</returns>
1361     </member>
1362     <member name="M:Microsoft.VisualBasic.CompilerServices.StringType.FromChar(System.Char)">
1363       <summary>Returns a <see langword="String" /> value that corresponds to the specified <see langword="Char" />.</summary>
1364       <param name="Value">Required. <see langword="Char" /> to convert to a <see langword="String" /> value.</param>
1365       <returns>The <see langword="String" /> value corresponding to <paramref name="Value" />.</returns>
1366     </member>
1367     <member name="M:Microsoft.VisualBasic.CompilerServices.StringType.FromDate(System.DateTime)">
1368       <summary>Returns a <see langword="String" /> value that corresponds to the specified date.</summary>
1369       <param name="Value">Required. Date to convert to a <see langword="String" /> value.</param>
1370       <returns>The <see langword="String" /> value corresponding to <paramref name="Value" />.</returns>
1371     </member>
1372     <member name="M:Microsoft.VisualBasic.CompilerServices.StringType.FromDecimal(System.Decimal)">
1373       <summary>Returns a <see langword="String" /> value that corresponds to the specified <see langword="Decimal" />.</summary>
1374       <param name="Value">Required. <see langword="Decimal" /> to convert to a <see langword="String" /> value.</param>
1375       <returns>The <see langword="String" /> value corresponding to <paramref name="Value" />.</returns>
1376     </member>
1377     <member name="M:Microsoft.VisualBasic.CompilerServices.StringType.FromDecimal(System.Decimal,System.Globalization.NumberFormatInfo)">
1378       <summary>Returns a <see langword="String" /> value that corresponds to a specified <see langword="Decimal" /> and number format information.</summary>
1379       <param name="Value">Required. <see langword="Decimal" /> to convert to a <see langword="String" /> value.</param>
1380       <param name="NumberFormat">A <see cref="T:System.Globalization.NumberFormatInfo" /> object that defines how numeric values are formatted and displayed, depending on the culture.</param>
1381       <returns>The <see langword="String" /> value corresponding to <paramref name="Value" />.</returns>
1382     </member>
1383     <member name="M:Microsoft.VisualBasic.CompilerServices.StringType.FromDouble(System.Double)">
1384       <summary>Returns a string value that corresponds to a specified <see cref="T:System.Double" />.</summary>
1385       <param name="Value">Required. <see cref="T:System.Double" /> to convert to a <see cref="T:System.String" /> value.</param>
1386       <returns>The <see langword="String" /> value corresponding to <paramref name="Value" />.</returns>
1387     </member>
1388     <member name="M:Microsoft.VisualBasic.CompilerServices.StringType.FromDouble(System.Double,System.Globalization.NumberFormatInfo)">
1389       <summary>Returns a string that corresponds to a specified <see cref="T:System.Double" /> and number format information.</summary>
1390       <param name="Value">Required. <see cref="T:System.Double" /> to convert to a <see cref="T:System.String" /> value.</param>
1391       <param name="NumberFormat">A <see cref="T:System.Globalization.NumberFormatInfo" /> object that defines how numeric values are formatted and displayed, depending on the culture.</param>
1392       <returns>The string representation of <paramref name="Value" />.</returns>
1393     </member>
1394     <member name="M:Microsoft.VisualBasic.CompilerServices.StringType.FromInteger(System.Int32)">
1395       <summary>Returns a <see langword="String" /> value that corresponds to a specified <see langword="Integer" />.</summary>
1396       <param name="Value">Required. <see langword="Integer" /> to convert to a <see langword="String" /> value.</param>
1397       <returns>The <see langword="String" /> value corresponding to <paramref name="Value" />.</returns>
1398     </member>
1399     <member name="M:Microsoft.VisualBasic.CompilerServices.StringType.FromLong(System.Int64)">
1400       <summary>Returns a <see langword="String" /> value that corresponds to a specified <see cref="T:System.Int64" /> (64-bit integer).</summary>
1401       <param name="Value">Required. <see cref="T:System.Int64" /> to convert to a <see langword="String" /> value.</param>
1402       <returns>The <see langword="String" /> value corresponding to <paramref name="Value" />.</returns>
1403     </member>
1404     <member name="M:Microsoft.VisualBasic.CompilerServices.StringType.FromObject(System.Object)">
1405       <summary>Returns a <see langword="String" /> value that corresponds to the specified object.</summary>
1406       <param name="Value">Required. Object to convert to a <see langword="String" /> value.</param>
1407       <returns>The <see langword="String" /> value corresponding to <paramref name="Value" />.</returns>
1408     </member>
1409     <member name="M:Microsoft.VisualBasic.CompilerServices.StringType.FromShort(System.Int16)">
1410       <summary>Returns a <see langword="String" /> value that corresponds to a specified <see cref="T:System.Int16" /> (16-bit integer).</summary>
1411       <param name="Value">Required. <see langword="Int616" /> to convert to a <see langword="String" /> value.</param>
1412       <returns>The <see langword="String" /> value corresponding to <paramref name="Value" />.</returns>
1413     </member>
1414     <member name="M:Microsoft.VisualBasic.CompilerServices.StringType.FromSingle(System.Single)">
1415       <summary>Returns a string value that corresponds to a specified <see cref="T:System.Single" />.</summary>
1416       <param name="Value">Required. <see cref="T:System.Single" /> to convert to a <see langword="String" /> value.</param>
1417       <returns>The string value corresponding to <paramref name="Value" />.</returns>
1418     </member>
1419     <member name="M:Microsoft.VisualBasic.CompilerServices.StringType.FromSingle(System.Single,System.Globalization.NumberFormatInfo)">
1420       <summary>Returns a string value that corresponds to a specified <see cref="T:System.Single" /> and number format information.</summary>
1421       <param name="Value">Required. <see cref="T:System.Single" /> to convert to a <see langword="String" /> value.</param>
1422       <param name="NumberFormat">A <see cref="T:System.Globalization.NumberFormatInfo" /> object that defines how numeric values are formatted and displayed, depending on the culture.</param>
1423       <returns>The string value corresponding to <paramref name="Value" />.</returns>
1424     </member>
1425     <member name="M:Microsoft.VisualBasic.CompilerServices.StringType.MidStmtStr(System.String@,System.Int32,System.Int32,System.String)">
1426       <summary>Overwrites the <paramref name="sDest" /> parameter with the contents of the <paramref name="sInsert" /> parameter.</summary>
1427       <param name="sDest">Required. String variable to modify.</param>
1428       <param name="StartPosition">Required. Location in the <paramref name="sDest" /> parameter to begin overwriting from. The index is 1-based.</param>
1429       <param name="MaxInsertLength">Required. Maximum number of characters from the <paramref name="sInsert" /> parameter to use, starting from the first character.</param>
1430       <param name="sInsert">Required. String value to overwrite the <paramref name="sDest" /> parameter with.</param>
1431     </member>
1432     <member name="M:Microsoft.VisualBasic.CompilerServices.StringType.StrCmp(System.String,System.String,System.Boolean)">
1433       <summary>Compares two strings.</summary>
1434       <param name="sLeft">Required. String to compare with <paramref name="sRight" />.</param>
1435       <param name="sRight">Required. String to compare with <paramref name="sLeft" />.</param>
1436       <param name="TextCompare">Required. <see langword="True" /> to perform a case-insensitive comparison; otherwise <see langword="False" />.</param>
1437       <returns>
1438         <list type="table">
1439           <listheader>
1440             <term> Value</term>
1441             <description> Condition</description>
1442           </listheader>
1443           <item>
1444             <term> zero</term>
1445             <description> The two strings are equal.</description>
1446           </item>
1447           <item>
1448             <term> less than zero</term>
1449             <description>
1450               <paramref name="sLeft" /> is less than <paramref name="sRight" />.</description>
1451           </item>
1452           <item>
1453             <term> greater than zero</term>
1454             <description>
1455               <paramref name="sLeft" /> is greater than <paramref name="sRight" />.</description>
1456           </item>
1457         </list>
1458       </returns>
1459     </member>
1460     <member name="M:Microsoft.VisualBasic.CompilerServices.StringType.StrLike(System.String,System.String,Microsoft.VisualBasic.CompareMethod)">
1461       <summary>Compares the parameters <paramref name="Source" /> and <paramref name="Pattern" /> and returns the same results as the <see langword="Like" /> operator.</summary>
1462       <param name="Source">Required. Any <see langword="String" /> expression.</param>
1463       <param name="Pattern">Any <see langword="String" /> expression conforming to the pattern-matching conventions described in Like Operator.</param>
1464       <param name="CompareOption">Specifies how to compare strings to patterns, according to the <see cref="T:Microsoft.VisualBasic.CompareMethod" />. Can be <see langword="vbBinaryCompare" /> for binary comparison or <see langword="vbTextCompare" /> for comparison based on a case-insensitive text sort order determined by your system's <see langword="LocaleID" /> value.</param>
1465       <returns>A <see langword="Boolean" /> value indicating whether or not the string satisfies the pattern. If the value in string satisfies the pattern contained in pattern, result is <see langword="True" />. If the string does not satisfy the pattern, result is <see langword="False" />. If both string and pattern are empty strings, the result is <see langword="True" />.</returns>
1466     </member>
1467     <member name="M:Microsoft.VisualBasic.CompilerServices.StringType.StrLikeBinary(System.String,System.String)">
1468       <summary>Compares the parameters <paramref name="Source" /> and <paramref name="Pattern" /> and returns the same results as the <see langword="Like" /> operator, using binary comparison.</summary>
1469       <param name="Source">Required. Any <see langword="String" /> expression.</param>
1470       <param name="Pattern">Required. Any <see langword="String" /> expression conforming to the pattern-matching conventions described in Like Operator.</param>
1471       <returns>A <see langword="Boolean" /> value indicating whether or not the string satisfies the pattern. If the value in string satisfies the pattern contained in pattern, result is <see langword="True" />. If the string does not satisfy the pattern, result is <see langword="False" />. If both string and pattern are empty strings, the result is <see langword="True" />.</returns>
1472     </member>
1473     <member name="M:Microsoft.VisualBasic.CompilerServices.StringType.StrLikeText(System.String,System.String)">
1474       <summary>Compares the parameters <paramref name="Source" /> and <paramref name="Pattern" /> and returns the same results as the <see langword="Like" /> operator, using text comparison.</summary>
1475       <param name="Source">Required. Any <see langword="String" /> expression.</param>
1476       <param name="Pattern">Required. Any <see langword="String" /> expression conforming to the pattern-matching conventions described in Like Operator.</param>
1477       <returns>A <see langword="Boolean" /> value indicating whether or not the string satisfies the pattern. If the value in string satisfies the pattern contained in pattern, result is <see langword="True" />. If the string does not satisfy the pattern, result is <see langword="False" />. If both string and pattern are empty strings, the result is <see langword="True" />.</returns>
1478     </member>
1479     <member name="T:Microsoft.VisualBasic.CompilerServices.Utils">
1480       <summary>Contains utilities that the Visual Basic compiler uses.</summary>
1481     </member>
1482     <member name="M:Microsoft.VisualBasic.CompilerServices.Utils.CopyArray(System.Array,System.Array)">
1483       <summary>Used by the Visual Basic compiler as a helper for <see langword="Redim" />.</summary>
1484       <param name="arySrc">The array to be copied.</param>
1485       <param name="aryDest">The destination array.</param>
1486       <returns>The copied array.</returns>
1487     </member>
1488     <member name="M:Microsoft.VisualBasic.CompilerServices.Utils.GetResourceString(System.String,System.String[])">
1489       <summary>Retrieves and formats a localized resource string or error message.</summary>
1490       <param name="ResourceKey">The identifier of the string or error message to retrieve.</param>
1491       <param name="Args">An array of parameters to replace placeholders in the string or error message.</param>
1492       <returns>A formatted resource string or error message.</returns>
1493     </member>
1494     <member name="T:Microsoft.VisualBasic.CompilerServices.Versioned">
1495       <summary>The <see cref="T:Microsoft.VisualBasic.CompilerServices.Versioned" /> module contains procedures used to interact with objects, applications, and systems.</summary>
1496     </member>
1497     <member name="M:Microsoft.VisualBasic.CompilerServices.Versioned.CallByName(System.Object,System.String,Microsoft.VisualBasic.CallType,System.Object[])">
1498       <summary>Executes a method on an object, or sets or returns a property on an object.</summary>
1499       <param name="Instance">Required. <see langword="Object" />. A pointer to the object exposing the property or method.</param>
1500       <param name="MethodName">Required. <see langword="String" />. A string expression containing the name of the property or method on the object.</param>
1501       <param name="UseCallType">Required. An enumeration member of type <see cref="T:Microsoft.VisualBasic.CallType" /> representing the type of procedure being called. The value of <see langword="CallType" /> can be <see langword="Method" />, <see langword="Get" />, or <see langword="Set" />.</param>
1502       <param name="Arguments">Optional. <see langword="ParamArray" />. A parameter array containing the arguments to be passed to the property or method being called.</param>
1503       <returns>Executes a method on an object, or sets or returns a property on an object.</returns>
1504     </member>
1505     <member name="M:Microsoft.VisualBasic.CompilerServices.Versioned.IsNumeric(System.Object)">
1506       <summary>Returns a Boolean value indicating whether an expression can be evaluated as a number.</summary>
1507       <param name="Expression">Required. <see langword="Object" /> expression.</param>
1508       <returns>Returns a Boolean value indicating whether an expression can be evaluated as a number.</returns>
1509     </member>
1510     <member name="M:Microsoft.VisualBasic.CompilerServices.Versioned.SystemTypeName(System.String)">
1511       <summary>Returns a string value containing the system data type name of a variable.</summary>
1512       <param name="VbName">Required. A string variable containing a Visual Basic type name.</param>
1513       <returns>Returns a string value containing the system data type name of a variable.</returns>
1514     </member>
1515     <member name="M:Microsoft.VisualBasic.CompilerServices.Versioned.TypeName(System.Object)">
1516       <summary>Returns a string value containing data type information about a variable.</summary>
1517       <param name="Expression">Required. <see langword="Object" /> variable. If <see langword="Option Strict" /> is <see langword="Off" />, you can pass a variable of any data type except a structure.</param>
1518       <returns>Returns a string value containing data type information about a variable.</returns>
1519     </member>
1520     <member name="M:Microsoft.VisualBasic.CompilerServices.Versioned.VbTypeName(System.String)">
1521       <summary>Returns a string value containing the Visual Basic data type name of a variable.</summary>
1522       <param name="SystemName">Required. String variable containing a type name used by the common language runtime.</param>
1523       <returns>Returns a string value containing the Visual Basic data type name of a variable.</returns>
1524     </member>
1525     <member name="T:Microsoft.VisualBasic.Constants">
1526       <summary>The <see langword="Constants" /> module contains miscellaneous constants. These constants can be used anywhere in your code.</summary>
1527     </member>
1528     <member name="F:Microsoft.VisualBasic.Constants.vbAbort">
1529       <summary>Indicates that the <see langword="Abort" /> button was clicked in a message box. Returned by the <see langword="MsgBox" /> function.</summary>
1530     </member>
1531     <member name="F:Microsoft.VisualBasic.Constants.vbAbortRetryIgnore">
1532       <summary>Indicates that the <see langword="Abort" />, <see langword="Retry" />, and <see langword="Ignore" /> buttons will be displayed when the <see langword="MsgBox" /> function is called.</summary>
1533     </member>
1534     <member name="F:Microsoft.VisualBasic.Constants.vbApplicationModal">
1535       <summary>Indicates that the message box will be displayed as a modal dialog box when the <see langword="MsgBox" /> function is called.</summary>
1536     </member>
1537     <member name="F:Microsoft.VisualBasic.Constants.vbArchive">
1538       <summary>Indicates that the file has changed since the last backup operation for file-access functions.</summary>
1539     </member>
1540     <member name="F:Microsoft.VisualBasic.Constants.vbArray">
1541       <summary>Indicates that the type of a variant object is an array. Returned by the <see langword="VarType" /> function.</summary>
1542     </member>
1543     <member name="F:Microsoft.VisualBasic.Constants.vbBack">
1544       <summary>Represents a backspace character for print and display functions.</summary>
1545     </member>
1546     <member name="F:Microsoft.VisualBasic.Constants.vbBinaryCompare">
1547       <summary>Specifies that a binary comparison should be performed when comparison functions are called.</summary>
1548     </member>
1549     <member name="F:Microsoft.VisualBasic.Constants.vbBoolean">
1550       <summary>Indicates that the type of a variant object is <see langword="Boolean" />. Returned by the <see langword="VarType" /> function.</summary>
1551     </member>
1552     <member name="F:Microsoft.VisualBasic.Constants.vbByte">
1553       <summary>Indicates that the type of a variant object is <see langword="Byte" />. Returned by the <see langword="VarType" /> function.</summary>
1554     </member>
1555     <member name="F:Microsoft.VisualBasic.Constants.vbCancel">
1556       <summary>Indicates that the <see langword="Cancel" /> button was clicked in a message box. Returned by the <see langword="MsgBox" /> function.</summary>
1557     </member>
1558     <member name="F:Microsoft.VisualBasic.Constants.vbCr">
1559       <summary>Represents a carriage-return character for print and display functions.</summary>
1560     </member>
1561     <member name="F:Microsoft.VisualBasic.Constants.vbCritical">
1562       <summary>Indicates that the critical message icon will be displayed when the <see langword="MsgBox" /> function is called.</summary>
1563     </member>
1564     <member name="F:Microsoft.VisualBasic.Constants.vbCrLf">
1565       <summary>Represents a carriage-return character combined with a linefeed character for print and display functions.</summary>
1566     </member>
1567     <member name="F:Microsoft.VisualBasic.Constants.vbCurrency">
1568       <summary>Indicates that the type of a variant object is <see langword="Currency" />. Returned by the <see langword="VarType" /> function.</summary>
1569     </member>
1570     <member name="F:Microsoft.VisualBasic.Constants.vbDate">
1571       <summary>Indicates that the type of a variant object is <see langword="Date" />. Returned by the <see langword="VarType" /> function.</summary>
1572     </member>
1573     <member name="F:Microsoft.VisualBasic.Constants.vbDecimal">
1574       <summary>Indicates that the type of a variant object is <see langword="Decimal" />. Returned by the <see langword="VarType" /> function.</summary>
1575     </member>
1576     <member name="F:Microsoft.VisualBasic.Constants.vbDefaultButton1">
1577       <summary>Indicates that the leftmost button is selected as the default button when the message box appears.</summary>
1578     </member>
1579     <member name="F:Microsoft.VisualBasic.Constants.vbDefaultButton2">
1580       <summary>Indicates that the second button from the left is selected as the default button when the message box appears.</summary>
1581     </member>
1582     <member name="F:Microsoft.VisualBasic.Constants.vbDefaultButton3">
1583       <summary>Indicates that the third button from the left is selected as the default button when the message box appears.</summary>
1584     </member>
1585     <member name="F:Microsoft.VisualBasic.Constants.vbDirectory">
1586       <summary>Indicates that the file is a directory or folder for file-access functions.</summary>
1587     </member>
1588     <member name="F:Microsoft.VisualBasic.Constants.vbDouble">
1589       <summary>Indicates that the type of a variant object is <see langword="Double" />. Returned by the <see langword="VarType" /> function.</summary>
1590     </member>
1591     <member name="F:Microsoft.VisualBasic.Constants.vbEmpty">
1592       <summary>Indicates that the type of a variant object is <see langword="Empty" />. Returned by the <see langword="VarType" /> function.</summary>
1593     </member>
1594     <member name="F:Microsoft.VisualBasic.Constants.vbExclamation">
1595       <summary>Indicates that the exclamation icon will be displayed when the <see langword="MsgBox" /> function is called.</summary>
1596     </member>
1597     <member name="F:Microsoft.VisualBasic.Constants.vbFalse">
1598       <summary>Indicates that a <see langword="Boolean" /> value of <see langword="False" /> should be used when number-formatting functions are called.</summary>
1599     </member>
1600     <member name="F:Microsoft.VisualBasic.Constants.vbFirstFourDays">
1601       <summary>Indicates that the first week of the year that has at least four days should be used when date-related functions are called.</summary>
1602     </member>
1603     <member name="F:Microsoft.VisualBasic.Constants.vbFirstFullWeek">
1604       <summary>Indicates that the first full week of the year should be used when date-related functions are called.</summary>
1605     </member>
1606     <member name="F:Microsoft.VisualBasic.Constants.vbFirstJan1">
1607       <summary>Indicates that the week of the year in which January 1 occurs should be used when date-related functions are called.</summary>
1608     </member>
1609     <member name="F:Microsoft.VisualBasic.Constants.vbFormFeed">
1610       <summary>Represents a form-feed character for print functions.</summary>
1611     </member>
1612     <member name="F:Microsoft.VisualBasic.Constants.vbFriday">
1613       <summary>Specifies that Friday should be used as the first day of the week when date-related functions are called.</summary>
1614     </member>
1615     <member name="F:Microsoft.VisualBasic.Constants.vbGeneralDate">
1616       <summary>Indicates that the general date format for the current culture should be used when the <see langword="FormatDateTime" /> function is called.</summary>
1617     </member>
1618     <member name="F:Microsoft.VisualBasic.Constants.vbGet">
1619       <summary>Specifies that a property value should be retrieved when the <see langword="CallByName" /> function is called.</summary>
1620     </member>
1621     <member name="F:Microsoft.VisualBasic.Constants.vbHidden">
1622       <summary>Indicates that the file is a hidden file for file-access functions.</summary>
1623     </member>
1624     <member name="F:Microsoft.VisualBasic.Constants.vbHide">
1625       <summary>Indicates that the window style is hidden for the invoked program when the <see langword="Shell" /> function is called.</summary>
1626     </member>
1627     <member name="F:Microsoft.VisualBasic.Constants.vbHiragana">
1628       <summary>Indicates Hiragana characters should be converted to Katakana characters when the <see langword="StrConv" /> function is called.</summary>
1629     </member>
1630     <member name="F:Microsoft.VisualBasic.Constants.vbIgnore">
1631       <summary>Indicates that the <see langword="Ignore" /> button was clicked in a message box. Returned by the <see langword="MsgBox" /> function.</summary>
1632     </member>
1633     <member name="F:Microsoft.VisualBasic.Constants.vbInformation">
1634       <summary>Indicates that the information icon will display when the <see langword="MsgBox" /> function is called.</summary>
1635     </member>
1636     <member name="F:Microsoft.VisualBasic.Constants.vbInteger">
1637       <summary>Indicates that the type of a variant object is <see langword="Integer" />. Returned by the <see langword="VarType" /> function.</summary>
1638     </member>
1639     <member name="F:Microsoft.VisualBasic.Constants.vbKatakana">
1640       <summary>Indicates that Katakana characters should be converted to Hiragana characters when the <see langword="StrConv" /> function is called.</summary>
1641     </member>
1642     <member name="F:Microsoft.VisualBasic.Constants.vbLet">
1643       <summary>Indicates that a property value should be set to an object instance when the <see langword="CallByName" /> function is called.</summary>
1644     </member>
1645     <member name="F:Microsoft.VisualBasic.Constants.vbLf">
1646       <summary>Represents a linefeed character for print and display functions.</summary>
1647     </member>
1648     <member name="F:Microsoft.VisualBasic.Constants.vbLinguisticCasing">
1649       <summary>Indicates that characters should be converted to use linguistic rules for casing instead of file system rules for casing to when the <see langword="StrConv" /> function is called.</summary>
1650     </member>
1651     <member name="F:Microsoft.VisualBasic.Constants.vbLong">
1652       <summary>Indicates the type of a variant object is <see langword="Long" />. Returned by the <see langword="VarType" /> function.</summary>
1653     </member>
1654     <member name="F:Microsoft.VisualBasic.Constants.vbLongDate">
1655       <summary>Indicates that the long date format for the current culture should be used when the <see langword="FormatDateTime" /> function is called.</summary>
1656     </member>
1657     <member name="F:Microsoft.VisualBasic.Constants.vbLongTime">
1658       <summary>Indicates that the long time format for the current culture should be used when the <see langword="FormatDateTime" /> function is called.</summary>
1659     </member>
1660     <member name="F:Microsoft.VisualBasic.Constants.vbLowerCase">
1661       <summary>Indicates that characters should be converted to lowercase when the <see langword="StrConv" /> function is called.</summary>
1662     </member>
1663     <member name="F:Microsoft.VisualBasic.Constants.vbMaximizedFocus">
1664       <summary>Indicates that the window style is maximized with focus for the invoked program when the <see langword="Shell" /> function is called.</summary>
1665     </member>
1666     <member name="F:Microsoft.VisualBasic.Constants.vbMethod">
1667       <summary>Specifies that a method should be called when the <see langword="CallByName" /> function is called.</summary>
1668     </member>
1669     <member name="F:Microsoft.VisualBasic.Constants.vbMinimizedFocus">
1670       <summary>Indicates that the window style is minimized with focus for the invoked program when the <see langword="Shell" /> function is called.</summary>
1671     </member>
1672     <member name="F:Microsoft.VisualBasic.Constants.vbMinimizedNoFocus">
1673       <summary>Indicates that the window style is minimized without focus for the invoked program when the <see langword="Shell" /> function is called.</summary>
1674     </member>
1675     <member name="F:Microsoft.VisualBasic.Constants.vbMonday">
1676       <summary>Specifies that Monday should be used as the first day of the week when date-related functions are called.</summary>
1677     </member>
1678     <member name="F:Microsoft.VisualBasic.Constants.vbMsgBoxHelp">
1679       <summary>Indicates that the <see langword="Help" /> button will be displayed when the <see langword="MsgBox" /> function is called.</summary>
1680     </member>
1681     <member name="F:Microsoft.VisualBasic.Constants.vbMsgBoxRight">
1682       <summary>Indicates that text will be right-aligned when the <see langword="MsgBox" /> function is called.</summary>
1683     </member>
1684     <member name="F:Microsoft.VisualBasic.Constants.vbMsgBoxRtlReading">
1685       <summary>Indicates that right-to-left reading text (Hebrew and Arabic systems) will be displayed when the <see langword="MsgBox" /> function is called.</summary>
1686     </member>
1687     <member name="F:Microsoft.VisualBasic.Constants.vbMsgBoxSetForeground">
1688       <summary>Indicates that the message box will display in the foreground when the <see langword="MsgBox" /> function is called.</summary>
1689     </member>
1690     <member name="F:Microsoft.VisualBasic.Constants.vbNarrow">
1691       <summary>Indicates that wide (double-byte) characters should be converted to narrow (single-byte) characters when the <see langword="StrConv" /> function is called.</summary>
1692     </member>
1693     <member name="F:Microsoft.VisualBasic.Constants.vbNewLine">
1694       <summary>Represents a newline character for print and display functions.</summary>
1695     </member>
1696     <member name="F:Microsoft.VisualBasic.Constants.vbNo">
1697       <summary>Indicates that the <see langword="No" /> button was clicked in a message box. Returned by the <see langword="MsgBox" /> function.</summary>
1698     </member>
1699     <member name="F:Microsoft.VisualBasic.Constants.vbNormal">
1700       <summary>Indicates that the file is a normal file for file-access functions.</summary>
1701     </member>
1702     <member name="F:Microsoft.VisualBasic.Constants.vbNormalFocus">
1703       <summary>Indicates that the window style is normal with focus for the invoked program when the <see langword="Shell" /> function is called.</summary>
1704     </member>
1705     <member name="F:Microsoft.VisualBasic.Constants.vbNormalNoFocus">
1706       <summary>Indicates that the window style is normal without focus for the invoked program when the <see langword="Shell" /> function is called.</summary>
1707     </member>
1708     <member name="F:Microsoft.VisualBasic.Constants.vbNull">
1709       <summary>Indicates that the type of a variant object is <see langword="Nothing" />. Returned by the <see langword="VarType" /> function.</summary>
1710     </member>
1711     <member name="F:Microsoft.VisualBasic.Constants.vbNullChar">
1712       <summary>Represents a null character for print and display functions.</summary>
1713     </member>
1714     <member name="F:Microsoft.VisualBasic.Constants.vbNullString">
1715       <summary>Represents a zero-length string for print and display functions, and for calling external procedures.</summary>
1716     </member>
1717     <member name="F:Microsoft.VisualBasic.Constants.vbObject">
1718       <summary>Indicates that the type of a variant object is <see langword="Object" />. Returned by the <see langword="VarType" /> function.</summary>
1719     </member>
1720     <member name="F:Microsoft.VisualBasic.Constants.vbObjectError">
1721       <summary>Represents the object error number. User-defined error numbers should be greater than this value.</summary>
1722     </member>
1723     <member name="F:Microsoft.VisualBasic.Constants.vbOK">
1724       <summary>Indicates that the <see langword="OK" /> button was clicked in a message box. Returned by the <see langword="MsgBox" /> function.</summary>
1725     </member>
1726     <member name="F:Microsoft.VisualBasic.Constants.vbOKCancel">
1727       <summary>Indicates that the <see langword="OK" /> and <see langword="Cancel" /> buttons will be displayed when the <see langword="MsgBox" /> function is called.</summary>
1728     </member>
1729     <member name="F:Microsoft.VisualBasic.Constants.vbOKOnly">
1730       <summary>Indicates that only the <see langword="OK" /> button will be displayed when the <see langword="MsgBox" /> function is called.</summary>
1731     </member>
1732     <member name="F:Microsoft.VisualBasic.Constants.vbProperCase">
1733       <summary>Indicates that the first letter of every word in a string should be converted to uppercase and the remaining characters to lowercase when the <see langword="StrConv" /> function is called.</summary>
1734     </member>
1735     <member name="F:Microsoft.VisualBasic.Constants.vbQuestion">
1736       <summary>Indicates that the question icon will be displayed when the <see langword="MsgBox" /> function is called.</summary>
1737     </member>
1738     <member name="F:Microsoft.VisualBasic.Constants.vbReadOnly">
1739       <summary>Indicates that the file is a read-only file for file-access functions.</summary>
1740     </member>
1741     <member name="F:Microsoft.VisualBasic.Constants.vbRetry">
1742       <summary>Indicates that the <see langword="Retry" /> button was clicked in a message box. Returned by the <see langword="MsgBox" /> function.</summary>
1743     </member>
1744     <member name="F:Microsoft.VisualBasic.Constants.vbRetryCancel">
1745       <summary>Indicates that the <see langword="Retry" /> and <see langword="Cancel" /> buttons will be displayed when the <see langword="MsgBox" /> function is called.</summary>
1746     </member>
1747     <member name="F:Microsoft.VisualBasic.Constants.vbSaturday">
1748       <summary>Specifies that Saturday should be used as the first day of the week when date-related functions are called.</summary>
1749     </member>
1750     <member name="F:Microsoft.VisualBasic.Constants.vbSet">
1751       <summary>Indicates that a property value should be set when the <see langword="CallByName" /> function is called.</summary>
1752     </member>
1753     <member name="F:Microsoft.VisualBasic.Constants.vbShortDate">
1754       <summary>Indicates that the short-date format for the current culture should be used when the <see langword="FormatDateTime" /> function is called.</summary>
1755     </member>
1756     <member name="F:Microsoft.VisualBasic.Constants.vbShortTime">
1757       <summary>Indicates that the short-time format for the current culture should be used when the <see langword="FormatDateTime" /> function is called.</summary>
1758     </member>
1759     <member name="F:Microsoft.VisualBasic.Constants.vbSimplifiedChinese">
1760       <summary>Indicates that characters should be converted to Simplified Chinese when the <see langword="StrConv" /> function is called.</summary>
1761     </member>
1762     <member name="F:Microsoft.VisualBasic.Constants.vbSingle">
1763       <summary>Indicates that the type of a variant object is <see cref="T:System.Single" />. Returned by the <see langword="VarType" /> function.</summary>
1764     </member>
1765     <member name="F:Microsoft.VisualBasic.Constants.vbString">
1766       <summary>Indicates that the type of a variant object is <see langword="String" />. Returned by the <see langword="VarType" /> function.</summary>
1767     </member>
1768     <member name="F:Microsoft.VisualBasic.Constants.vbSunday">
1769       <summary>Specifies that Sunday should be used as the first day of the week when date-related functions are called.</summary>
1770     </member>
1771     <member name="F:Microsoft.VisualBasic.Constants.vbSystem">
1772       <summary>Indicates that the file is a system file for file-access functions.</summary>
1773     </member>
1774     <member name="F:Microsoft.VisualBasic.Constants.vbSystemModal">
1775       <summary>Indicates that the message box will be displayed as a modal dialog box when the <see langword="MsgBox" /> function is called.</summary>
1776     </member>
1777     <member name="F:Microsoft.VisualBasic.Constants.vbTab">
1778       <summary>Represents a tab character for print and display functions.</summary>
1779     </member>
1780     <member name="F:Microsoft.VisualBasic.Constants.vbTextCompare">
1781       <summary>Indicates that a text comparison should be performed when comparison functions are called.</summary>
1782     </member>
1783     <member name="F:Microsoft.VisualBasic.Constants.vbThursday">
1784       <summary>Specifies that Thursday should be used as the first day of the week when date-related functions are called.</summary>
1785     </member>
1786     <member name="F:Microsoft.VisualBasic.Constants.vbTraditionalChinese">
1787       <summary>Indicates that characters should be converted to Traditional Chinese when the <see langword="StrConv" /> function is called.</summary>
1788     </member>
1789     <member name="F:Microsoft.VisualBasic.Constants.vbTrue">
1790       <summary>Indicates that a <see langword="Boolean" /> value of <see langword="True" /> should be used when number-formatting functions are called.</summary>
1791     </member>
1792     <member name="F:Microsoft.VisualBasic.Constants.vbTuesday">
1793       <summary>Specifies that Tuesday should be used as the first day of the week when date-related functions are called.</summary>
1794     </member>
1795     <member name="F:Microsoft.VisualBasic.Constants.vbUpperCase">
1796       <summary>Indicates that characters should be converted to uppercase when the <see langword="StrConv" /> function is called.</summary>
1797     </member>
1798     <member name="F:Microsoft.VisualBasic.Constants.vbUseDefault">
1799       <summary>Indicates that the default <see langword="Boolean" /> value should be used when number-formatting functions are called.</summary>
1800     </member>
1801     <member name="F:Microsoft.VisualBasic.Constants.vbUserDefinedType">
1802       <summary>Indicates that the type of a variant object is a user-defined type. Returned by the <see langword="VarType" /> function.</summary>
1803     </member>
1804     <member name="F:Microsoft.VisualBasic.Constants.vbUseSystem">
1805       <summary>Indicates that the week specified by your system as the first week of the year should be used when date-related functions are called.</summary>
1806     </member>
1807     <member name="F:Microsoft.VisualBasic.Constants.vbUseSystemDayOfWeek">
1808       <summary>Indicates that the day specified by your system as the first day of the week should be used when date-related functions are called.</summary>
1809     </member>
1810     <member name="F:Microsoft.VisualBasic.Constants.vbVariant">
1811       <summary>Indicates that the type of a variant object is <see langword="Variant" />. Returned by the <see langword="VarType" /> function.</summary>
1812     </member>
1813     <member name="F:Microsoft.VisualBasic.Constants.vbVerticalTab">
1814       <summary>Represents a carriage-return character for print functions.</summary>
1815     </member>
1816     <member name="F:Microsoft.VisualBasic.Constants.vbVolume">
1817       <summary>Indicates the volume label file attribute for file-access functions.</summary>
1818     </member>
1819     <member name="F:Microsoft.VisualBasic.Constants.vbWednesday">
1820       <summary>Specifies that Wednesday should be used as the first day of the week when date-related functions are called.</summary>
1821     </member>
1822     <member name="F:Microsoft.VisualBasic.Constants.vbWide">
1823       <summary>Indicates that narrow (single-byte) characters should be converted to wide (double-byte) characters when the <see langword="StrConv" /> function is called.</summary>
1824     </member>
1825     <member name="F:Microsoft.VisualBasic.Constants.vbYes">
1826       <summary>Indicates that the <see langword="Yes" /> button was clicked in a message box. Returned by the <see langword="MsgBox" /> function.</summary>
1827     </member>
1828     <member name="F:Microsoft.VisualBasic.Constants.vbYesNo">
1829       <summary>Indicates that the <see langword="Yes" /> and <see langword="No" /> buttons will be displayed when the <see langword="MsgBox" /> function is called.</summary>
1830     </member>
1831     <member name="F:Microsoft.VisualBasic.Constants.vbYesNoCancel">
1832       <summary>Indicates that the <see langword="Yes" />, <see langword="No" />, and <see langword="Cancel" /> buttons will be displayed when the <see langword="MsgBox" /> function is called.</summary>
1833     </member>
1834     <member name="T:Microsoft.VisualBasic.ControlChars">
1835       <summary>The <see langword="ControlChars" /> module contains constants used as control characters. These constants can be used anywhere in your code.</summary>
1836     </member>
1837     <member name="F:Microsoft.VisualBasic.ControlChars.Back">
1838       <summary>Represents a backspace character (<see langword="vbBack" />).</summary>
1839     </member>
1840     <member name="F:Microsoft.VisualBasic.ControlChars.Cr">
1841       <summary>Represents a carriage return character (<see langword="vbCr" />).</summary>
1842     </member>
1843     <member name="F:Microsoft.VisualBasic.ControlChars.CrLf">
1844       <summary>Represents a carriage return/linefeed character combination (<see langword="vbCrLf" />).</summary>
1845     </member>
1846     <member name="F:Microsoft.VisualBasic.ControlChars.FormFeed">
1847       <summary>Represents a form feed character for print functions (<see langword="vbFormFeed" />).</summary>
1848     </member>
1849     <member name="F:Microsoft.VisualBasic.ControlChars.Lf">
1850       <summary>Represents a line feed character (<see langword="vbLf" />).</summary>
1851     </member>
1852     <member name="F:Microsoft.VisualBasic.ControlChars.NewLine">
1853       <summary>Represents a new line character (<see langword="vbNewLine" />).</summary>
1854     </member>
1855     <member name="F:Microsoft.VisualBasic.ControlChars.NullChar">
1856       <summary>Represents a null character (<see langword="vbNullChar" />).</summary>
1857     </member>
1858     <member name="F:Microsoft.VisualBasic.ControlChars.Quote">
1859       <summary>Represents a double-quote character.</summary>
1860     </member>
1861     <member name="F:Microsoft.VisualBasic.ControlChars.Tab">
1862       <summary>Represents a tab character (<see langword="vbTab" />).</summary>
1863     </member>
1864     <member name="F:Microsoft.VisualBasic.ControlChars.VerticalTab">
1865       <summary>Represents a vertical tab character (<see langword="vbVerticalTab" />).</summary>
1866     </member>
1867     <member name="M:Microsoft.VisualBasic.ControlChars.#ctor">
1868       <summary>Initializes a new instance of the <see cref="T:Microsoft.VisualBasic.ControlChars" /> class.</summary>
1869     </member>
1870     <member name="T:Microsoft.VisualBasic.Conversion">
1871       <summary>The <see langword="Conversion" /> module contains the procedures used to perform various conversion operations.</summary>
1872     </member>
1873     <member name="M:Microsoft.VisualBasic.Conversion.CTypeDynamic(System.Object,System.Type)">
1874       <summary>Converts an object to the specified type.</summary>
1875       <param name="Expression">The object to convert.</param>
1876       <param name="TargetType">The type to which to convert the object.</param>
1877       <returns>An object whose type at run time is the requested target type.</returns>
1878     </member>
1879     <member name="M:Microsoft.VisualBasic.Conversion.CTypeDynamic``1(System.Object)">
1880       <summary>Converts an object to the specified generic type.</summary>
1881       <param name="Expression">The object to convert.</param>
1882       <typeparam name="TargetType">The type to which to convert the object.</typeparam>
1883       <returns>An object statically typed as the requested generic type.</returns>
1884     </member>
1885     <member name="M:Microsoft.VisualBasic.Conversion.ErrorToString">
1886       <summary>Returns the error message that corresponds to a given error number.</summary>
1887       <exception cref="T:System.ArgumentException">
1888         <paramref name="ErrorNumber" /> is out of range.</exception>
1889       <returns>The error message that corresponds to the most recent run-time error.</returns>
1890     </member>
1891     <member name="M:Microsoft.VisualBasic.Conversion.ErrorToString(System.Int32)">
1892       <summary>Returns the error message that corresponds to a given error number.</summary>
1893       <param name="ErrorNumber">Optional. Any valid error number.</param>
1894       <exception cref="T:System.ArgumentException">
1895         <paramref name="ErrorNumber" /> is out of range.</exception>
1896       <returns>The error message that corresponds to a given error number.</returns>
1897     </member>
1898     <member name="M:Microsoft.VisualBasic.Conversion.Fix(System.Decimal)">
1899       <summary>Returns the integer portion of a number.</summary>
1900       <param name="Number">Required. A number of type <see langword="Decimal" /> or any valid numeric expression.</param>
1901       <exception cref="T:System.ArgumentNullException">Number is not specified.</exception>
1902       <exception cref="T:System.ArgumentException">Number is not a numeric type.</exception>
1903       <returns>The integer portion of a number.</returns>
1904     </member>
1905     <member name="M:Microsoft.VisualBasic.Conversion.Fix(System.Double)">
1906       <summary>Returns the integer portion of a number.</summary>
1907       <param name="Number">Required. A number of type <see cref="T:System.Double" /> or any valid numeric expression.</param>
1908       <exception cref="T:System.ArgumentNullException">Number is not specified.</exception>
1909       <exception cref="T:System.ArgumentException">Number is not a numeric type.</exception>
1910       <returns>The integer portion of a number.</returns>
1911     </member>
1912     <member name="M:Microsoft.VisualBasic.Conversion.Fix(System.Int16)">
1913       <summary>Returns the integer portion of a number.</summary>
1914       <param name="Number">Required. A number of type <see langword="Short" /> or any valid numeric expression.</param>
1915       <exception cref="T:System.ArgumentNullException">Number is not specified.</exception>
1916       <exception cref="T:System.ArgumentException">Number is not a numeric type.</exception>
1917       <returns>The integer portion of a number.</returns>
1918     </member>
1919     <member name="M:Microsoft.VisualBasic.Conversion.Fix(System.Int32)">
1920       <summary>Returns the integer portion of a number.</summary>
1921       <param name="Number">Required. A number of type <see langword="Integer" /> or any valid numeric expression.</param>
1922       <exception cref="T:System.ArgumentNullException">Number is not specified.</exception>
1923       <exception cref="T:System.ArgumentException">Number is not a numeric type.</exception>
1924       <returns>The integer portion of a number.</returns>
1925     </member>
1926     <member name="M:Microsoft.VisualBasic.Conversion.Fix(System.Int64)">
1927       <summary>Returns the integer portion of a number.</summary>
1928       <param name="Number">Required. A number of type <see langword="Long" /> or any valid numeric expression.</param>
1929       <exception cref="T:System.ArgumentNullException">Number is not specified.</exception>
1930       <exception cref="T:System.ArgumentException">Number is not a numeric type.</exception>
1931       <returns>The integer portion of a number.</returns>
1932     </member>
1933     <member name="M:Microsoft.VisualBasic.Conversion.Fix(System.Object)">
1934       <summary>Returns the integer portion of a number.</summary>
1935       <param name="Number">Required. A number of type <see langword="Object" /> or any valid numeric expression. If <paramref name="Number" /> contains <see langword="Nothing" />, <see langword="Nothing" /> is returned.</param>
1936       <exception cref="T:System.ArgumentNullException">Number is not specified.</exception>
1937       <exception cref="T:System.ArgumentException">Number is not a numeric type.</exception>
1938       <returns>The integer portion of a number.</returns>
1939     </member>
1940     <member name="M:Microsoft.VisualBasic.Conversion.Fix(System.Single)">
1941       <summary>Returns the integer portion of a number.</summary>
1942       <param name="Number">Required. A number of type <see cref="T:System.Single" /> or any valid numeric expression.</param>
1943       <exception cref="T:System.ArgumentNullException">Number is not specified.</exception>
1944       <exception cref="T:System.ArgumentException">Number is not a numeric type.</exception>
1945       <returns>The integer portion of a number.</returns>
1946     </member>
1947     <member name="M:Microsoft.VisualBasic.Conversion.Hex(System.Byte)">
1948       <summary>Returns a string representing the hexadecimal value of a number.</summary>
1949       <param name="Number">Required. Any valid numeric expression or <see langword="String" /> expression.</param>
1950       <exception cref="T:System.ArgumentNullException">
1951         <paramref name="Number" /> is not specified.</exception>
1952       <exception cref="T:System.ArgumentException">
1953         <paramref name="Number" /> is not a numeric type.</exception>
1954       <returns>A string representing the hexadecimal value of a number.</returns>
1955     </member>
1956     <member name="M:Microsoft.VisualBasic.Conversion.Hex(System.Int16)">
1957       <summary>Returns a string representing the hexadecimal value of a number.</summary>
1958       <param name="Number">Required. Any valid numeric expression or <see langword="String" /> expression.</param>
1959       <exception cref="T:System.ArgumentNullException">
1960         <paramref name="Number" /> is not specified.</exception>
1961       <exception cref="T:System.ArgumentException">
1962         <paramref name="Number" /> is not a numeric type.</exception>
1963       <returns>A string representing the hexadecimal value of a number.</returns>
1964     </member>
1965     <member name="M:Microsoft.VisualBasic.Conversion.Hex(System.Int32)">
1966       <summary>Returns a string representing the hexadecimal value of a number.</summary>
1967       <param name="Number">Required. Any valid numeric expression or <see langword="String" /> expression.</param>
1968       <exception cref="T:System.ArgumentNullException">
1969         <paramref name="Number" /> is not specified.</exception>
1970       <exception cref="T:System.ArgumentException">
1971         <paramref name="Number" /> is not a numeric type.</exception>
1972       <returns>A string representing the hexadecimal value of a number.</returns>
1973     </member>
1974     <member name="M:Microsoft.VisualBasic.Conversion.Hex(System.Int64)">
1975       <summary>Returns a string representing the hexadecimal value of a number.</summary>
1976       <param name="Number">Required. Any valid numeric expression or <see langword="String" /> expression.</param>
1977       <exception cref="T:System.ArgumentNullException">
1978         <paramref name="Number" /> is not specified.</exception>
1979       <exception cref="T:System.ArgumentException">
1980         <paramref name="Number" /> is not a numeric type.</exception>
1981       <returns>A string representing the hexadecimal value of a number.</returns>
1982     </member>
1983     <member name="M:Microsoft.VisualBasic.Conversion.Hex(System.Object)">
1984       <summary>Returns a string representing the hexadecimal value of a number.</summary>
1985       <param name="Number">Required. Any valid numeric expression or <see langword="String" /> expression.</param>
1986       <exception cref="T:System.ArgumentNullException">
1987         <paramref name="Number" /> is not specified.</exception>
1988       <exception cref="T:System.ArgumentException">
1989         <paramref name="Number" /> is not a numeric type.</exception>
1990       <returns>A string representing the hexadecimal value of a number.</returns>
1991     </member>
1992     <member name="M:Microsoft.VisualBasic.Conversion.Hex(System.SByte)">
1993       <summary>Returns a string representing the hexadecimal value of a number.</summary>
1994       <param name="Number">Required. Any valid numeric expression or <see langword="String" /> expression.</param>
1995       <exception cref="T:System.ArgumentNullException">
1996         <paramref name="Number" /> is not specified.</exception>
1997       <exception cref="T:System.ArgumentException">
1998         <paramref name="Number" /> is not a numeric type.</exception>
1999       <returns>A string representing the hexadecimal value of a number.</returns>
2000     </member>
2001     <member name="M:Microsoft.VisualBasic.Conversion.Hex(System.UInt16)">
2002       <summary>Returns a string representing the hexadecimal value of a number.</summary>
2003       <param name="Number">Required. Any valid numeric expression or <see langword="String" /> expression.</param>
2004       <exception cref="T:System.ArgumentNullException">
2005         <paramref name="Number" /> is not specified.</exception>
2006       <exception cref="T:System.ArgumentException">
2007         <paramref name="Number" /> is not a numeric type.</exception>
2008       <returns>A string representing the hexadecimal value of a number.</returns>
2009     </member>
2010     <member name="M:Microsoft.VisualBasic.Conversion.Hex(System.UInt32)">
2011       <summary>Returns a string representing the hexadecimal value of a number.</summary>
2012       <param name="Number">Required. Any valid numeric expression or <see langword="String" /> expression.</param>
2013       <exception cref="T:System.ArgumentNullException">
2014         <paramref name="Number" /> is not specified.</exception>
2015       <exception cref="T:System.ArgumentException">
2016         <paramref name="Number" /> is not a numeric type.</exception>
2017       <returns>A string representing the hexadecimal value of a number.</returns>
2018     </member>
2019     <member name="M:Microsoft.VisualBasic.Conversion.Hex(System.UInt64)">
2020       <summary>Returns a string representing the hexadecimal value of a number.</summary>
2021       <param name="Number">Required. Any valid numeric expression or <see langword="String" /> expression.</param>
2022       <exception cref="T:System.ArgumentNullException">
2023         <paramref name="Number" /> is not specified.</exception>
2024       <exception cref="T:System.ArgumentException">
2025         <paramref name="Number" /> is not a numeric type.</exception>
2026       <returns>A string representing the hexadecimal value of a number.</returns>
2027     </member>
2028     <member name="M:Microsoft.VisualBasic.Conversion.Int(System.Decimal)">
2029       <summary>Returns the integer portion of a number.</summary>
2030       <param name="Number">Required. A number of type <see langword="Decimal" /> or any valid numeric expression.</param>
2031       <exception cref="T:System.ArgumentNullException">Number is not specified.</exception>
2032       <exception cref="T:System.ArgumentException">Number is not a numeric type.</exception>
2033       <returns>The integer portion of a number.</returns>
2034     </member>
2035     <member name="M:Microsoft.VisualBasic.Conversion.Int(System.Double)">
2036       <summary>Returns the integer portion of a number.</summary>
2037       <param name="Number">Required. A number of type <see cref="T:System.Double" /> or any valid numeric expression.</param>
2038       <exception cref="T:System.ArgumentNullException">Number is not specified.</exception>
2039       <exception cref="T:System.ArgumentException">Number is not a numeric type.</exception>
2040       <returns>The integer portion of a number.</returns>
2041     </member>
2042     <member name="M:Microsoft.VisualBasic.Conversion.Int(System.Int16)">
2043       <summary>Returns the integer portion of a number.</summary>
2044       <param name="Number">Required. A number of type <see langword="Short" /> or any valid numeric expression.</param>
2045       <exception cref="T:System.ArgumentNullException">Number is not specified.</exception>
2046       <exception cref="T:System.ArgumentException">Number is not a numeric type.</exception>
2047       <returns>The integer portion of a number.</returns>
2048     </member>
2049     <member name="M:Microsoft.VisualBasic.Conversion.Int(System.Int32)">
2050       <summary>Returns the integer portion of a number.</summary>
2051       <param name="Number">Required. A number of type <see langword="Integer" /> or any valid numeric expression.</param>
2052       <exception cref="T:System.ArgumentNullException">Number is not specified.</exception>
2053       <exception cref="T:System.ArgumentException">Number is not a numeric type.</exception>
2054       <returns>The integer portion of a number.</returns>
2055     </member>
2056     <member name="M:Microsoft.VisualBasic.Conversion.Int(System.Int64)">
2057       <summary>Returns the integer portion of a number.</summary>
2058       <param name="Number">Required. A number of type <see langword="Long" /> or any valid numeric expression.</param>
2059       <exception cref="T:System.ArgumentNullException">Number is not specified.</exception>
2060       <exception cref="T:System.ArgumentException">Number is not a numeric type.</exception>
2061       <returns>The integer portion of a number.</returns>
2062     </member>
2063     <member name="M:Microsoft.VisualBasic.Conversion.Int(System.Object)">
2064       <summary>Returns the integer portion of a number.</summary>
2065       <param name="Number">Required. A number of type <see langword="Object" /> or any valid numeric expression. If <paramref name="Number" /> contains <see langword="Nothing" />, <see langword="Nothing" /> is returned.</param>
2066       <exception cref="T:System.ArgumentNullException">Number is not specified.</exception>
2067       <exception cref="T:System.ArgumentException">Number is not a numeric type.</exception>
2068       <returns>The integer portion of a number.</returns>
2069     </member>
2070     <member name="M:Microsoft.VisualBasic.Conversion.Int(System.Single)">
2071       <summary>Returns the integer portion of a number.</summary>
2072       <param name="Number">Required. A number of type <see cref="T:System.Single" /> or any valid numeric expression.</param>
2073       <exception cref="T:System.ArgumentNullException">Number is not specified.</exception>
2074       <exception cref="T:System.ArgumentException">Number is not a numeric type.</exception>
2075       <returns>The integer portion of a number.</returns>
2076     </member>
2077     <member name="M:Microsoft.VisualBasic.Conversion.Oct(System.Byte)">
2078       <summary>Returns a string representing the octal value of a number.</summary>
2079       <param name="Number">Required. Any valid numeric expression or <see langword="String" /> expression.</param>
2080       <exception cref="T:System.ArgumentNullException">
2081         <paramref name="Number" /> is not specified.</exception>
2082       <exception cref="T:System.ArgumentException">
2083         <paramref name="Number" /> is not a numeric type.</exception>
2084       <returns>A string representing the octal value of a number.</returns>
2085     </member>
2086     <member name="M:Microsoft.VisualBasic.Conversion.Oct(System.Int16)">
2087       <summary>Returns a string representing the octal value of a number.</summary>
2088       <param name="Number">Required. Any valid numeric expression or <see langword="String" /> expression.</param>
2089       <exception cref="T:System.ArgumentNullException">
2090         <paramref name="Number" /> is not specified.</exception>
2091       <exception cref="T:System.ArgumentException">
2092         <paramref name="Number" /> is not a numeric type.</exception>
2093       <returns>A string representing the octal value of a number.</returns>
2094     </member>
2095     <member name="M:Microsoft.VisualBasic.Conversion.Oct(System.Int32)">
2096       <summary>Returns a string representing the octal value of a number.</summary>
2097       <param name="Number">Required. Any valid numeric expression or <see langword="String" /> expression.</param>
2098       <exception cref="T:System.ArgumentNullException">
2099         <paramref name="Number" /> is not specified.</exception>
2100       <exception cref="T:System.ArgumentException">
2101         <paramref name="Number" /> is not a numeric type.</exception>
2102       <returns>A string representing the octal value of a number.</returns>
2103     </member>
2104     <member name="M:Microsoft.VisualBasic.Conversion.Oct(System.Int64)">
2105       <summary>Returns a string representing the octal value of a number.</summary>
2106       <param name="Number">Required. Any valid numeric expression or <see langword="String" /> expression.</param>
2107       <exception cref="T:System.ArgumentNullException">
2108         <paramref name="Number" /> is not specified.</exception>
2109       <exception cref="T:System.ArgumentException">
2110         <paramref name="Number" /> is not a numeric type.</exception>
2111       <returns>A string representing the octal value of a number.</returns>
2112     </member>
2113     <member name="M:Microsoft.VisualBasic.Conversion.Oct(System.Object)">
2114       <summary>Returns a string representing the octal value of a number.</summary>
2115       <param name="Number">Required. Any valid numeric expression or <see langword="String" /> expression.</param>
2116       <exception cref="T:System.ArgumentNullException">
2117         <paramref name="Number" /> is not specified.</exception>
2118       <exception cref="T:System.ArgumentException">
2119         <paramref name="Number" /> is not a numeric type.</exception>
2120       <returns>A string representing the octal value of a number.</returns>
2121     </member>
2122     <member name="M:Microsoft.VisualBasic.Conversion.Oct(System.SByte)">
2123       <summary>Returns a string representing the octal value of a number.</summary>
2124       <param name="Number">Required. Any valid numeric expression or <see langword="String" /> expression.</param>
2125       <exception cref="T:System.ArgumentNullException">
2126         <paramref name="Number" /> is not specified.</exception>
2127       <exception cref="T:System.ArgumentException">
2128         <paramref name="Number" /> is not a numeric type.</exception>
2129       <returns>A string representing the octal value of a number.</returns>
2130     </member>
2131     <member name="M:Microsoft.VisualBasic.Conversion.Oct(System.UInt16)">
2132       <summary>Returns a string representing the octal value of a number.</summary>
2133       <param name="Number">Required. Any valid numeric expression or <see langword="String" /> expression.</param>
2134       <exception cref="T:System.ArgumentNullException">
2135         <paramref name="Number" /> is not specified.</exception>
2136       <exception cref="T:System.ArgumentException">
2137         <paramref name="Number" /> is not a numeric type.</exception>
2138       <returns>A string representing the octal value of a number.</returns>
2139     </member>
2140     <member name="M:Microsoft.VisualBasic.Conversion.Oct(System.UInt32)">
2141       <summary>Returns a string representing the octal value of a number.</summary>
2142       <param name="Number">Required. Any valid numeric expression or <see langword="String" /> expression.</param>
2143       <exception cref="T:System.ArgumentNullException">
2144         <paramref name="Number" /> is not specified.</exception>
2145       <exception cref="T:System.ArgumentException">
2146         <paramref name="Number" /> is not a numeric type.</exception>
2147       <returns>A string representing the octal value of a number.</returns>
2148     </member>
2149     <member name="M:Microsoft.VisualBasic.Conversion.Oct(System.UInt64)">
2150       <summary>Returns a string representing the octal value of a number.</summary>
2151       <param name="Number">Required. Any valid numeric expression or <see langword="String" /> expression.</param>
2152       <exception cref="T:System.ArgumentNullException">
2153         <paramref name="Number" /> is not specified.</exception>
2154       <exception cref="T:System.ArgumentException">
2155         <paramref name="Number" /> is not a numeric type.</exception>
2156       <returns>A string representing the octal value of a number.</returns>
2157     </member>
2158     <member name="M:Microsoft.VisualBasic.Conversion.Str(System.Object)">
2159       <summary>Returns a <see langword="String" /> representation of a number.</summary>
2160       <param name="Number">Required. An <see langword="Object" /> containing any valid numeric expression.</param>
2161       <exception cref="T:System.ArgumentNullException">
2162         <paramref name="Number" /> is not specified.</exception>
2163       <exception cref="T:System.InvalidCastException">
2164         <paramref name="Number" /> is not a numeric type.</exception>
2165       <returns>A <see langword="String" /> representation of a number.</returns>
2166     </member>
2167     <member name="M:Microsoft.VisualBasic.Conversion.Val(System.Char)">
2168       <summary>Returns the numbers contained in a string as a numeric value of appropriate type.</summary>
2169       <param name="Expression">Required. Any valid <see langword="String" /> expression, <see langword="Object" /> variable, or <see langword="Char" /> value. If <paramref name="Expression" /> is of type <see langword="Object" />, its value must be convertible to <see langword="String" /> or an <see cref="T:System.ArgumentException" /> error occurs.</param>
2170       <exception cref="T:System.OverflowException">
2171         <paramref name="InputStr" /> is too large.</exception>
2172       <exception cref="T:System.ArgumentException">
2173         <paramref name="Expression" /> is an <see langword="Object" /> type expression that is not convertible to <see langword="String" />.</exception>
2174       <returns>The numbers contained in a string as a numeric value of appropriate type.</returns>
2175     </member>
2176     <member name="M:Microsoft.VisualBasic.Conversion.Val(System.Object)">
2177       <summary>Returns the numbers contained in a string as a numeric value of appropriate type.</summary>
2178       <param name="Expression">Required. Any valid <see langword="String" /> expression, <see langword="Object" /> variable, or <see langword="Char" /> value. If <paramref name="Expression" /> is of type <see langword="Object" />, its value must be convertible to <see langword="String" /> or an <see cref="T:System.ArgumentException" /> error occurs.</param>
2179       <exception cref="T:System.OverflowException">
2180         <paramref name="InputStr" /> is too large.</exception>
2181       <exception cref="T:System.ArgumentException">
2182         <paramref name="Expression" /> is an <see langword="Object" /> type expression that is not convertible to <see langword="String" />.</exception>
2183       <returns>The numbers contained in a string as a numeric value of appropriate type.</returns>
2184     </member>
2185     <member name="M:Microsoft.VisualBasic.Conversion.Val(System.String)">
2186       <summary>Returns the numbers contained in a string as a numeric value of appropriate type.</summary>
2187       <param name="InputStr">Required. Any valid <see langword="String" /> expression, <see langword="Object" /> variable, or <see langword="Char" /> value. If <paramref name="Expression" /> is of type <see langword="Object" />, its value must be convertible to <see langword="String" /> or an <see cref="T:System.ArgumentException" /> error occurs.</param>
2188       <exception cref="T:System.OverflowException">
2189         <paramref name="InputStr" /> is too large.</exception>
2190       <exception cref="T:System.ArgumentException">
2191         <paramref name="Expression" /> is an <see langword="Object" /> type expression that is not convertible to <see langword="String" />.</exception>
2192       <returns>The numbers contained in a string as a numeric value of appropriate type.</returns>
2193     </member>
2194     <member name="T:Microsoft.VisualBasic.DateAndTime">
2195       <summary>The <see langword="DateAndTime" /> module contains the procedures and properties used in date and time operations.</summary>
2196     </member>
2197     <member name="M:Microsoft.VisualBasic.DateAndTime.DateAdd(Microsoft.VisualBasic.DateInterval,System.Double,System.DateTime)">
2198       <summary>Returns a value containing a date and time value to which a specified time interval has been added.</summary>
2199       <param name="Interval">Required. A <see cref="T:Microsoft.VisualBasic.DateInterval" /> enumeration value or a string expression representing the time interval you want to add.</param>
2200       <param name="Number">Required. Floating-point expression representing the number of intervals you want to add. It can be positive (to get date/time values in the future) or negative (to get date/time values in the past). It can contain a fractional part when <paramref name="Interval" /> specifies hours, minutes, or seconds. For other values of <paramref name="Interval" />, any fractional part of <paramref name="Number" /> is ignored.</param>
2201       <param name="DateValue">Required. An expression representing the date and time to which the interval is to be added. <paramref name="DateValue" /> itself is not changed in the calling program.</param>
2202       <exception cref="T:System.InvalidCastException">
2203         <paramref name="DateValue" /> is not coercible to <see langword="Date" />.</exception>
2204       <exception cref="T:System.ArgumentException">
2205         <paramref name="Interval" /> is not valid.</exception>
2206       <exception cref="T:System.ArgumentOutOfRangeException">Calculated date is before 00:00:00 on January 1 of the year 1, or later than 23:59:59 on December 31, 9999.</exception>
2207       <returns>A value containing a date and time value to which a specified time interval has been added.</returns>
2208     </member>
2209     <member name="M:Microsoft.VisualBasic.DateAndTime.DateAdd(System.String,System.Double,System.Object)">
2210       <summary>Returns a value containing a date and time value to which a specified time interval has been added.</summary>
2211       <param name="Interval">Required. A <see cref="T:Microsoft.VisualBasic.DateInterval" /> enumeration value or a string expression representing the time interval you want to add.</param>
2212       <param name="Number">Required. Floating-point expression representing the number of intervals you want to add. <paramref name="Number" /> can be positive (to get date/time values in the future) or negative (to get date/time values in the past). It can contain a fractional part when <paramref name="Interval" /> specifies hours, minutes, or seconds. For other values of <paramref name="Interval" />, any fractional part of <paramref name="Number" /> is ignored.</param>
2213       <param name="DateValue">Required. An expression representing the date and time to which the interval is to be added. <paramref name="DateValue" /> itself is not changed in the calling program.</param>
2214       <exception cref="T:System.InvalidCastException">
2215         <paramref name="DateValue" /> is not coercible to <see langword="Date" />.</exception>
2216       <exception cref="T:System.ArgumentException">
2217         <paramref name="Interval" /> is not valid.</exception>
2218       <exception cref="T:System.ArgumentOutOfRangeException">Calculated date is before 00:00:00 on January 1 of the year 1, or later than 23:59:59 on December 31, 9999.</exception>
2219       <returns>A value containing a date and time value to which a specified time interval has been added.</returns>
2220     </member>
2221     <member name="M:Microsoft.VisualBasic.DateAndTime.DateDiff(Microsoft.VisualBasic.DateInterval,System.DateTime,System.DateTime,Microsoft.VisualBasic.FirstDayOfWeek,Microsoft.VisualBasic.FirstWeekOfYear)">
2222       <summary>Subtracts <paramref name="Date1" /> from <paramref name="Date2" /> to give a long value specifying the number of time intervals between the two <see langword="Date" /> values.</summary>
2223       <param name="Interval">Required. A <see cref="T:Microsoft.VisualBasic.DateInterval" /> enumeration value or a string expression representing the time interval you want to use as the unit of difference between <paramref name="Date1" /> and <paramref name="Date2" />.</param>
2224       <param name="Date1">Required. The first date/time value you want to use in the calculation.</param>
2225       <param name="Date2">Required. The second date/time value you want to use in the calculation.</param>
2226       <param name="DayOfWeek">Optional. A value chosen from the <see cref="T:Microsoft.VisualBasic.FirstDayOfWeek" /> enumeration that specifies the first day of the week. If not specified, <see cref="F:Microsoft.VisualBasic.FirstDayOfWeek.Sunday" /> is used.</param>
2227       <param name="WeekOfYear">Optional. A value chosen from the <see cref="T:Microsoft.VisualBasic.FirstWeekOfYear" /> enumeration that specifies the first week of the year. If not specified, <see cref="F:Microsoft.VisualBasic.FirstWeekOfYear.Jan1" /> is used.</param>
2228       <exception cref="T:System.ArgumentException">
2229         <paramref name="Date1" />, <paramref name="Date2" />, or <paramref name="DayofWeek" /> is out of range.</exception>
2230       <exception cref="T:System.InvalidCastException">
2231         <paramref name="Date1" /> or <paramref name="Date2" /> is of an invalid type.</exception>
2232       <returns>A long value specifying the number of time intervals between two <see langword="Date" /> values.</returns>
2233     </member>
2234     <member name="M:Microsoft.VisualBasic.DateAndTime.DateDiff(System.String,System.Object,System.Object,Microsoft.VisualBasic.FirstDayOfWeek,Microsoft.VisualBasic.FirstWeekOfYear)">
2235       <summary>Subtracts <paramref name="Date1" /> from <paramref name="Date2" /> to give a long value specifying the number of time intervals between the two <see langword="Date" /> values.</summary>
2236       <param name="Interval">Required. A <see cref="T:Microsoft.VisualBasic.DateInterval" /> enumeration value or a string expression representing the time interval you want to use as the unit of difference between <paramref name="Date1" /> and <paramref name="Date2" />.</param>
2237       <param name="Date1">Required. The first date/time value you want to use in the calculation.</param>
2238       <param name="Date2">Required. The second date/time value you want to use in the calculation.</param>
2239       <param name="DayOfWeek">Optional. A value chosen from the <see cref="T:Microsoft.VisualBasic.FirstDayOfWeek" /> enumeration that specifies the first day of the week. If not specified, <see cref="F:Microsoft.VisualBasic.FirstDayOfWeek.Sunday" /> is used.</param>
2240       <param name="WeekOfYear">Optional. A value chosen from the <see cref="T:Microsoft.VisualBasic.FirstWeekOfYear" /> enumeration that specifies the first week of the year. If not specified, <see cref="F:Microsoft.VisualBasic.FirstWeekOfYear.Jan1" /> is used.</param>
2241       <exception cref="T:System.ArgumentException">
2242         <paramref name="Date1" />, <paramref name="Date2" />, or <paramref name="DayofWeek" /> is out of range.</exception>
2243       <exception cref="T:System.InvalidCastException">
2244         <paramref name="Date1" /> or <paramref name="Date2" /> is of an invalid type.</exception>
2245       <returns>A long value specifying the number of time intervals between two <see langword="Date" /> values.</returns>
2246     </member>
2247     <member name="M:Microsoft.VisualBasic.DateAndTime.DatePart(Microsoft.VisualBasic.DateInterval,System.DateTime,Microsoft.VisualBasic.FirstDayOfWeek,Microsoft.VisualBasic.FirstWeekOfYear)">
2248       <summary>Returns an integer value containing the specified component of a given <see langword="Date" /> value.</summary>
2249       <param name="Interval">Required. A <see cref="T:Microsoft.VisualBasic.DateInterval" /> enumeration value or a string expression representing the part of the date/time value you want to return.</param>
2250       <param name="DateValue">Required. The <see langword="Date" /> value that you want to evaluate.</param>
2251       <param name="FirstDayOfWeekValue">Optional. A value chosen from the <see cref="T:Microsoft.VisualBasic.FirstDayOfWeek" /> enumeration that specifies the first day of the week. If not specified, <see cref="F:Microsoft.VisualBasic.FirstDayOfWeek.Sunday" /> is used.</param>
2252       <param name="FirstWeekOfYearValue">Optional. A value chosen from the <see cref="T:Microsoft.VisualBasic.FirstWeekOfYear" /> enumeration that specifies the first week of the year. If not specified, <see cref="F:Microsoft.VisualBasic.FirstWeekOfYear.Jan1" /> is used.</param>
2253       <exception cref="T:System.ArgumentException">
2254         <paramref name="Interval" /> is not valid.</exception>
2255       <exception cref="T:System.InvalidCastException">
2256         <paramref name="DateValue" /> is not coercible to <see langword="Date" />.</exception>
2257       <returns>An integer value containing the specified component of a given <see langword="Date" /> value.</returns>
2258     </member>
2259     <member name="M:Microsoft.VisualBasic.DateAndTime.DatePart(System.String,System.Object,Microsoft.VisualBasic.FirstDayOfWeek,Microsoft.VisualBasic.FirstWeekOfYear)">
2260       <summary>Returns an value containing the specified component of a given <see langword="Date" /> value.</summary>
2261       <param name="Interval">Required. A <see cref="T:Microsoft.VisualBasic.DateInterval" /> enumeration value or a string expression representing the part of the date/time value you want to return.</param>
2262       <param name="DateValue">Required. A <see langword="Date" /> value that you want to evaluate.</param>
2263       <param name="DayOfWeek">Optional. A value chosen from the <see cref="T:Microsoft.VisualBasic.FirstDayOfWeek" /> enumeration that specifies the first day of the week. If not specified, <see cref="F:Microsoft.VisualBasic.FirstDayOfWeek.Sunday" /> is used.</param>
2264       <param name="WeekOfYear">Optional. A value chosen from the <see cref="T:Microsoft.VisualBasic.FirstWeekOfYear" /> enumeration that specifies the first week of the year. If not specified, <see cref="F:Microsoft.VisualBasic.FirstWeekOfYear.Jan1" /> is used.</param>
2265       <exception cref="T:System.ArgumentException">
2266         <paramref name="Interval" /> is invalid.</exception>
2267       <exception cref="T:System.InvalidCastException">
2268         <paramref name="DateValue" /> is not coercible to <see langword="Date" />.</exception>
2269       <returns>An integer value containing the specified component of a given <see langword="Date" /> value.</returns>
2270     </member>
2271     <member name="M:Microsoft.VisualBasic.DateAndTime.DateSerial(System.Int32,System.Int32,System.Int32)">
2272       <summary>Returns a <see langword="Date" /> value representing the specified year, month, and day, with the time information set to midnight (00:00:00).</summary>
2273       <param name="Year">Required. Integer expression from 1 through 9999. However, values below this range are also accepted. If <paramref name="Year" /> is 0 through 99, it is interpreted as being between 1930 and 2029, as explained in the "Remarks" section. If <paramref name="Year" /> is less than 1, it is subtracted from the current year.</param>
2274       <param name="Month">Required. Integer expression from 1 through 12. However, values outside this range are also accepted. The value of <paramref name="Month" /> is offset by 1 and applied to January of the calculated year. In other words, (<paramref name="Month" /> - 1) is added to January. The year is recalculated if necessary. The following results illustrate this effect:  
2275   
2276  If <paramref name="Month" /> is 1, the result is January of the calculated year.  
2277   
2278  If <paramref name="Month" /> is 0, the result is December of the previous year.  
2279   
2280  If <paramref name="Month" /> is -1, the result is November of the previous year.  
2281   
2282  If <paramref name="Month" /> is 13, the result is January of the following year.</param>
2283       <param name="Day">Required. Integer expression from 1 through 31. However, values outside this range are also accepted. The value of <paramref name="Day" /> is offset by 1 and applied to the first day of the calculated month. In other words, (<paramref name="Day" /> - 1) is added to the first of the month. The month and year are recalculated if necessary. The following results illustrate this effect:  
2284   
2285  If <paramref name="Day" /> is 1, the result is the first day of the calculated month.  
2286   
2287  If <paramref name="Day" /> is 0, the result is the last day of the previous month.  
2288   
2289  If <paramref name="Day" /> is -1, the result is the penultimate day of the previous month.  
2290   
2291  If <paramref name="Day" /> is past the end of the current month, the result is the appropriate day of the following month. For example, if <paramref name="Month" /> is 4 and <paramref name="Day" /> is 31, the result is May 1.</param>
2292       <returns>A value that represents the specified year, month, and day, with the time information set to midnight (00:00:00).</returns>
2293     </member>
2294     <member name="M:Microsoft.VisualBasic.DateAndTime.DateValue(System.String)">
2295       <summary>Returns a <see langword="Date" /> value containing the date information represented by a string, with the time information set to midnight (00:00:00).</summary>
2296       <param name="StringDate">Required. string expression representing a date/time value from 00:00:00 on January 1 of the year 1 through 23:59:59 on December 31, 9999.</param>
2297       <exception cref="T:System.InvalidCastException">
2298         <paramref name="StringDate" /> includes invalid time information.</exception>
2299       <returns>A <see langword="Date" /> value containing the date information represented by a string, with the time information set to midnight (00:00:00).</returns>
2300     </member>
2301     <member name="M:Microsoft.VisualBasic.DateAndTime.Day(System.DateTime)">
2302       <summary>Returns an integer value from 1 through 31 representing the day of the month.</summary>
2303       <param name="DateValue">Required. A <see langword="Date" /> value from which you want to extract the day.</param>
2304       <returns>An integer value from 1 through 31 representing the day of the month.</returns>
2305     </member>
2306     <member name="M:Microsoft.VisualBasic.DateAndTime.Hour(System.DateTime)">
2307       <summary>Returns an integer value from 0 through 23 representing the hour of the day.</summary>
2308       <param name="TimeValue">Required. A <see langword="Date" /> value from which you want to extract the hour.</param>
2309       <returns>An integer value from 0 through 23 representing the hour of the day.</returns>
2310     </member>
2311     <member name="M:Microsoft.VisualBasic.DateAndTime.Minute(System.DateTime)">
2312       <summary>Returns an integer value from 0 through 59 representing the minute of the hour.</summary>
2313       <param name="TimeValue">Required. A <see langword="Date" /> value from which you want to extract the minute.</param>
2314       <returns>An integer value from 0 through 59 representing the minute of the hour.</returns>
2315     </member>
2316     <member name="M:Microsoft.VisualBasic.DateAndTime.Month(System.DateTime)">
2317       <summary>Returns an integer value from 1 through 12 representing the month of the year.</summary>
2318       <param name="DateValue">Required. A <see langword="Date" /> value from which you want to extract the month.</param>
2319       <returns>An integer value from 1 through 12 representing the month of the year.</returns>
2320     </member>
2321     <member name="M:Microsoft.VisualBasic.DateAndTime.MonthName(System.Int32,System.Boolean)">
2322       <summary>Returns a string value containing the name of the specified month.</summary>
2323       <param name="Month">Required. The numeric designation of the month, from 1 through 13; 1 indicates January and 12 indicates December. You can use the value 13 with a 13-month calendar. If your system is using a 12-month calendar and <paramref name="Month" /> is 13, <c>MonthName</c> returns an empty string.</param>
2324       <param name="Abbreviate">Optional. <see langword="True" /> to abbreviate the month name; otherwise, <see langword="False" />. The default is <see langword="False" />.</param>
2325       <exception cref="T:System.ArgumentException">
2326         <paramref name="Month" /> is less than 1 or greater than 13.</exception>
2327       <returns>A string value containing the name of the specified month.</returns>
2328     </member>
2329     <member name="M:Microsoft.VisualBasic.DateAndTime.Second(System.DateTime)">
2330       <summary>Returns an integer value from 0 through 59 representing the second of the minute.</summary>
2331       <param name="TimeValue">Required. A <see langword="Date" /> value from which you want to extract the second.</param>
2332       <returns>An integer value from 0 through 59 representing the second of the minute.</returns>
2333     </member>
2334     <member name="M:Microsoft.VisualBasic.DateAndTime.TimeSerial(System.Int32,System.Int32,System.Int32)">
2335       <summary>Returns a <see langword="Date" /> value representing a specified hour, minute, and second, with the date information set relative to January 1 of the year 1.</summary>
2336       <param name="Hour">Required. Integer expression from 0 through 23. However, values outside this range are also accepted.</param>
2337       <param name="Minute">Required. Integer expression from 0 through 59. However, values outside this range are also accepted. The value of <paramref name="Minute" /> is added to the calculated hour, so a negative value specifies minutes before that hour.</param>
2338       <param name="Second">Required. Integer expression from 0 through 59. However, values outside this range are also accepted. The value of <paramref name="Second" /> is added to the calculated minute, so a negative value specifies seconds before that minute.</param>
2339       <exception cref="T:System.ArgumentException">An argument is outside the range -2,147,483,648 through 2,147,483,647</exception>
2340       <exception cref="T:System.ArgumentOutOfRangeException">Calculated time is less than negative 24 hours.</exception>
2341       <returns>A <see langword="Date" /> value representing a specified hour, minute, and second, with the date information set relative to January 1 of the year 1.</returns>
2342     </member>
2343     <member name="M:Microsoft.VisualBasic.DateAndTime.TimeValue(System.String)">
2344       <summary>Returns a <see langword="Date" /> value containing the time information represented by a string, with the date information set to January 1 of the year 1.</summary>
2345       <param name="StringTime">Required. A string expression representing a date/time value from 00:00:00 on January 1 of the year 1 through 23:59:59 on December 31, 9999.</param>
2346       <exception cref="T:System.InvalidCastException">
2347         <paramref name="StringTime" /> includes invalid date information.</exception>
2348       <returns>A <see langword="Date" /> value containing the time information represented by a string, with the date information set to January 1 of the year 1.</returns>
2349     </member>
2350     <member name="M:Microsoft.VisualBasic.DateAndTime.Weekday(System.DateTime,Microsoft.VisualBasic.FirstDayOfWeek)">
2351       <summary>Returns an integer value containing a number representing the day of the week.</summary>
2352       <param name="DateValue">Required. A <see langword="Date" /> value for which you want to determine the day of the week.</param>
2353       <param name="DayOfWeek">Optional. A value chosen from the <see cref="T:Microsoft.VisualBasic.FirstDayOfWeek" /> enumeration that specifies the first day of the week. If not specified, <see cref="F:Microsoft.VisualBasic.FirstDayOfWeek.Sunday" /> is used.</param>
2354       <exception cref="T:System.ArgumentException">
2355         <paramref name="DayOfWeek" /> is less than 0 or more than 7.</exception>
2356       <returns>An integer value containing a number representing the day of the week.</returns>
2357     </member>
2358     <member name="M:Microsoft.VisualBasic.DateAndTime.WeekdayName(System.Int32,System.Boolean,Microsoft.VisualBasic.FirstDayOfWeek)">
2359       <summary>Returns a string value containing the name of the specified weekday.</summary>
2360       <param name="Weekday">Required. Integer. The numeric designation for the weekday, from 1 through 7; 1 indicates the first day of the week and 7 indicates the last day of the week. The identities of the first and last days depend on the setting of <paramref name="FirstDayOfWeekValue" />.</param>
2361       <param name="Abbreviate">Optional. <see langword="Boolean" /> value that indicates if the weekday name is to be abbreviated. If omitted, the default is <see langword="False" />, which means the weekday name is not abbreviated.</param>
2362       <param name="FirstDayOfWeekValue">Optional. A value chosen from the <see cref="T:Microsoft.VisualBasic.FirstDayOfWeek" /> enumeration that specifies the first day of the week. If not specified, <see langword="FirstDayOfWeek.System" /> is used.</param>
2363       <exception cref="T:System.ArgumentException">
2364         <paramref name="Weekday" /> is less than 1 or greater than 7, or <paramref name="FirstDayOfWeekValue" /> is less than 0 or greater than 7.</exception>
2365       <returns>A string value containing the name of the specified weekday.</returns>
2366     </member>
2367     <member name="M:Microsoft.VisualBasic.DateAndTime.Year(System.DateTime)">
2368       <summary>Returns an integer value from 1 through 9999 representing the year.</summary>
2369       <param name="DateValue">Required. A <see langword="Date" /> value from which you want to extract the year.</param>
2370       <returns>An integer value from 1 through 9999 representing the year.</returns>
2371     </member>
2372     <member name="P:Microsoft.VisualBasic.DateAndTime.DateString">
2373       <summary>Returns or sets a string value representing the current date according to your system.</summary>
2374       <exception cref="T:System.InvalidCastException">Invalid format used to set the value of <see cref="P:Microsoft.VisualBasic.DateAndTime.DateString" />.</exception>
2375       <returns>Returns or sets a string value representing the current date according to your system.</returns>
2376     </member>
2377     <member name="P:Microsoft.VisualBasic.DateAndTime.Now">
2378       <summary>Returns a value containing the current date and time according to your system.</summary>
2379       <returns>The current date and time according to your system.</returns>
2380     </member>
2381     <member name="P:Microsoft.VisualBasic.DateAndTime.TimeOfDay">
2382       <summary>Returns or sets a <see langword="Date" /> value containing the current time of day according to your system.</summary>
2383       <returns>Returns or sets a <see langword="Date" /> value containing the current time of day according to your system.</returns>
2384     </member>
2385     <member name="P:Microsoft.VisualBasic.DateAndTime.Timer">
2386       <summary>Returns a <see cref="T:System.Double" /> value representing the number of seconds elapsed since midnight.</summary>
2387       <returns>A value representing the number of seconds elapsed since midnight.</returns>
2388     </member>
2389     <member name="P:Microsoft.VisualBasic.DateAndTime.TimeString">
2390       <summary>Returns or sets a string value representing the current time of day according to your system.</summary>
2391       <exception cref="T:System.InvalidCastException">Invalid format used to set the value of <see langword="TimeString" />.</exception>
2392       <returns>Returns or sets a string value representing the current time of day according to your system.</returns>
2393     </member>
2394     <member name="P:Microsoft.VisualBasic.DateAndTime.Today">
2395       <summary>Returns or sets a <see langword="Date" /> value containing the current date according to your system.</summary>
2396       <returns>Returns or sets a <see langword="Date" /> value containing the current date according to your system.</returns>
2397     </member>
2398     <member name="T:Microsoft.VisualBasic.DateFormat">
2399       <summary>Indicates how to display dates when calling the <see langword="FormatDateTime" /> function.</summary>
2400     </member>
2401     <member name="F:Microsoft.VisualBasic.DateFormat.GeneralDate">
2402       <summary>For real numbers, displays a date and time. If the number has no fractional part, displays only a date. If the number has no integer part, displays time only. Date and time display is determined by your computer's regional settings. This member is equivalent to the Visual Basic constant <see langword="vbGeneralDate" />.</summary>
2403     </member>
2404     <member name="F:Microsoft.VisualBasic.DateFormat.LongDate">
2405       <summary>Displays a date using the long-date format specified in your computer's regional settings. This member is equivalent to the Visual Basic constant <see langword="vbLongDate" />.</summary>
2406     </member>
2407     <member name="F:Microsoft.VisualBasic.DateFormat.LongTime">
2408       <summary>Displays a time using the long-time format specified in your computer's regional settings. This member is equivalent to the Visual Basic constant <see langword="vbLongTime" />.</summary>
2409     </member>
2410     <member name="F:Microsoft.VisualBasic.DateFormat.ShortDate">
2411       <summary>Displays a date using the short-date format specified in your computer's regional settings. This member is equivalent to the Visual Basic constant <see langword="vbShortDate" />.</summary>
2412     </member>
2413     <member name="F:Microsoft.VisualBasic.DateFormat.ShortTime">
2414       <summary>Displays a time using the short-time format specified in your computer's regional settings. This member is equivalent to the Visual Basic constant <see langword="vbShortTime" />.</summary>
2415     </member>
2416     <member name="T:Microsoft.VisualBasic.DateInterval">
2417       <summary>Indicates how to determine and format date intervals when calling date-related functions.</summary>
2418     </member>
2419     <member name="F:Microsoft.VisualBasic.DateInterval.Day">
2420       <summary>Day of month (1 through 31)</summary>
2421     </member>
2422     <member name="F:Microsoft.VisualBasic.DateInterval.DayOfYear">
2423       <summary>Day of year (1 through 366)</summary>
2424     </member>
2425     <member name="F:Microsoft.VisualBasic.DateInterval.Hour">
2426       <summary>Hour (0 through 23)</summary>
2427     </member>
2428     <member name="F:Microsoft.VisualBasic.DateInterval.Minute">
2429       <summary>Minute (0 through 59)</summary>
2430     </member>
2431     <member name="F:Microsoft.VisualBasic.DateInterval.Month">
2432       <summary>Month (1 through 12)</summary>
2433     </member>
2434     <member name="F:Microsoft.VisualBasic.DateInterval.Quarter">
2435       <summary>Quarter of year (1 through 4)</summary>
2436     </member>
2437     <member name="F:Microsoft.VisualBasic.DateInterval.Second">
2438       <summary>Second (0 through 59)</summary>
2439     </member>
2440     <member name="F:Microsoft.VisualBasic.DateInterval.Weekday">
2441       <summary>Day of week (1 through 7)</summary>
2442     </member>
2443     <member name="F:Microsoft.VisualBasic.DateInterval.WeekOfYear">
2444       <summary>Week of year (1 through 53)</summary>
2445     </member>
2446     <member name="F:Microsoft.VisualBasic.DateInterval.Year">
2447       <summary>Year.</summary>
2448     </member>
2449     <member name="T:Microsoft.VisualBasic.DueDate">
2450       <summary>Indicates when payments are due when calling financial methods.</summary>
2451     </member>
2452     <member name="F:Microsoft.VisualBasic.DueDate.BegOfPeriod">
2453       <summary>Falls at the beginning of the date interval.</summary>
2454     </member>
2455     <member name="F:Microsoft.VisualBasic.DueDate.EndOfPeriod">
2456       <summary>Falls at the end of the date interval.</summary>
2457     </member>
2458     <member name="T:Microsoft.VisualBasic.ErrObject">
2459       <summary>The <see langword="ErrObject" /> module contains properties and procedures used to identify and handle run-time errors using the <see langword="Err" /> object.</summary>
2460     </member>
2461     <member name="M:Microsoft.VisualBasic.ErrObject.Clear">
2462       <summary>Clears all property settings of the <see langword="Err" /> object.</summary>
2463     </member>
2464     <member name="M:Microsoft.VisualBasic.ErrObject.GetException">
2465       <summary>Returns the exception representing the error that occurred.</summary>
2466       <returns>The exception representing the error that occurred.</returns>
2467     </member>
2468     <member name="M:Microsoft.VisualBasic.ErrObject.Raise(System.Int32,System.Object,System.Object,System.Object,System.Object)">
2469       <summary>Generates a run-time error; can be used instead of the <see langword="Error" /> statement.</summary>
2470       <param name="Number">Required. <see langword="Long" /> integer that identifies the nature of the error. Visual Basic errors are in the range 0-65535; the range 0-512 is reserved for system errors; the range 513-65535 is available for user-defined errors. When setting the <see langword="Number" /> property to your own error code in a class module, you add your error code number to the <see langword="vbObjectError" /> constant. For example, to generate the error number 513, assign <c>vbObjectError + 513</c> to the <see langword="Number" /> property.</param>
2471       <param name="Source">Optional. <see langword="String" /> expression naming the object or application that generated the error. When setting this property for an object, use the form <c>project</c>.<c>class</c>. If <paramref name="Source" /> is not specified, the process ID of the current Visual Basic project is used.</param>
2472       <param name="Description">Optional. <see langword="String" /> expression describing the error. If unspecified, the value in the <see langword="Number" /> property is examined. If it can be mapped to a Visual Basic run-time error code, the string that would be returned by the <see langword="Error" /> function is used as the <see langword="Description" /> property. If there is no Visual Basic error corresponding to the <see langword="Number" /> property, the "Application-defined or object-defined error" message is used.</param>
2473       <param name="HelpFile">Optional. The fully qualified path to the Help file in which help on this error can be found. If unspecified, Visual Basic uses the fully qualified drive, path, and file name of the Visual Basic Help file.</param>
2474       <param name="HelpContext">Optional. The context ID identifying a topic within <paramref name="HelpFile" /> that provides help for the error. If omitted, the Visual Basic Help-file context ID for the error corresponding to the <see langword="Number" /> property is used, if it exists.</param>
2475     </member>
2476     <member name="P:Microsoft.VisualBasic.ErrObject.Description">
2477       <summary>Returns or sets a <see langword="String" /> expression containing a descriptive string associated with an error. Read/write.</summary>
2478       <returns>Returns or sets a <see langword="String" /> expression containing a descriptive string associated with an error. Read/write.</returns>
2479     </member>
2480     <member name="P:Microsoft.VisualBasic.ErrObject.Erl">
2481       <summary>Gets an integer indicating the line number of the last executed statement.</summary>
2482       <returns>The line number of the last executed statement.</returns>
2483     </member>
2484     <member name="P:Microsoft.VisualBasic.ErrObject.HelpContext">
2485       <summary>Returns or sets an <see langword="Integer" /> containing the context ID for a topic in a Help file. Read/write.</summary>
2486       <returns>Returns or sets an <see langword="Integer" /> containing the context ID for a topic in a Help file. Read/write.</returns>
2487     </member>
2488     <member name="P:Microsoft.VisualBasic.ErrObject.HelpFile">
2489       <summary>Returns or sets a <see langword="String" /> expression containing the fully qualified path to a Help file. Read/write.</summary>
2490       <returns>Returns or sets a <see langword="String" /> expression containing the fully qualified path to a Help file. Read/write.</returns>
2491     </member>
2492     <member name="P:Microsoft.VisualBasic.ErrObject.LastDllError">
2493       <summary>Gets a system error code produced by a call to a dynamic-link library (DLL).</summary>
2494       <returns>A system error code produced by a call to a dynamic-link library (DLL).</returns>
2495     </member>
2496     <member name="P:Microsoft.VisualBasic.ErrObject.Number">
2497       <summary>Returns or sets a numeric value specifying an error. Read/write.</summary>
2498       <exception cref="T:System.ArgumentException">
2499         <paramref name="Number" /> is greater than 65535.</exception>
2500       <returns>Returns or sets a numeric value specifying an error. Read/write.</returns>
2501     </member>
2502     <member name="P:Microsoft.VisualBasic.ErrObject.Source">
2503       <summary>Returns or sets a <see langword="String" /> expression specifying the name of the object or application that originally generated the error. Read/write.</summary>
2504       <returns>Returns or sets a <see langword="String" /> expression specifying the name of the object or application that originally generated the error. Read/write.</returns>
2505     </member>
2506     <member name="T:Microsoft.VisualBasic.FileAttribute">
2507       <summary>Indicates the file attributes to use when calling file-access functions.</summary>
2508     </member>
2509     <member name="F:Microsoft.VisualBasic.FileAttribute.Archive">
2510       <summary>File has changed since last backup. This member is equivalent to the Visual Basic constant <see langword="vbArchive" />.</summary>
2511     </member>
2512     <member name="F:Microsoft.VisualBasic.FileAttribute.Directory">
2513       <summary>Directory or folder. This member is equivalent to the Visual Basic constant <see langword="vbDirectory" />.</summary>
2514     </member>
2515     <member name="F:Microsoft.VisualBasic.FileAttribute.Hidden">
2516       <summary>Hidden. This member is equivalent to the Visual Basic constant <see langword="vbHidden" />.</summary>
2517     </member>
2518     <member name="F:Microsoft.VisualBasic.FileAttribute.Normal">
2519       <summary>Normal (default for <see langword="Dir" /> and <see langword="SetAttr" />). No special characteristics apply to this file. This member is equivalent to the Visual Basic constant <see langword="vbNormal" />.</summary>
2520     </member>
2521     <member name="F:Microsoft.VisualBasic.FileAttribute.ReadOnly">
2522       <summary>Read only. This member is equivalent to the Visual Basic constant <see langword="vbReadOnly" />.</summary>
2523     </member>
2524     <member name="F:Microsoft.VisualBasic.FileAttribute.System">
2525       <summary>System file. This member is equivalent to the Visual Basic constant <see langword="vbSystem" />.</summary>
2526     </member>
2527     <member name="F:Microsoft.VisualBasic.FileAttribute.Volume">
2528       <summary>Volume label. This attribute is not valid when used with <see langword="SetAttr" />. This member is equivalent to the Visual Basic constant <see langword="vbVolume" />.</summary>
2529     </member>
2530     <member name="T:Microsoft.VisualBasic.FileIO.DeleteDirectoryOption">
2531       <summary>Specifies what should be done when a directory that is to be deleted contains files or directories.</summary>
2532     </member>
2533     <member name="F:Microsoft.VisualBasic.FileIO.DeleteDirectoryOption.DeleteAllContents">
2534       <summary>Delete the contents of the directory along with the directory. Default.</summary>
2535     </member>
2536     <member name="F:Microsoft.VisualBasic.FileIO.DeleteDirectoryOption.ThrowIfDirectoryNonEmpty">
2537       <summary>Throw an <see cref="T:System.IO.IOException" /> if the directory is not empty. The <see langword="Data" /> property of the exception lists the file(s) that could not be deleted.</summary>
2538     </member>
2539     <member name="T:Microsoft.VisualBasic.FileIO.FieldType">
2540       <summary>Indicates whether text fields are delimited or fixed width.</summary>
2541     </member>
2542     <member name="F:Microsoft.VisualBasic.FileIO.FieldType.Delimited">
2543       <summary>Indicates that the fields are delimited.</summary>
2544     </member>
2545     <member name="F:Microsoft.VisualBasic.FileIO.FieldType.FixedWidth">
2546       <summary>Indicates that the fields are fixed width.</summary>
2547     </member>
2548     <member name="T:Microsoft.VisualBasic.FileIO.FileSystem">
2549       <summary>Provides properties and methods for working with drives, files, and directories.</summary>
2550     </member>
2551     <member name="M:Microsoft.VisualBasic.FileIO.FileSystem.#ctor">
2552       <summary>Initializes a new instance of the <see cref="T:Microsoft.VisualBasic.FileIO.FileSystem" /> class.</summary>
2553     </member>
2554     <member name="M:Microsoft.VisualBasic.FileIO.FileSystem.CombinePath(System.String,System.String)">
2555       <summary>Combines two paths and returns a properly formatted path.</summary>
2556       <param name="baseDirectory">
2557         <see langword="String" />. First path to be combined.</param>
2558       <param name="relativePath">
2559         <see langword="String" />. Second path to be combined.</param>
2560       <exception cref="T:System.ArgumentException">
2561         <paramref name="baseDirectory" /> or <paramref name="relativePath" /> are malformed paths.</exception>
2562       <returns>The combination of the specified paths.</returns>
2563     </member>
2564     <member name="M:Microsoft.VisualBasic.FileIO.FileSystem.CopyDirectory(System.String,System.String)">
2565       <summary>Copies the contents of a directory to another directory.</summary>
2566       <param name="sourceDirectoryName">The directory to be copied.</param>
2567       <param name="destinationDirectoryName">The location to which the directory contents should be copied.</param>
2568       <exception cref="T:System.ArgumentException">The path is not valid for one of the following reasons: it is a zero-length string; it contains only white space; it contains invalid characters; or it is a device path (starts with \\.\).</exception>
2569       <exception cref="T:System.ArgumentNullException">
2570         <paramref name="destinationDirectoryName" /> or <paramref name="sourceDirectoryName" /> is <see langword="Nothing" /> or an empty string.</exception>
2571       <exception cref="T:System.IO.DirectoryNotFoundException">The source directory does not exist.</exception>
2572       <exception cref="T:System.IO.IOException">The source path and target path are the same.</exception>
2573       <exception cref="T:System.InvalidOperationException">The operation is cyclic.</exception>
2574       <exception cref="T:System.IO.PathTooLongException">The path exceeds the system-defined maximum length.</exception>
2575       <exception cref="T:System.NotSupportedException">A folder name in the path contains a colon (:) or is in an invalid format.</exception>
2576       <exception cref="T:System.Security.SecurityException">The user lacks necessary permissions to view the path.</exception>
2577       <exception cref="T:System.UnauthorizedAccessException">A destination file exists but cannot be accessed.</exception>
2578     </member>
2579     <member name="M:Microsoft.VisualBasic.FileIO.FileSystem.CopyDirectory(System.String,System.String,Microsoft.VisualBasic.FileIO.UIOption)">
2580       <summary>Copies the contents of a directory to another directory.</summary>
2581       <param name="sourceDirectoryName">The directory to be copied.</param>
2582       <param name="destinationDirectoryName">The location to which the directory contents should be copied.</param>
2583       <param name="showUI">Whether to visually track the operation's progress. Default is <see langword="UIOption.OnlyErrorDialogs" />.</param>
2584       <exception cref="T:System.ArgumentException">The path is not valid for one of the following reasons: it is a zero-length string; it contains only white space; it contains invalid characters; or it is a device path (starts with \\.\).</exception>
2585       <exception cref="T:System.ArgumentNullException">
2586         <paramref name="destinationDirectoryName" /> or <paramref name="sourceDirectoryName" /> is <see langword="Nothing" /> or an empty string.</exception>
2587       <exception cref="T:System.IO.DirectoryNotFoundException">The source directory does not exist.</exception>
2588       <exception cref="T:System.IO.IOException">The source path and target path are the same.</exception>
2589       <exception cref="T:System.InvalidOperationException">The operation is cyclic.</exception>
2590       <exception cref="T:System.IO.PathTooLongException">The path exceeds the system-defined maximum length.</exception>
2591       <exception cref="T:System.NotSupportedException">A folder name in the path contains a colon (:) or is in an invalid format.</exception>
2592       <exception cref="T:System.Security.SecurityException">The user lacks necessary permissions to view the path.</exception>
2593       <exception cref="T:System.UnauthorizedAccessException">A destination file exists but cannot be accessed.</exception>
2594       <exception cref="T:System.OperationCanceledException">
2595         <paramref name="ShowUI" /> is set to <see langword="UIOption.AllDialogs" /> and the user cancels the operation, or one or more files in the directory cannot be copied.</exception>
2596     </member>
2597     <member name="M:Microsoft.VisualBasic.FileIO.FileSystem.CopyDirectory(System.String,System.String,Microsoft.VisualBasic.FileIO.UIOption,Microsoft.VisualBasic.FileIO.UICancelOption)">
2598       <summary>Copies the contents of a directory to another directory.</summary>
2599       <param name="sourceDirectoryName">The directory to be copied.</param>
2600       <param name="destinationDirectoryName">The location to which the directory contents should be copied.</param>
2601       <param name="showUI">Whether to visually track the operation's progress. Default is <see langword="UIOption.OnlyErrorDialogs" />.</param>
2602       <param name="onUserCancel">Specifies what should be done if the user clicks Cancel during the operation. Default is <see cref="F:Microsoft.VisualBasic.FileIO.UICancelOption.ThrowException" />.</param>
2603       <exception cref="T:System.ArgumentException">The path is not valid for one of the following reasons: it is a zero-length string; it contains only white space; it contains invalid characters; or it is a device path (starts with \\.\).</exception>
2604       <exception cref="T:System.ArgumentNullException">
2605         <paramref name="destinationDirectoryName" /> or <paramref name="sourceDirectoryName" /> is <see langword="Nothing" /> or an empty string.</exception>
2606       <exception cref="T:System.IO.DirectoryNotFoundException">The source directory does not exist.</exception>
2607       <exception cref="T:System.IO.IOException">The source path and target path are the same.</exception>
2608       <exception cref="T:System.InvalidOperationException">The operation is cyclic.</exception>
2609       <exception cref="T:System.IO.PathTooLongException">The path exceeds the system-defined maximum length.</exception>
2610       <exception cref="T:System.NotSupportedException">A folder name in the path contains a colon (:) or is in an invalid format.</exception>
2611       <exception cref="T:System.Security.SecurityException">The user lacks necessary permissions to view the path.</exception>
2612       <exception cref="T:System.UnauthorizedAccessException">A destination file exists but cannot be accessed.</exception>
2613       <exception cref="T:System.OperationCanceledException">
2614         <paramref name="ShowUI" /> is set to <see langword="UIOption.AllDialogs" /> and the user cancels the operation, or one or more files in the directory cannot be copied.</exception>
2615     </member>
2616     <member name="M:Microsoft.VisualBasic.FileIO.FileSystem.CopyDirectory(System.String,System.String,System.Boolean)">
2617       <summary>Copies the contents of a directory to another directory.</summary>
2618       <param name="sourceDirectoryName">The directory to be copied.</param>
2619       <param name="destinationDirectoryName">The location to which the directory contents should be copied.</param>
2620       <param name="overwrite">
2621         <see langword="True" /> to overwrite existing files; otherwise <see langword="False" />. Default is <see langword="False" />.</param>
2622       <exception cref="T:System.ArgumentException">The path is not valid for one of the following reasons: it is a zero-length string; it contains only white space; it contains invalid characters; or it is a device path (starts with \\.\).</exception>
2623       <exception cref="T:System.ArgumentNullException">
2624         <paramref name="destinationDirectoryName" /> or <paramref name="sourceDirectoryName" /> is <see langword="Nothing" /> or an empty string.</exception>
2625       <exception cref="T:System.IO.DirectoryNotFoundException">The source directory does not exist.</exception>
2626       <exception cref="T:System.IO.IOException">The source path and target path are the same.</exception>
2627       <exception cref="T:System.InvalidOperationException">The operation is cyclic.</exception>
2628       <exception cref="T:System.IO.PathTooLongException">The path exceeds the system-defined maximum length.</exception>
2629       <exception cref="T:System.NotSupportedException">A folder name in the path contains a colon (:) or is in an invalid format.</exception>
2630       <exception cref="T:System.Security.SecurityException">The user lacks necessary permissions to view the path.</exception>
2631       <exception cref="T:System.UnauthorizedAccessException">A destination file exists but cannot be accessed.</exception>
2632     </member>
2633     <member name="M:Microsoft.VisualBasic.FileIO.FileSystem.CopyFile(System.String,System.String)">
2634       <summary>Copies a file to a new location.</summary>
2635       <param name="sourceFileName">The file to be copied.</param>
2636       <param name="destinationFileName">The location to which the file should be copied.</param>
2637       <exception cref="T:System.ArgumentException">
2638         <paramref name="destinationFileName" /> contains path information.</exception>
2639       <exception cref="T:System.ArgumentNullException">
2640         <paramref name="destinationFileName" /> or <paramref name="sourceFileName" /> is <see langword="Nothing" /> or an empty string.</exception>
2641       <exception cref="T:System.IO.FileNotFoundException">The source file is not valid or does not exist.</exception>
2642       <exception cref="T:System.IO.IOException">A file in the target directory with the same name is in use.</exception>
2643       <exception cref="T:System.NotSupportedException">A file or directory name in the path contains a colon (:) or is in an invalid format.</exception>
2644       <exception cref="T:System.IO.PathTooLongException">The path exceeds the system-defined maximum length.</exception>
2645       <exception cref="T:System.UnauthorizedAccessException">The user does not have required permission.</exception>
2646       <exception cref="T:System.Security.SecurityException">The user lacks necessary permissions to view the path.</exception>
2647     </member>
2648     <member name="M:Microsoft.VisualBasic.FileIO.FileSystem.CopyFile(System.String,System.String,Microsoft.VisualBasic.FileIO.UIOption)">
2649       <summary>Copies a file to a new location.</summary>
2650       <param name="sourceFileName">The file to be copied.</param>
2651       <param name="destinationFileName">The location to which the file should be copied.</param>
2652       <param name="showUI">Whether to visually track the operation's progress. Default is <see langword="UIOption.OnlyErrorDialogs" />.</param>
2653       <exception cref="T:System.ArgumentException">
2654         <paramref name="destinationFileName" /> contains path information.</exception>
2655       <exception cref="T:System.ArgumentNullException">
2656         <paramref name="destinationFileName" /> or <paramref name="sourceFileName" /> is <see langword="Nothing" /> or an empty string.</exception>
2657       <exception cref="T:System.IO.FileNotFoundException">The source file is not valid or does not exist.</exception>
2658       <exception cref="T:System.IO.IOException">The destination file exists and <paramref name="overwrite" /> is set to <see langword="False" />.</exception>
2659       <exception cref="T:System.NotSupportedException">A file or directory name in the path contains a colon (:) or is in an invalid format.</exception>
2660       <exception cref="T:System.IO.PathTooLongException">The path exceeds the system-defined maximum length.</exception>
2661       <exception cref="T:System.UnauthorizedAccessException">The user does not have required permission.</exception>
2662       <exception cref="T:System.Security.SecurityException">The user lacks necessary permissions to view the path.</exception>
2663     </member>
2664     <member name="M:Microsoft.VisualBasic.FileIO.FileSystem.CopyFile(System.String,System.String,Microsoft.VisualBasic.FileIO.UIOption,Microsoft.VisualBasic.FileIO.UICancelOption)">
2665       <summary>Copies a file to a new location.</summary>
2666       <param name="sourceFileName">The file to be copied.</param>
2667       <param name="destinationFileName">The location to which the file should be copied.</param>
2668       <param name="showUI">Whether to visually track the operation's progress. Default is <see langword="UIOption.OnlyErrorDialogs" />.</param>
2669       <param name="onUserCancel">Specifies what should be done if the user clicks Cancel during the operation. Default is <see cref="F:Microsoft.VisualBasic.FileIO.UICancelOption.ThrowException" />.</param>
2670       <exception cref="T:System.ArgumentException">
2671         <paramref name="destinationFileName" /> contains path information.</exception>
2672       <exception cref="T:System.ArgumentNullException">
2673         <paramref name="destinationFileName" /> or <paramref name="sourceFileName" /> is <see langword="Nothing" /> or an empty string.</exception>
2674       <exception cref="T:System.IO.FileNotFoundException">The source file is not valid or does not exist.</exception>
2675       <exception cref="T:System.IO.IOException">The destination file exists and <paramref name="overwrite" /> is set to <see langword="False" />.</exception>
2676       <exception cref="T:System.NotSupportedException">A file or directory name in the path contains a colon (:) or is in an invalid format.</exception>
2677       <exception cref="T:System.IO.PathTooLongException">The path exceeds the system-defined maximum length.</exception>
2678       <exception cref="T:System.UnauthorizedAccessException">The user does not have required permission.</exception>
2679       <exception cref="T:System.Security.SecurityException">The user lacks necessary permissions to view the path.</exception>
2680       <exception cref="T:System.OperationCanceledException">
2681         <paramref name="UICancelOption" /> is set to <see langword="ThrowException" />, and the user has canceled the operation or an unspecified I/O error occurs.</exception>
2682     </member>
2683     <member name="M:Microsoft.VisualBasic.FileIO.FileSystem.CopyFile(System.String,System.String,System.Boolean)">
2684       <summary>Copies a file to a new location.</summary>
2685       <param name="sourceFileName">The file to be copied.</param>
2686       <param name="destinationFileName">The location to which the file should be copied.</param>
2687       <param name="overwrite">
2688         <see langword="True" /> if existing files should be overwritten; otherwise <see langword="False" />. Default is <see langword="False" />.</param>
2689       <exception cref="T:System.ArgumentException">
2690         <paramref name="destinationFileName" /> contains path information.</exception>
2691       <exception cref="T:System.ArgumentNullException">
2692         <paramref name="destinationFileName" /> or <paramref name="sourceFileName" /> is <see langword="Nothing" /> or an empty string.</exception>
2693       <exception cref="T:System.IO.FileNotFoundException">The source file is not valid or does not exist.</exception>
2694       <exception cref="T:System.IO.IOException">The destination file exists and <paramref name="overwrite" /> is set to <see langword="False" />.</exception>
2695       <exception cref="T:System.NotSupportedException">A file or directory name in the path contains a colon (:) or is in an invalid format.</exception>
2696       <exception cref="T:System.IO.PathTooLongException">The path exceeds the system-defined maximum length.</exception>
2697       <exception cref="T:System.UnauthorizedAccessException">The user does not have required permission.</exception>
2698       <exception cref="T:System.Security.SecurityException">The user lacks necessary permissions to view the path.</exception>
2699     </member>
2700     <member name="M:Microsoft.VisualBasic.FileIO.FileSystem.CreateDirectory(System.String)">
2701       <summary>Creates a directory.</summary>
2702       <param name="directory">Name and location of the directory.</param>
2703       <exception cref="T:System.ArgumentException">The directory name is malformed. For example, it contains illegal characters or is only white space.</exception>
2704       <exception cref="T:System.ArgumentNullException">
2705         <paramref name="directory" /> is <see langword="Nothing" /> or an empty string.</exception>
2706       <exception cref="T:System.IO.PathTooLongException">The directory name is too long.</exception>
2707       <exception cref="T:System.NotSupportedException">The directory name is only a colon (:).</exception>
2708       <exception cref="T:System.IO.IOException">The parent directory of the directory to be created is read-only.</exception>
2709       <exception cref="T:System.UnauthorizedAccessException">The user does not have permission to create the directory.</exception>
2710     </member>
2711     <member name="M:Microsoft.VisualBasic.FileIO.FileSystem.DeleteDirectory(System.String,Microsoft.VisualBasic.FileIO.DeleteDirectoryOption)">
2712       <summary>Deletes a directory.</summary>
2713       <param name="directory">Directory to be deleted.</param>
2714       <param name="onDirectoryNotEmpty">Specifies what should be done when a directory that is to be deleted contains files or directories. Default is <see langword="DeleteDirectoryOption.DeleteAllContents" />.</param>
2715       <exception cref="T:System.ArgumentException">The path is a zero-length string, is malformed, contains only white space, or contains invalid characters (including wildcard characters). The path is a device path (starts with \\.\).</exception>
2716       <exception cref="T:System.ArgumentNullException">
2717         <paramref name="directory" /> is <see langword="Nothing" /> or an empty string.</exception>
2718       <exception cref="T:System.IO.DirectoryNotFoundException">The directory does not exist or is a file.</exception>
2719       <exception cref="T:System.IO.IOException">A file in the directory or subdirectory is in use.</exception>
2720       <exception cref="T:System.NotSupportedException">The directory name contains a colon (:).</exception>
2721       <exception cref="T:System.IO.PathTooLongException">The path exceeds the system-defined maximum length.</exception>
2722       <exception cref="T:System.Security.SecurityException">The user does not have required permissions.</exception>
2723       <exception cref="T:System.OperationCanceledException">The user cancels the operation or the directory cannot be deleted.</exception>
2724     </member>
2725     <member name="M:Microsoft.VisualBasic.FileIO.FileSystem.DeleteDirectory(System.String,Microsoft.VisualBasic.FileIO.UIOption,Microsoft.VisualBasic.FileIO.RecycleOption)">
2726       <summary>Deletes a directory.</summary>
2727       <param name="directory">Directory to be deleted.</param>
2728       <param name="showUI">Specifies whether to visually track the operation's progress. Default is <see langword="UIOption.OnlyErrorDialogs" />.</param>
2729       <param name="recycle">Specifies whether or not the deleted file should be sent to the Recycle Bin. Default is <see langword="RecycleOption.DeletePermanently" />.</param>
2730       <exception cref="T:System.ArgumentException">The path is a zero-length string, is malformed, contains only white space, or contains invalid characters (including wildcard characters). The path is a device path (starts with \\.\).</exception>
2731       <exception cref="T:System.ArgumentNullException">
2732         <paramref name="directory" /> is <see langword="Nothing" /> or an empty string.</exception>
2733       <exception cref="T:System.IO.DirectoryNotFoundException">The directory does not exist or is a file.</exception>
2734       <exception cref="T:System.IO.IOException">A file in the directory or subdirectory is in use.</exception>
2735       <exception cref="T:System.NotSupportedException">The directory name contains a colon (:).</exception>
2736       <exception cref="T:System.IO.PathTooLongException">The path exceeds the system-defined maximum length.</exception>
2737       <exception cref="T:System.Security.SecurityException">The user does not have required permissions.</exception>
2738       <exception cref="T:System.OperationCanceledException">The user cancels the operation or the directory cannot be deleted.</exception>
2739     </member>
2740     <member name="M:Microsoft.VisualBasic.FileIO.FileSystem.DeleteDirectory(System.String,Microsoft.VisualBasic.FileIO.UIOption,Microsoft.VisualBasic.FileIO.RecycleOption,Microsoft.VisualBasic.FileIO.UICancelOption)">
2741       <summary>Deletes a directory.</summary>
2742       <param name="directory">Directory to be deleted.</param>
2743       <param name="showUI">Specifies whether to visually track the operation's progress. Default is <see langword="UIOption.OnlyErrorDialogs" />.</param>
2744       <param name="recycle">Specifies whether or not the deleted file should be sent to the Recycle Bin. Default is <see langword="RecycleOption.DeletePermanently" />.</param>
2745       <param name="onUserCancel">Specifies whether to throw an exception if the user clicks Cancel.</param>
2746       <exception cref="T:System.ArgumentException">The path is a zero-length string, is malformed, contains only white space, or contains invalid characters (including wildcard characters). The path is a device path (starts with \\.\).</exception>
2747       <exception cref="T:System.ArgumentNullException">
2748         <paramref name="directory" /> is <see langword="Nothing" /> or an empty string.</exception>
2749       <exception cref="T:System.IO.DirectoryNotFoundException">The directory does not exist or is a file.</exception>
2750       <exception cref="T:System.IO.IOException">A file in the directory or subdirectory is in use.</exception>
2751       <exception cref="T:System.NotSupportedException">The directory name contains a colon (:).</exception>
2752       <exception cref="T:System.IO.PathTooLongException">The path exceeds the system-defined maximum length.</exception>
2753       <exception cref="T:System.Security.SecurityException">The user does not have required permissions.</exception>
2754       <exception cref="T:System.OperationCanceledException">The user cancels the operation or the directory cannot be deleted.</exception>
2755     </member>
2756     <member name="M:Microsoft.VisualBasic.FileIO.FileSystem.DeleteFile(System.String)">
2757       <summary>Deletes a file.</summary>
2758       <param name="file">Name and path of the file to be deleted.</param>
2759       <exception cref="T:System.ArgumentException">The path is not valid for one of the following reasons: it is a zero-length string; it contains only white space; it contains invalid characters; it has a trailing slash where a file must be specified; or it is a device path (starts with \\.\).</exception>
2760       <exception cref="T:System.ArgumentNullException">
2761         <paramref name="file" /> is <see langword="Nothing" /> or an empty string.</exception>
2762       <exception cref="T:System.IO.PathTooLongException">The path exceeds the system-defined maximum length.</exception>
2763       <exception cref="T:System.NotSupportedException">A file or directory name in the path contains a colon (:) or is in an invalid format.</exception>
2764       <exception cref="T:System.IO.IOException">The file is in use.</exception>
2765       <exception cref="T:System.Security.SecurityException">The user lacks necessary permissions to view the path.</exception>
2766       <exception cref="T:System.IO.FileNotFoundException">The file does not exist.</exception>
2767       <exception cref="T:System.UnauthorizedAccessException">The user does not have permission to delete the file or the file is read-only.</exception>
2768     </member>
2769     <member name="M:Microsoft.VisualBasic.FileIO.FileSystem.DeleteFile(System.String,Microsoft.VisualBasic.FileIO.UIOption,Microsoft.VisualBasic.FileIO.RecycleOption)">
2770       <summary>Deletes a file.</summary>
2771       <param name="file">Name and path of the file to be deleted.</param>
2772       <param name="showUI">Whether to visually track the operation's progress. Default is <see langword="UIOption.OnlyErrorDialogs" />.</param>
2773       <param name="recycle">Whether or not the deleted file should be sent to the Recycle Bin. Default is <see langword="RecycleOption.DeletePermanently" />.</param>
2774       <exception cref="T:System.ArgumentException">The path is not valid for one of the following reasons: it is a zero-length string; it contains only white space; it contains invalid characters; it has a trailing slash where a file must be specified; or it is a device path (starts with \\.\).</exception>
2775       <exception cref="T:System.ArgumentNullException">
2776         <paramref name="file" /> is <see langword="Nothing" /> or an empty string.</exception>
2777       <exception cref="T:System.IO.PathTooLongException">The path exceeds the system-defined maximum length.</exception>
2778       <exception cref="T:System.NotSupportedException">A file or directory name in the path contains a colon (:) or is in an invalid format.</exception>
2779       <exception cref="T:System.IO.IOException">The file is in use.</exception>
2780       <exception cref="T:System.Security.SecurityException">The user lacks necessary permissions to view the path.</exception>
2781       <exception cref="T:System.IO.FileNotFoundException">The file does not exist.</exception>
2782       <exception cref="T:System.UnauthorizedAccessException">The user does not have permission to delete the file or the file is read-only.</exception>
2783     </member>
2784     <member name="M:Microsoft.VisualBasic.FileIO.FileSystem.DeleteFile(System.String,Microsoft.VisualBasic.FileIO.UIOption,Microsoft.VisualBasic.FileIO.RecycleOption,Microsoft.VisualBasic.FileIO.UICancelOption)">
2785       <summary>Deletes a file.</summary>
2786       <param name="file">Name and path of the file to be deleted.</param>
2787       <param name="showUI">Whether to visually track the operation's progress. Default is <see langword="UIOption.OnlyErrorDialogs" />.</param>
2788       <param name="recycle">Whether or not the deleted file should be sent to the Recycle Bin. Default is <see langword="RecycleOption.DeletePermanently" />.</param>
2789       <param name="onUserCancel">Specifies whether or not an exception is thrown when the user cancels the operation. Default is <see langword="UICancelOption.ThrowException" />.</param>
2790       <exception cref="T:System.ArgumentException">The path is not valid for one of the following reasons: it is a zero-length string; it contains only white space; it contains invalid characters; it has a trailing slash where a file must be specified; or it is a device path (starts with \\.\).</exception>
2791       <exception cref="T:System.ArgumentNullException">
2792         <paramref name="file" /> is <see langword="Nothing" /> or an empty string.</exception>
2793       <exception cref="T:System.IO.PathTooLongException">The path exceeds the system-defined maximum length.</exception>
2794       <exception cref="T:System.NotSupportedException">A file or directory name in the path contains a colon (:) or is in an invalid format.</exception>
2795       <exception cref="T:System.IO.IOException">The file is in use.</exception>
2796       <exception cref="T:System.Security.SecurityException">The user lacks necessary permissions to view the path.</exception>
2797       <exception cref="T:System.IO.FileNotFoundException">The file does not exist.</exception>
2798       <exception cref="T:System.UnauthorizedAccessException">The user does not have permission to delete the file or the file is read-only.</exception>
2799       <exception cref="T:System.OperationCanceledException">The user cancelled the operation and <paramref name="onUserCancel" /> is set to <see cref="F:Microsoft.VisualBasic.FileIO.UICancelOption.ThrowException" />.</exception>
2800     </member>
2801     <member name="M:Microsoft.VisualBasic.FileIO.FileSystem.DirectoryExists(System.String)">
2802       <summary>Returns <see langword="True" /> if the specified directory exists.</summary>
2803       <param name="directory">Path of the directory.</param>
2804       <returns>
2805         <see langword="True" /> if the directory exists; otherwise <see langword="False" />. This method also returns <see langword="False" /> if the parameter represents the name and path of a file rather than a directory.</returns>
2806     </member>
2807     <member name="M:Microsoft.VisualBasic.FileIO.FileSystem.FileExists(System.String)">
2808       <summary>Returns <see langword="True" /> if the specified file exists.</summary>
2809       <param name="file">Name and path of the file.</param>
2810       <exception cref="T:System.ArgumentException">The name of the file ends with a backslash (\).</exception>
2811       <returns>Returns <see langword="True" /> if the file exists; otherwise this method returns <see langword="False" />. This method also returns <see langword="False" /> if the parameter represents the path of a directory rather than a file.</returns>
2812     </member>
2813     <member name="M:Microsoft.VisualBasic.FileIO.FileSystem.FindInFiles(System.String,System.String,System.Boolean,Microsoft.VisualBasic.FileIO.SearchOption)">
2814       <summary>Returns a read-only collection of strings representing the names of files containing the specified text.</summary>
2815       <param name="directory">The directory to be searched.</param>
2816       <param name="containsText">The search text.</param>
2817       <param name="ignoreCase">
2818         <see langword="True" /> if the search should be case-sensitive; otherwise <see langword="False" />. Default is <see langword="True" />.</param>
2819       <param name="searchType">Whether to include subfolders. Default is <see langword="SearchOption.SearchTopLevelOnly" />.</param>
2820       <exception cref="T:System.ArgumentException">The path is not valid for one of the following reasons: it is a zero-length string; it contains only white space; it contains invalid characters; or it is a device path (starts with <c>\\.\</c>).</exception>
2821       <exception cref="T:System.ArgumentNullException">
2822         <paramref name="directory" /> is <see langword="Nothing" /> or an empty string.</exception>
2823       <exception cref="T:System.IO.DirectoryNotFoundException">The specified directory does not exist.</exception>
2824       <exception cref="T:System.IO.IOException">The specified directory points to an existing file.</exception>
2825       <exception cref="T:System.IO.PathTooLongException">The path exceeds the system-defined maximum length.</exception>
2826       <exception cref="T:System.NotSupportedException">The specified directory path contains a colon (:) or is in an invalid format.</exception>
2827       <exception cref="T:System.Security.SecurityException">The user lacks necessary permissions to view the path.</exception>
2828       <exception cref="T:System.UnauthorizedAccessException">The user lacks necessary permissions.</exception>
2829       <returns>Read-only collection of the names of files containing the specified text.</returns>
2830     </member>
2831     <member name="M:Microsoft.VisualBasic.FileIO.FileSystem.FindInFiles(System.String,System.String,System.Boolean,Microsoft.VisualBasic.FileIO.SearchOption,System.String[])">
2832       <summary>Returns a read-only collection of strings representing the names of files containing the specified text.</summary>
2833       <param name="directory">The directory to be searched.</param>
2834       <param name="containsText">The search text.</param>
2835       <param name="ignoreCase">
2836         <see langword="True" /> if the search should be case-sensitive; otherwise <see langword="False" />. Default is <see langword="True" />.</param>
2837       <param name="searchType">Whether to include subfolders. Default is <see langword="SearchOption.SearchTopLevelOnly" />.</param>
2838       <param name="fileWildcards">Pattern to be matched.</param>
2839       <exception cref="T:System.ArgumentException">The path is not valid for one of the following reasons: it is a zero-length string; it contains only white space; it contains invalid characters; or it is a device path (starts with <c>\\.\</c>).</exception>
2840       <exception cref="T:System.ArgumentNullException">
2841         <paramref name="directory" /> is <see langword="Nothing" /> or an empty string.</exception>
2842       <exception cref="T:System.IO.DirectoryNotFoundException">The specified directory does not exist.</exception>
2843       <exception cref="T:System.IO.IOException">The specified directory points to an existing file.</exception>
2844       <exception cref="T:System.IO.PathTooLongException">The path exceeds the system-defined maximum length.</exception>
2845       <exception cref="T:System.NotSupportedException">The specified directory path contains a colon (:) or is in an invalid format.</exception>
2846       <exception cref="T:System.Security.SecurityException">The user lacks necessary permissions to view the path.</exception>
2847       <exception cref="T:System.UnauthorizedAccessException">The user lacks necessary permissions.</exception>
2848       <returns>Read-only collection of the names of files containing the specified text.</returns>
2849     </member>
2850     <member name="M:Microsoft.VisualBasic.FileIO.FileSystem.GetDirectories(System.String)">
2851       <summary>Returns a collection of strings representing the path names of subdirectories within a directory.</summary>
2852       <param name="directory">Name and path of directory.</param>
2853       <exception cref="T:System.ArgumentException">The path is not valid for one of the following reasons: it is a zero-length string; it contains only white space; it contains invalid characters; or it is a device path (starts with \\.\).</exception>
2854       <exception cref="T:System.ArgumentNullException">
2855         <paramref name="directory" /> is <see langword="Nothing" /> or an empty string.</exception>
2856       <exception cref="T:System.IO.DirectoryNotFoundException">The specified directory does not exist.</exception>
2857       <exception cref="T:System.IO.IOException">The specified directory points to an existing file.</exception>
2858       <exception cref="T:System.IO.PathTooLongException">The path exceeds the system-defined maximum length.</exception>
2859       <exception cref="T:System.NotSupportedException">A file or directory name in the path contains a colon (:) or is in an invalid format.</exception>
2860       <exception cref="T:System.Security.SecurityException">The user lacks necessary permissions to view the path.</exception>
2861       <exception cref="T:System.UnauthorizedAccessException">The user lacks necessary permissions.</exception>
2862       <returns>Read-only collection of the path names of subdirectories within the specified directory.</returns>
2863     </member>
2864     <member name="M:Microsoft.VisualBasic.FileIO.FileSystem.GetDirectories(System.String,Microsoft.VisualBasic.FileIO.SearchOption,System.String[])">
2865       <summary>Returns a collection of strings representing the path names of subdirectories within a directory.</summary>
2866       <param name="directory">Name and path of directory.</param>
2867       <param name="searchType">Whether to include subfolders. Default is <see langword="SearchOption.SearchTopLevelOnly" />.</param>
2868       <param name="wildcards">Pattern to match names.</param>
2869       <exception cref="T:System.ArgumentException">The path is not valid for one of the following reasons: it is a zero-length string; it contains only white space; it contains invalid characters; or it is a device path (starts with \\.\).</exception>
2870       <exception cref="T:System.ArgumentNullException">One or more of the specified wildcard characters is <see langword="Nothing" />, an empty string, or contains only spaces.</exception>
2871       <exception cref="T:System.IO.DirectoryNotFoundException">The specified directory does not exist.</exception>
2872       <exception cref="T:System.IO.IOException">The specified directory points to an existing file.</exception>
2873       <exception cref="T:System.IO.PathTooLongException">The path exceeds the system-defined maximum length.</exception>
2874       <exception cref="T:System.NotSupportedException">A file or directory name in the path contains a colon (:) or is in an invalid format.</exception>
2875       <exception cref="T:System.Security.SecurityException">The user lacks necessary permissions to view the path.</exception>
2876       <exception cref="T:System.UnauthorizedAccessException">The user lacks necessary permissions.</exception>
2877       <returns>Read-only collection of the path names of subdirectories within the specified directory.</returns>
2878     </member>
2879     <member name="M:Microsoft.VisualBasic.FileIO.FileSystem.GetDirectoryInfo(System.String)">
2880       <summary>Returns a <see cref="T:System.IO.DirectoryInfo" /> object for the specified path.</summary>
2881       <param name="directory">
2882         <see langword="String" />. Path of directory.</param>
2883       <exception cref="T:System.ArgumentException">The path is not valid for one of the following reasons: it is a zero-length string; it contains only white space; it contains invalid characters; or it is a device path (starts with \\.\).</exception>
2884       <exception cref="T:System.ArgumentNullException">
2885         <paramref name="directory" /> is <see langword="Nothing" /> or an empty string.</exception>
2886       <exception cref="T:System.IO.PathTooLongException">The path exceeds the system-defined maximum length.</exception>
2887       <exception cref="T:System.NotSupportedException">The directory path contains a colon (:) or is in an invalid format.</exception>
2888       <exception cref="T:System.Security.SecurityException">The user lacks necessary permissions to view the path.</exception>
2889       <returns>
2890         <see cref="T:System.IO.DirectoryInfo" /> object for the specified path.</returns>
2891     </member>
2892     <member name="M:Microsoft.VisualBasic.FileIO.FileSystem.GetDriveInfo(System.String)">
2893       <summary>Returns a <see cref="T:System.IO.DriveInfo" /> object for the specified drive.</summary>
2894       <param name="drive">Drive to be examined.</param>
2895       <exception cref="T:System.ArgumentException">The path is not valid for one of the following reasons: it is a zero-length string; it contains only white space; it contains invalid characters; or it is a device path (starts with \\.\).</exception>
2896       <exception cref="T:System.ArgumentNullException">
2897         <paramref name="drive" /> is <see langword="Nothing" /> or an empty string.</exception>
2898       <exception cref="T:System.IO.PathTooLongException">The path exceeds the system-defined maximum length.</exception>
2899       <exception cref="T:System.Security.SecurityException">The user lacks necessary permissions to view the path.</exception>
2900       <returns>
2901         <see cref="T:System.IO.DriveInfo" /> object for the specified drive.</returns>
2902     </member>
2903     <member name="M:Microsoft.VisualBasic.FileIO.FileSystem.GetFileInfo(System.String)">
2904       <summary>Returns a <see cref="T:System.IO.FileInfo" /> object for the specified file.</summary>
2905       <param name="file">Name and path of the file.</param>
2906       <exception cref="T:System.ArgumentException">The path name is malformed. For example, it contains invalid characters or is only white space. The file name has a trailing slash mark.</exception>
2907       <exception cref="T:System.ArgumentNullException">
2908         <paramref name="file" /> is <see langword="Nothing" /> or an empty string.</exception>
2909       <exception cref="T:System.NotSupportedException">The path contains a colon in the middle of the string.</exception>
2910       <exception cref="T:System.IO.PathTooLongException">The path is too long.</exception>
2911       <exception cref="T:System.Security.SecurityException">The user lacks necessary permissions.</exception>
2912       <exception cref="T:System.UnauthorizedAccessException">The user lacks ACL (access control list) access to the file.</exception>
2913       <returns>
2914         <see cref="T:System.IO.FileInfo" /> object for the specified file.</returns>
2915     </member>
2916     <member name="M:Microsoft.VisualBasic.FileIO.FileSystem.GetFiles(System.String)">
2917       <summary>Returns a read-only collection of strings representing the names of files within a directory.</summary>
2918       <param name="directory">Directory to be searched.</param>
2919       <exception cref="T:System.ArgumentException">The path is not valid for one of the following reasons: it is a zero-length string; it contains only white space; it contains invalid characters; or it is a device path (starts with \\.\).</exception>
2920       <exception cref="T:System.ArgumentNullException">
2921         <paramref name="directory" /> is <see langword="Nothing" />.</exception>
2922       <exception cref="T:System.IO.DirectoryNotFoundException">The directory to search does not exist.</exception>
2923       <exception cref="T:System.IO.IOException">
2924         <paramref name="directory" /> points to an existing file.</exception>
2925       <exception cref="T:System.IO.PathTooLongException">The path exceeds the system-defined maximum length.</exception>
2926       <exception cref="T:System.NotSupportedException">A file or directory name in the path contains a colon (:) or is in an invalid format.</exception>
2927       <exception cref="T:System.Security.SecurityException">The user lacks necessary permissions to view the path.</exception>
2928       <exception cref="T:System.UnauthorizedAccessException">The user lacks necessary permissions.</exception>
2929       <returns>Read-only collection of file names from the specified directory.</returns>
2930     </member>
2931     <member name="M:Microsoft.VisualBasic.FileIO.FileSystem.GetFiles(System.String,Microsoft.VisualBasic.FileIO.SearchOption,System.String[])">
2932       <summary>Returns a read-only collection of strings representing the names of files within a directory.</summary>
2933       <param name="directory">Directory to be searched.</param>
2934       <param name="searchType">Whether to include subfolders. Default is <see langword="SearchOption.SearchTopLevelOnly" />.</param>
2935       <param name="wildcards">Pattern to be matched.</param>
2936       <exception cref="T:System.ArgumentException">The path is not valid for one of the following reasons: it is a zero-length string; it contains only white space; it contains invalid characters; or it is a device path (starts with \\.\).</exception>
2937       <exception cref="T:System.ArgumentNullException">
2938         <paramref name="directory" /> is <see langword="Nothing" />.</exception>
2939       <exception cref="T:System.IO.DirectoryNotFoundException">The directory to search does not exist.</exception>
2940       <exception cref="T:System.IO.IOException">
2941         <paramref name="directory" /> points to an existing file.</exception>
2942       <exception cref="T:System.IO.PathTooLongException">The path exceeds the system-defined maximum length.</exception>
2943       <exception cref="T:System.NotSupportedException">A file or directory name in the path contains a colon (:) or is in an invalid format.</exception>
2944       <exception cref="T:System.Security.SecurityException">The user lacks necessary permissions to view the path.</exception>
2945       <exception cref="T:System.UnauthorizedAccessException">The user lacks necessary permissions.</exception>
2946       <returns>Read-only collection of file names from the specified directory.</returns>
2947     </member>
2948     <member name="M:Microsoft.VisualBasic.FileIO.FileSystem.GetName(System.String)">
2949       <summary>Parses the file name out of the path provided.</summary>
2950       <param name="path">Required. Path to be parsed. <see langword="String" />.</param>
2951       <returns>The file name from the specified path.</returns>
2952     </member>
2953     <member name="M:Microsoft.VisualBasic.FileIO.FileSystem.GetParentPath(System.String)">
2954       <summary>Returns the parent path of the provided path.</summary>
2955       <param name="path">Path to be examined.</param>
2956       <exception cref="T:System.ArgumentException">Path does not have a parent path because it is a root path.</exception>
2957       <exception cref="T:System.ArgumentNullException">
2958         <paramref name="path" /> is <see langword="Nothing" />.</exception>
2959       <exception cref="T:System.IO.PathTooLongException">The path exceeds the system-defined maximum length.</exception>
2960       <exception cref="T:System.NotSupportedException">A file or directory name in the path contains a colon (:) or is in an invalid format.</exception>
2961       <returns>The parent path of the provided path.</returns>
2962     </member>
2963     <member name="M:Microsoft.VisualBasic.FileIO.FileSystem.GetTempFileName">
2964       <summary>Creates a uniquely named zero-byte temporary file on disk and returns the full path of that file.</summary>
2965       <returns>
2966         <see langword="String" /> containing the full path of the temporary file.</returns>
2967     </member>
2968     <member name="M:Microsoft.VisualBasic.FileIO.FileSystem.MoveDirectory(System.String,System.String)">
2969       <summary>Moves a directory from one location to another.</summary>
2970       <param name="sourceDirectoryName">Path of the directory to be moved.</param>
2971       <param name="destinationDirectoryName">Path of the directory to which the source directory is being moved.</param>
2972       <exception cref="T:System.ArgumentException">The path is not valid for one of the following reasons: it is a zero-length string; it contains only white space; it contains invalid characters; or it is a device path (starts with \\.\).</exception>
2973       <exception cref="T:System.ArgumentNullException">
2974         <paramref name="sourceDirectoryName" /> or <paramref name="destinationDirectoryName" /> is <see langword="Nothing" /> or an empty string.</exception>
2975       <exception cref="T:System.IO.DirectoryNotFoundException">The directory does not exist.</exception>
2976       <exception cref="T:System.IO.IOException">The source is a root directory or The source path and the target path are the same.</exception>
2977       <exception cref="T:System.IO.PathTooLongException">The path exceeds the system-defined maximum length.</exception>
2978       <exception cref="T:System.InvalidOperationException">The operation is cyclic.</exception>
2979       <exception cref="T:System.NotSupportedException">A file or directory name in the path contains a colon (:) or is in an invalid format.</exception>
2980       <exception cref="T:System.Security.SecurityException">The user lacks necessary permissions to view the path.</exception>
2981       <exception cref="T:System.UnauthorizedAccessException">The user does not have required permission.</exception>
2982     </member>
2983     <member name="M:Microsoft.VisualBasic.FileIO.FileSystem.MoveDirectory(System.String,System.String,Microsoft.VisualBasic.FileIO.UIOption)">
2984       <summary>Moves a directory from one location to another.</summary>
2985       <param name="sourceDirectoryName">Path of the directory to be moved.</param>
2986       <param name="destinationDirectoryName">Path of the directory to which the source directory is being moved.</param>
2987       <param name="showUI">Specifies whether to visually track the operation's progress. Default is <see langword="UIOption.OnlyErrorDialogs" />.</param>
2988       <exception cref="T:System.ArgumentException">The path is not valid for one of the following reasons: it is a zero-length string; it contains only white space; it contains invalid characters; or it is a device path (starts with \\.\).</exception>
2989       <exception cref="T:System.ArgumentNullException">
2990         <paramref name="sourceDirectoryName" /> or <paramref name="destinationDirectoryName" /> is <see langword="Nothing" /> or an empty string.</exception>
2991       <exception cref="T:System.IO.DirectoryNotFoundException">The directory does not exist.</exception>
2992       <exception cref="T:System.IO.IOException">The target directory already exists and <paramref name="overwrite" /> is set to <see langword="False" />.</exception>
2993       <exception cref="T:System.IO.PathTooLongException">The path exceeds the system-defined maximum length.</exception>
2994       <exception cref="T:System.InvalidOperationException">The operation is cyclic.</exception>
2995       <exception cref="T:System.NotSupportedException">A file or directory name in the path contains a colon (:) or is in an invalid format.</exception>
2996       <exception cref="T:System.Security.SecurityException">The user lacks necessary permissions to view the path.</exception>
2997       <exception cref="T:System.UnauthorizedAccessException">The user does not have required permission.</exception>
2998     </member>
2999     <member name="M:Microsoft.VisualBasic.FileIO.FileSystem.MoveDirectory(System.String,System.String,Microsoft.VisualBasic.FileIO.UIOption,Microsoft.VisualBasic.FileIO.UICancelOption)">
3000       <summary>Moves a directory from one location to another.</summary>
3001       <param name="sourceDirectoryName">Path of the directory to be moved.</param>
3002       <param name="destinationDirectoryName">Path of the directory to which the source directory is being moved.</param>
3003       <param name="showUI">Specifies whether to visually track the operation's progress. Default is <see langword="UIOption.OnlyErrorDialogs" />.</param>
3004       <param name="onUserCancel">Specifies whether or not an exception is thrown when the user cancels the operation. Default is <see langword="UICancelOption.ThrowException" />.</param>
3005       <exception cref="T:System.ArgumentException">The path is not valid for one of the following reasons: it is a zero-length string; it contains only white space; it contains invalid characters; or it is a device path (starts with \\.\).</exception>
3006       <exception cref="T:System.ArgumentNullException">
3007         <paramref name="sourceDirectoryName" /> or <paramref name="destinationDirectoryName" /> is <see langword="Nothing" /> or an empty string.</exception>
3008       <exception cref="T:System.IO.DirectoryNotFoundException">The directory does not exist.</exception>
3009       <exception cref="T:System.IO.IOException">
3010         <paramref name="onUserCancel" /> is set to <see langword="ThrowException" /> and a subdirectory of the file cannot be copied.</exception>
3011       <exception cref="T:System.OperationCanceledException">
3012         <paramref name="onUserCancel" /> is set to <see langword="ThrowException" />, and the user cancels the operation, or the operation cannot be completed.</exception>
3013       <exception cref="T:System.Security.SecurityException">The user lacks necessary permissions to view the path.</exception>
3014       <exception cref="T:System.IO.PathTooLongException">The path exceeds the system-defined maximum length.</exception>
3015       <exception cref="T:System.InvalidOperationException">The operation is cyclic.</exception>
3016       <exception cref="T:System.NotSupportedException">A file or directory name in the path contains a colon (:) or is in an invalid format.</exception>
3017       <exception cref="T:System.UnauthorizedAccessException">The user does not have required permission.</exception>
3018     </member>
3019     <member name="M:Microsoft.VisualBasic.FileIO.FileSystem.MoveDirectory(System.String,System.String,System.Boolean)">
3020       <summary>Moves a directory from one location to another.</summary>
3021       <param name="sourceDirectoryName">Path of the directory to be moved.</param>
3022       <param name="destinationDirectoryName">Path of the directory to which the source directory is being moved.</param>
3023       <param name="overwrite">
3024         <see langword="True" /> if existing directories should be overwritten; otherwise <see langword="False" />. Default is <see langword="False" />.</param>
3025       <exception cref="T:System.ArgumentException">The path is not valid for one of the following reasons: it is a zero-length string; it contains only white space; it contains invalid characters; or it is a device path (starts with \\.\).</exception>
3026       <exception cref="T:System.ArgumentNullException">
3027         <paramref name="sourceDirectoryName" /> or <paramref name="destinationDirectoryName" /> is <see langword="Nothing" /> or an empty string.</exception>
3028       <exception cref="T:System.IO.DirectoryNotFoundException">The directory does not exist.</exception>
3029       <exception cref="T:System.IO.IOException">The target directory already exists and <paramref name="overwrite" /> is set to <see langword="False" />.</exception>
3030       <exception cref="T:System.IO.PathTooLongException">The path exceeds the system-defined maximum length.</exception>
3031       <exception cref="T:System.InvalidOperationException">The operation is cyclic.</exception>
3032       <exception cref="T:System.NotSupportedException">A file or directory name in the path contains a colon (:) or is in an invalid format.</exception>
3033       <exception cref="T:System.Security.SecurityException">The user lacks necessary permissions to view the path.</exception>
3034       <exception cref="T:System.UnauthorizedAccessException">The user does not have required permission.</exception>
3035     </member>
3036     <member name="M:Microsoft.VisualBasic.FileIO.FileSystem.MoveFile(System.String,System.String)">
3037       <summary>Moves a file to a new location.</summary>
3038       <param name="sourceFileName">Path of the file to be moved.</param>
3039       <param name="destinationFileName">Path of the directory into which the file should be moved.</param>
3040       <exception cref="T:System.ArgumentException">The path is not valid for one of the following reasons: it is a zero-length string; it contains only white space; it contains invalid characters; or it is a device path (starts with \\.\); it ends with a trailing slash.</exception>
3041       <exception cref="T:System.ArgumentNullException">
3042         <paramref name="destinationFileName" /> is <see langword="Nothing" /> or an empty string.</exception>
3043       <exception cref="T:System.IO.FileNotFoundException">The source file is not valid or does not exist.</exception>
3044       <exception cref="T:System.IO.IOException">The file is in use by another process, or an I/O error occurs.</exception>
3045       <exception cref="T:System.IO.PathTooLongException">The path exceeds the system-defined maximum length.</exception>
3046       <exception cref="T:System.NotSupportedException">A file or directory name in the path contains a colon (:) or is in an invalid format.</exception>
3047       <exception cref="T:System.Security.SecurityException">The user lacks necessary permissions to view the path.</exception>
3048     </member>
3049     <member name="M:Microsoft.VisualBasic.FileIO.FileSystem.MoveFile(System.String,System.String,Microsoft.VisualBasic.FileIO.UIOption)">
3050       <summary>Moves a file to a new location.</summary>
3051       <param name="sourceFileName">Path of the file to be moved.</param>
3052       <param name="destinationFileName">Path of the directory into which the file should be moved.</param>
3053       <param name="showUI">Specifies whether to visually track the operation's progress. Default is <see langword="UIOption.OnlyErrorDialogs" />.</param>
3054       <exception cref="T:System.ArgumentException">The path is not valid for one of the following reasons: it is a zero-length string; it contains only white space; it contains invalid characters; or it is a device path (starts with \\.\); it ends with a trailing slash.</exception>
3055       <exception cref="T:System.ArgumentNullException">
3056         <paramref name="destinationFileName" /> is <see langword="Nothing" /> or an empty string.</exception>
3057       <exception cref="T:System.IO.FileNotFoundException">The source file is not valid or does not exist.</exception>
3058       <exception cref="T:System.IO.IOException">The file is in use by another process, or an I/O error occurs.</exception>
3059       <exception cref="T:System.IO.PathTooLongException">The path exceeds the system-defined maximum length.</exception>
3060       <exception cref="T:System.NotSupportedException">A file or directory name in the path contains a colon (:) or is in an invalid format.</exception>
3061       <exception cref="T:System.Security.SecurityException">The user lacks necessary permissions to view the path.</exception>
3062     </member>
3063     <member name="M:Microsoft.VisualBasic.FileIO.FileSystem.MoveFile(System.String,System.String,Microsoft.VisualBasic.FileIO.UIOption,Microsoft.VisualBasic.FileIO.UICancelOption)">
3064       <summary>Moves a file to a new location.</summary>
3065       <param name="sourceFileName">Path of the file to be moved.</param>
3066       <param name="destinationFileName">Path of the directory into which the file should be moved.</param>
3067       <param name="showUI">Specifies whether to visually track the operation's progress. Default is <see langword="UIOption.OnlyErrorDialogs" />.</param>
3068       <param name="onUserCancel">Specifies whether or not an exception is thrown when the user cancels the operation. Default is <see langword="UICancelOption.ThrowException" />.</param>
3069       <exception cref="T:System.ArgumentException">The path is not valid for one of the following reasons: it is a zero-length string; it contains only white space; it contains invalid characters; or it is a device path (starts with \\.\); it ends with a trailing slash.</exception>
3070       <exception cref="T:System.ArgumentNullException">
3071         <paramref name="destinationFileName" /> is <see langword="Nothing" /> or an empty string.</exception>
3072       <exception cref="T:System.IO.FileNotFoundException">The source file is not valid or does not exist.</exception>
3073       <exception cref="T:System.IO.IOException">The file is in use by another process, or an I/O error occurs.</exception>
3074       <exception cref="T:System.OperationCanceledException">
3075         <paramref name="onUserCancel" /> is set to <see langword="ThrowException" />, and either the user has cancelled the operation or an unspecified I/O error occurs.</exception>
3076       <exception cref="T:System.IO.PathTooLongException">The path exceeds the system-defined maximum length.</exception>
3077       <exception cref="T:System.NotSupportedException">A file or directory name in the path contains a colon (:) or is in an invalid format.</exception>
3078       <exception cref="T:System.Security.SecurityException">The user lacks necessary permissions to view the path.</exception>
3079     </member>
3080     <member name="M:Microsoft.VisualBasic.FileIO.FileSystem.MoveFile(System.String,System.String,System.Boolean)">
3081       <summary>Moves a file to a new location.</summary>
3082       <param name="sourceFileName">Path of the file to be moved.</param>
3083       <param name="destinationFileName">Path of the directory into which the file should be moved.</param>
3084       <param name="overwrite">
3085         <see langword="True" /> to overwrite existing files; otherwise <see langword="False" />. Default is <see langword="False" />.</param>
3086       <exception cref="T:System.ArgumentException">The path is not valid for one of the following reasons: it is a zero-length string; it contains only white space; it contains invalid characters; or it is a device path (starts with \\.\); it ends with a trailing slash.</exception>
3087       <exception cref="T:System.ArgumentNullException">
3088         <paramref name="destinationFileName" /> is <see langword="Nothing" /> or an empty string.</exception>
3089       <exception cref="T:System.IO.FileNotFoundException">The source file is not valid or does not exist.</exception>
3090       <exception cref="T:System.IO.IOException">The file is in use by another process, or an I/O error occurs.</exception>
3091       <exception cref="T:System.IO.PathTooLongException">The path exceeds the system-defined maximum length.</exception>
3092       <exception cref="T:System.NotSupportedException">A file or directory name in the path contains a colon (:) or is in an invalid format.</exception>
3093       <exception cref="T:System.Security.SecurityException">The user lacks necessary permissions to view the path.</exception>
3094     </member>
3095     <member name="M:Microsoft.VisualBasic.FileIO.FileSystem.OpenTextFieldParser(System.String)">
3096       <summary>The <see langword="OpenTextFieldParser" /> method allows you to create a <see cref="T:Microsoft.VisualBasic.FileIO.TextFieldParser" /> object,  which provides a way to easily and efficiently parse structured text files, such as logs. The <see langword="TextFieldParser" /> object can be used to read both delimited and fixed-width files.</summary>
3097       <param name="file">The file to be opened with the <see langword="TextFieldParser" />.</param>
3098       <exception cref="T:System.ArgumentException">The path is not valid for one of the following reasons: it is a zero-length string; it contains only white space; it contains invalid characters; or it is a device path (starts with \\.\); it ends with a trailing slash.</exception>
3099       <exception cref="T:System.ArgumentNullException">
3100         <paramref name="file" /> is <see langword="Nothing" />.</exception>
3101       <exception cref="T:System.IO.FileNotFoundException">The file does not exist.</exception>
3102       <exception cref="T:System.IO.IOException">The file is in use by another process, or an I/O error occurs.</exception>
3103       <exception cref="T:System.IO.PathTooLongException">The path exceeds the system-defined maximum length.</exception>
3104       <exception cref="T:System.NotSupportedException">A file or directory name in the path contains a colon (:) or is in an invalid format.</exception>
3105       <exception cref="T:Microsoft.VisualBasic.FileIO.MalformedLineException">A row cannot be parsed using the specified format. The exception message specifies the line causing the exception, while the <see cref="P:Microsoft.VisualBasic.FileIO.TextFieldParser.ErrorLine" /> property is assigned the text contained in the line.</exception>
3106       <exception cref="T:System.Security.SecurityException">The user lacks necessary permissions to view the path.</exception>
3107       <returns>
3108         <see cref="T:Microsoft.VisualBasic.FileIO.TextFieldParser" /> to read the specified file.</returns>
3109     </member>
3110     <member name="M:Microsoft.VisualBasic.FileIO.FileSystem.OpenTextFieldParser(System.String,System.Int32[])">
3111       <summary>The <see langword="OpenTextFieldParser" /> method allows you to create a <see cref="T:Microsoft.VisualBasic.FileIO.TextFieldParser" /> object, which provides a way to easily and efficiently parse structured text files, such as logs. The <see langword="TextFieldParser" /> object can be used to read both delimited and fixed-width files.</summary>
3112       <param name="file">The file to be opened with the <see langword="TextFieldParser" />.</param>
3113       <param name="fieldWidths">Widths of the fields.</param>
3114       <exception cref="T:System.ArgumentException">The path is not valid for one of the following reasons: it is a zero-length string; it contains only white space; it contains invalid characters; or it is a device path (starts with \\.\); it ends with a trailing slash.</exception>
3115       <exception cref="T:System.ArgumentNullException">
3116         <paramref name="file" /> is <see langword="Nothing" />.</exception>
3117       <exception cref="T:System.IO.FileNotFoundException">The file does not exist.</exception>
3118       <exception cref="T:System.IO.IOException">The file is in use by another process, or an I/O error occurs.</exception>
3119       <exception cref="T:System.IO.PathTooLongException">The path exceeds the system-defined maximum length.</exception>
3120       <exception cref="T:System.NotSupportedException">A file or directory name in the path contains a colon (:) or is in an invalid format.</exception>
3121       <exception cref="T:Microsoft.VisualBasic.FileIO.MalformedLineException">A row cannot be parsed using the specified format. The exception message specifies the line causing the exception, while the <see cref="P:Microsoft.VisualBasic.FileIO.TextFieldParser.ErrorLine" /> property is assigned the text contained in the line.</exception>
3122       <exception cref="T:System.Security.SecurityException">The user lacks necessary permissions to view the path.</exception>
3123       <returns>
3124         <see cref="T:Microsoft.VisualBasic.FileIO.TextFieldParser" /> to read the specified file.</returns>
3125     </member>
3126     <member name="M:Microsoft.VisualBasic.FileIO.FileSystem.OpenTextFieldParser(System.String,System.String[])">
3127       <summary>The <see langword="OpenTextFieldParser" /> method allows you to create a <see cref="T:Microsoft.VisualBasic.FileIO.TextFieldParser" /> object, which provides a way to easily and efficiently parse structured text files, such as logs. The <see langword="TextFieldParser" /> object can be used to read both delimited and fixed-width files.</summary>
3128       <param name="file">The file to be opened with the <see langword="TextFieldParser" />.</param>
3129       <param name="delimiters">Delimiters for the fields.</param>
3130       <exception cref="T:System.ArgumentException">The path is not valid for one of the following reasons: it is a zero-length string; it contains only white space; it contains invalid characters; or it is a device path (starts with \\.\); it ends with a trailing slash.</exception>
3131       <exception cref="T:System.ArgumentNullException">
3132         <paramref name="file" /> is <see langword="Nothing" />.</exception>
3133       <exception cref="T:System.IO.FileNotFoundException">The file does not exist.</exception>
3134       <exception cref="T:System.IO.IOException">The file is in use by another process, or an I/O error occurs.</exception>
3135       <exception cref="T:System.IO.PathTooLongException">The path exceeds the system-defined maximum length.</exception>
3136       <exception cref="T:System.NotSupportedException">A file or directory name in the path contains a colon (:) or is in an invalid format.</exception>
3137       <exception cref="T:Microsoft.VisualBasic.FileIO.MalformedLineException">A row cannot be parsed using the specified format. The exception message specifies the line causing the exception, while the <see cref="P:Microsoft.VisualBasic.FileIO.TextFieldParser.ErrorLine" /> property is assigned the text contained in the line.</exception>
3138       <exception cref="T:System.Security.SecurityException">The user lacks necessary permissions to view the path.</exception>
3139       <returns>
3140         <see cref="T:Microsoft.VisualBasic.FileIO.TextFieldParser" /> to read the specified file.</returns>
3141     </member>
3142     <member name="M:Microsoft.VisualBasic.FileIO.FileSystem.OpenTextFileReader(System.String)">
3143       <summary>Opens a <see cref="T:System.IO.StreamReader" /> object to read from a file.</summary>
3144       <param name="file">File to be read.</param>
3145       <exception cref="T:System.ArgumentException">The file name ends with a backslash (\).</exception>
3146       <exception cref="T:System.IO.FileNotFoundException">The specified file cannot be found.</exception>
3147       <exception cref="T:System.Security.SecurityException">The user lacks necessary permissions to read from the file.</exception>
3148       <returns>
3149         <see cref="T:System.IO.StreamReader" /> object to read from the file.</returns>
3150     </member>
3151     <member name="M:Microsoft.VisualBasic.FileIO.FileSystem.OpenTextFileReader(System.String,System.Text.Encoding)">
3152       <summary>Opens a <see cref="T:System.IO.StreamReader" /> object to read from a file.</summary>
3153       <param name="file">File to be read.</param>
3154       <param name="encoding">The encoding to use for the file contents. Default is ASCII.</param>
3155       <exception cref="T:System.ArgumentException">The file name ends with a backslash (\).</exception>
3156       <exception cref="T:System.IO.FileNotFoundException">The specified file cannot be found.</exception>
3157       <exception cref="T:System.Security.SecurityException">The user lacks necessary permissions to read from the file.</exception>
3158       <returns>
3159         <see cref="T:System.IO.StreamReader" /> object to read from the file.</returns>
3160     </member>
3161     <member name="M:Microsoft.VisualBasic.FileIO.FileSystem.OpenTextFileWriter(System.String,System.Boolean)">
3162       <summary>Opens a <see cref="T:System.IO.StreamWriter" /> object to write to the specified file.</summary>
3163       <param name="file">File to be written to.</param>
3164       <param name="append">
3165         <see langword="True" /> to append to the contents of the file; <see langword="False" /> to overwrite the contents of the file. Default is <see langword="False" />.</param>
3166       <exception cref="T:System.ArgumentNullException">
3167         <paramref name="file" /> is <see langword="Nothing" /> or an empty string.</exception>
3168       <exception cref="T:System.ArgumentException">The file name ends with a trailing slash.</exception>
3169       <returns>
3170         <see cref="T:System.IO.StreamWriter" /> object to write to the specified file.</returns>
3171     </member>
3172     <member name="M:Microsoft.VisualBasic.FileIO.FileSystem.OpenTextFileWriter(System.String,System.Boolean,System.Text.Encoding)">
3173       <summary>Opens a <see cref="T:System.IO.StreamWriter" /> to write to the specified file.</summary>
3174       <param name="file">File to be written to.</param>
3175       <param name="append">
3176         <see langword="True" /> to append to the contents in the file; <see langword="False" /> to overwrite the contents of the file. Default is <see langword="False" />.</param>
3177       <param name="encoding">Encoding to be used in writing to the file. Default is ASCII.</param>
3178       <exception cref="T:System.ArgumentNullException">
3179         <paramref name="file" /> is <see langword="Nothing" /> or an empty string.</exception>
3180       <exception cref="T:System.ArgumentException">The file name ends with a trailing slash.</exception>
3181       <returns>
3182         <see cref="T:System.IO.StreamWriter" /> object to write to the specified file.</returns>
3183     </member>
3184     <member name="M:Microsoft.VisualBasic.FileIO.FileSystem.ReadAllBytes(System.String)">
3185       <summary>Returns the contents of a file as a byte array.</summary>
3186       <param name="file">File to be read.</param>
3187       <exception cref="T:System.ArgumentException">The path is not valid for one of the following reasons: it is a zero-length string; it contains only white space; it contains invalid characters; or it is a device path (starts with \\.\); it ends with a trailing slash.</exception>
3188       <exception cref="T:System.ArgumentNullException">
3189         <paramref name="file" /> is <see langword="Nothing" />.</exception>
3190       <exception cref="T:System.IO.FileNotFoundException">The file does not exist.</exception>
3191       <exception cref="T:System.IO.IOException">The file is in use by another process, or an I/O error occurs.</exception>
3192       <exception cref="T:System.IO.PathTooLongException">The path exceeds the system-defined maximum length.</exception>
3193       <exception cref="T:System.NotSupportedException">A file or directory name in the path contains a colon (:) or is in an invalid format.</exception>
3194       <exception cref="T:System.OutOfMemoryException">There is not enough memory to write the string to buffer.</exception>
3195       <exception cref="T:System.Security.SecurityException">The user lacks necessary permissions to view the path.</exception>
3196       <returns>
3197         <see langword="Byte" /> array containing the contents of the file.</returns>
3198     </member>
3199     <member name="M:Microsoft.VisualBasic.FileIO.FileSystem.ReadAllText(System.String)">
3200       <summary>Returns the contents of a text file as a <see langword="String" />.</summary>
3201       <param name="file">Name and path of the file to read.</param>
3202       <exception cref="T:System.ArgumentException">The path is not valid for one of the following reasons: it is a zero-length string; it contains only white space; it contains invalid characters; or it is a device path (starts with \\.\); it ends with a trailing slash.</exception>
3203       <exception cref="T:System.ArgumentNullException">
3204         <paramref name="file" /> is <see langword="Nothing" />.</exception>
3205       <exception cref="T:System.IO.FileNotFoundException">The file does not exist.</exception>
3206       <exception cref="T:System.IO.IOException">The file is in use by another process, or an I/O error occurs.</exception>
3207       <exception cref="T:System.IO.PathTooLongException">The path exceeds the system-defined maximum length.</exception>
3208       <exception cref="T:System.NotSupportedException">A file or directory name in the path contains a colon (:) or is in an invalid format.</exception>
3209       <exception cref="T:System.OutOfMemoryException">There is not enough memory to write the string to buffer.</exception>
3210       <exception cref="T:System.Security.SecurityException">The user lacks necessary permissions to view the path.</exception>
3211       <returns>
3212         <see langword="String" /> containing the contents of the file.</returns>
3213     </member>
3214     <member name="M:Microsoft.VisualBasic.FileIO.FileSystem.ReadAllText(System.String,System.Text.Encoding)">
3215       <summary>Returns the contents of a text file as a <see langword="String" />.</summary>
3216       <param name="file">Name and path of the file to read.</param>
3217       <param name="encoding">Character encoding to use in reading the file. Default is UTF-8.</param>
3218       <exception cref="T:System.ArgumentException">The path is not valid for one of the following reasons: it is a zero-length string; it contains only white space; it contains invalid characters; or it is a device path (starts with \\.\); it ends with a trailing slash.</exception>
3219       <exception cref="T:System.ArgumentNullException">
3220         <paramref name="file" /> is <see langword="Nothing" />.</exception>
3221       <exception cref="T:System.IO.FileNotFoundException">The file does not exist.</exception>
3222       <exception cref="T:System.IO.IOException">The file is in use by another process, or an I/O error occurs.</exception>
3223       <exception cref="T:System.IO.PathTooLongException">The path exceeds the system-defined maximum length.</exception>
3224       <exception cref="T:System.NotSupportedException">A file or directory name in the path contains a colon (:) or is in an invalid format.</exception>
3225       <exception cref="T:System.OutOfMemoryException">There is not enough memory to write the string to buffer.</exception>
3226       <exception cref="T:System.Security.SecurityException">The user lacks necessary permissions to view the path.</exception>
3227       <returns>
3228         <see langword="String" /> containing the contents of the file.</returns>
3229     </member>
3230     <member name="M:Microsoft.VisualBasic.FileIO.FileSystem.RenameDirectory(System.String,System.String)">
3231       <summary>Renames a directory.</summary>
3232       <param name="directory">Path and name of directory to be renamed.</param>
3233       <param name="newName">New name for directory.</param>
3234       <exception cref="T:System.ArgumentException">
3235         <paramref name="newName" /> contains path information.</exception>
3236       <exception cref="T:System.ArgumentNullException">
3237         <paramref name="directory" /> is <see langword="Nothing" />.  
3238   
3239  -or-  
3240   
3241  <paramref name="newName" /> is <see langword="Nothing" /> or an empty string.</exception>
3242       <exception cref="T:System.IO.DirectoryNotFoundException">The directory does not exist.</exception>
3243       <exception cref="T:System.IO.IOException">There is an existing file or directory with the name specified in <paramref name="newName" />.</exception>
3244       <exception cref="T:System.IO.PathTooLongException">The path exceeds the system-defined maximum length.</exception>
3245       <exception cref="T:System.NotSupportedException">A file or directory name in the path contains a colon (:) or is in an invalid format.</exception>
3246       <exception cref="T:System.Security.SecurityException">The user lacks necessary permissions to view the path.</exception>
3247       <exception cref="T:System.UnauthorizedAccessException">The user does not have required permission.</exception>
3248     </member>
3249     <member name="M:Microsoft.VisualBasic.FileIO.FileSystem.RenameFile(System.String,System.String)">
3250       <summary>Renames a file.</summary>
3251       <param name="file">File to be renamed.</param>
3252       <param name="newName">New name of file.</param>
3253       <exception cref="T:System.ArgumentException">
3254         <paramref name="newName" /> contains path information or ends with a backslash (\).</exception>
3255       <exception cref="T:System.ArgumentNullException">
3256         <paramref name="file" /> is <see langword="Nothing" />.  
3257   
3258  -or-  
3259   
3260  <paramref name="newName" /> is <see langword="Nothing" /> or an empty string.</exception>
3261       <exception cref="T:System.IO.FileNotFoundException">The directory does not exist.</exception>
3262       <exception cref="T:System.IO.IOException">There is an existing file or directory with the name specified in <paramref name="newName" />.</exception>
3263       <exception cref="T:System.IO.PathTooLongException">The path exceeds the system-defined maximum length.</exception>
3264       <exception cref="T:System.NotSupportedException">A file or directory name in the path contains a colon (:) or is in an invalid format.</exception>
3265       <exception cref="T:System.Security.SecurityException">The user lacks necessary permissions to view the path.</exception>
3266       <exception cref="T:System.UnauthorizedAccessException">The user does not have required permission.</exception>
3267     </member>
3268     <member name="M:Microsoft.VisualBasic.FileIO.FileSystem.WriteAllBytes(System.String,System.Byte[],System.Boolean)">
3269       <summary>Writes data to a binary file.</summary>
3270       <param name="file">Path and name of the file to be written to.</param>
3271       <param name="data">Data to be written to the file.</param>
3272       <param name="append">
3273         <see langword="True" /> to append to the file contents; <see langword="False" /> to overwrite the file contents. Default is <see langword="False" />.</param>
3274       <exception cref="T:System.ArgumentException">The path is not valid for one of the following reasons: it is a zero-length string; it contains only white space; it contains invalid characters; or it is a device path (starts with \\.\); it ends with a trailing slash.</exception>
3275       <exception cref="T:System.ArgumentNullException">
3276         <paramref name="file" /> is <see langword="Nothing" />.</exception>
3277       <exception cref="T:System.IO.FileNotFoundException">The file does not exist.</exception>
3278       <exception cref="T:System.IO.IOException">The file is in use by another process, or an I/O error occurs.</exception>
3279       <exception cref="T:System.IO.PathTooLongException">The path exceeds the system-defined maximum length.</exception>
3280       <exception cref="T:System.NotSupportedException">A file or directory name in the path contains a colon (:) or is in an invalid format.</exception>
3281       <exception cref="T:System.OutOfMemoryException">There is not enough memory to write the string to buffer.</exception>
3282       <exception cref="T:System.Security.SecurityException">The user lacks necessary permissions to view the path.</exception>
3283     </member>
3284     <member name="M:Microsoft.VisualBasic.FileIO.FileSystem.WriteAllText(System.String,System.String,System.Boolean)">
3285       <summary>Writes text to a file.</summary>
3286       <param name="file">File to be written to.</param>
3287       <param name="text">Text to be written to file.</param>
3288       <param name="append">
3289         <see langword="True" /> to append to the contents of the file; <see langword="False" /> to overwrite the contents of the file.</param>
3290       <exception cref="T:System.ArgumentException">The path is not valid for one of the following reasons: it is a zero-length string; it contains only white space; it contains invalid characters; or it is a device path (starts with \\.\); it ends with a trailing slash.</exception>
3291       <exception cref="T:System.ArgumentNullException">
3292         <paramref name="file" /> is <see langword="Nothing" />.</exception>
3293       <exception cref="T:System.IO.FileNotFoundException">The file does not exist.</exception>
3294       <exception cref="T:System.IO.IOException">The file is in use by another process, or an I/O error occurs.</exception>
3295       <exception cref="T:System.IO.PathTooLongException">The path exceeds the system-defined maximum length.</exception>
3296       <exception cref="T:System.NotSupportedException">A file or directory name in the path contains a colon (:) or is in an invalid format.</exception>
3297       <exception cref="T:System.OutOfMemoryException">There is not enough memory to write the string to buffer.</exception>
3298       <exception cref="T:System.Security.SecurityException">The user lacks necessary permissions to view the path.</exception>
3299     </member>
3300     <member name="M:Microsoft.VisualBasic.FileIO.FileSystem.WriteAllText(System.String,System.String,System.Boolean,System.Text.Encoding)">
3301       <summary>Writes text to a file.</summary>
3302       <param name="file">File to be written to.</param>
3303       <param name="text">Text to be written to file.</param>
3304       <param name="append">
3305         <see langword="True" /> to append to the contents of the file; <see langword="False" /> to overwrite the contents of the file.</param>
3306       <param name="encoding">What encoding to use when writing to file.</param>
3307       <exception cref="T:System.ArgumentException">The path is not valid for one of the following reasons: it is a zero-length string; it contains only white space; it contains invalid characters; or it is a device path (starts with \\.\); it ends with a trailing slash.</exception>
3308       <exception cref="T:System.ArgumentNullException">
3309         <paramref name="file" /> is <see langword="Nothing" />.</exception>
3310       <exception cref="T:System.IO.FileNotFoundException">The file does not exist.</exception>
3311       <exception cref="T:System.IO.IOException">The file is in use by another process, or an I/O error occurs.</exception>
3312       <exception cref="T:System.IO.PathTooLongException">The path exceeds the system-defined maximum length.</exception>
3313       <exception cref="T:System.NotSupportedException">A file or directory name in the path contains a colon (:) or is in an invalid format.</exception>
3314       <exception cref="T:System.OutOfMemoryException">There is not enough memory to write the string to buffer.</exception>
3315       <exception cref="T:System.Security.SecurityException">The user lacks necessary permissions to view the path.</exception>
3316     </member>
3317     <member name="P:Microsoft.VisualBasic.FileIO.FileSystem.CurrentDirectory">
3318       <summary>Gets or sets the current directory.</summary>
3319       <exception cref="T:System.IO.DirectoryNotFoundException">The path is not valid.</exception>
3320       <exception cref="T:System.UnauthorizedAccessException">The user lacks necessary permissions.</exception>
3321       <returns>The current directory for file I/O operations.</returns>
3322     </member>
3323     <member name="P:Microsoft.VisualBasic.FileIO.FileSystem.Drives">
3324       <summary>Returns a read-only collection of all available drive names.</summary>
3325       <returns>A read-only collection of all available drives as <see cref="T:System.IO.DriveInfo" /> objects.</returns>
3326     </member>
3327     <member name="T:Microsoft.VisualBasic.FileIO.MalformedLineException">
3328       <summary>The exception that is thrown when the <see cref="M:Microsoft.VisualBasic.FileIO.TextFieldParser.ReadFields" /> method cannot parse a row using the specified format.</summary>
3329     </member>
3330     <member name="M:Microsoft.VisualBasic.FileIO.MalformedLineException.#ctor">
3331       <summary>Initializes a new instance of the <see cref="T:Microsoft.VisualBasic.FileIO.MalformedLineException" /> class.</summary>
3332     </member>
3333     <member name="M:Microsoft.VisualBasic.FileIO.MalformedLineException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
3334       <summary>Initializes a new instance of the <see cref="T:Microsoft.VisualBasic.FileIO.MalformedLineException" /> class with serialized data.</summary>
3335       <param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo" /> object that holds the serialized object data about the exception being thrown.</param>
3336       <param name="context">The <see cref="T:System.Runtime.Serialization.StreamingContext" /> structure that contains contextual information about the source or destination.</param>
3337     </member>
3338     <member name="M:Microsoft.VisualBasic.FileIO.MalformedLineException.#ctor(System.String)">
3339       <summary>Initializes a new instance of the <see cref="T:Microsoft.VisualBasic.FileIO.MalformedLineException" /> class with a specified error message.</summary>
3340       <param name="message">A message that describes the error.</param>
3341     </member>
3342     <member name="M:Microsoft.VisualBasic.FileIO.MalformedLineException.#ctor(System.String,System.Exception)">
3343       <summary>Initializes a new instance of the <see cref="T:Microsoft.VisualBasic.FileIO.MalformedLineException" /> class with a specified error message and a reference to the inner exception that is the cause of this exception.</summary>
3344       <param name="message">A <see cref="T:System.String" /> describing the error.</param>
3345       <param name="innerException">The <see cref="T:System.Exception" /> object that is the cause of the current exception. If the <see cref="P:System.Exception.InnerException" /> parameter is not a null reference (<see langword="Nothing" /> in Visual Basic), the current exception is raised in a catch block that handles the inner exception.</param>
3346     </member>
3347     <member name="M:Microsoft.VisualBasic.FileIO.MalformedLineException.#ctor(System.String,System.Int64)">
3348       <summary>Initializes a new instance of the <see cref="T:Microsoft.VisualBasic.FileIO.MalformedLineException" /> class with a specified error message and a line number.</summary>
3349       <param name="message">The message for the exception.</param>
3350       <param name="lineNumber">The line number of the malformed line.</param>
3351     </member>
3352     <member name="M:Microsoft.VisualBasic.FileIO.MalformedLineException.#ctor(System.String,System.Int64,System.Exception)">
3353       <summary>Initializes a new instance of the <see cref="T:Microsoft.VisualBasic.FileIO.MalformedLineException" /> class with a specified error message, a line number, and a reference to the inner exception that is the cause of this exception.</summary>
3354       <param name="message">The message for the exception.</param>
3355       <param name="lineNumber">The line number of the malformed line.</param>
3356       <param name="innerException">The <see cref="T:System.Exception" /> that is the cause of the current exception. If the <see cref="P:System.Exception.InnerException" /> parameter is not a null reference (<see langword="Nothing" /> in Visual Basic), the current exception is raised in a catch block that handles the inner exception.</param>
3357     </member>
3358     <member name="M:Microsoft.VisualBasic.FileIO.MalformedLineException.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
3359       <summary>Sets the <see cref="T:System.Runtime.Serialization.SerializationInfo" /> object with information about the exception.</summary>
3360       <param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo" /> object that holds the serialized object data about the exception being thrown.</param>
3361       <param name="context">The <see cref="T:System.Runtime.Serialization.StreamingContext" /> structure that contains contextual information about the source or destination.</param>
3362     </member>
3363     <member name="M:Microsoft.VisualBasic.FileIO.MalformedLineException.ToString">
3364       <summary>Creates and returns a string representation of the current exception.</summary>
3365       <returns>A string representation of the current exception.</returns>
3366     </member>
3367     <member name="P:Microsoft.VisualBasic.FileIO.MalformedLineException.LineNumber">
3368       <summary>Gets the line number of the malformed line.</summary>
3369       <returns>The line number of the malformed line.</returns>
3370     </member>
3371     <member name="T:Microsoft.VisualBasic.FileIO.RecycleOption">
3372       <summary>Specifies whether a file should be deleted permanently or placed in the Recycle Bin.</summary>
3373     </member>
3374     <member name="F:Microsoft.VisualBasic.FileIO.RecycleOption.DeletePermanently">
3375       <summary>Delete the file or directory permanently. Default.</summary>
3376     </member>
3377     <member name="F:Microsoft.VisualBasic.FileIO.RecycleOption.SendToRecycleBin">
3378       <summary>Send the file or directory to the Recycle Bin.</summary>
3379     </member>
3380     <member name="T:Microsoft.VisualBasic.FileIO.SearchOption">
3381       <summary>Specifies whether to search all or only top-level directories.</summary>
3382     </member>
3383     <member name="F:Microsoft.VisualBasic.FileIO.SearchOption.SearchAllSubDirectories">
3384       <summary>Search the specified directory and all subdirectories within it. Default.</summary>
3385     </member>
3386     <member name="F:Microsoft.VisualBasic.FileIO.SearchOption.SearchTopLevelOnly">
3387       <summary>Search only the specified directory and exclude subdirectories.</summary>
3388     </member>
3389     <member name="T:Microsoft.VisualBasic.FileIO.SpecialDirectories">
3390       <summary>Provides properties for accessing commonly referenced directories.</summary>
3391     </member>
3392     <member name="M:Microsoft.VisualBasic.FileIO.SpecialDirectories.#ctor">
3393       <summary>Returns an instance of the <see cref="P:Microsoft.VisualBasic.MyServices.FileSystemProxy.SpecialDirectories" /> class.</summary>
3394     </member>
3395     <member name="P:Microsoft.VisualBasic.FileIO.SpecialDirectories.AllUsersApplicationData">
3396       <summary>Gets a path name pointing to the Application Data directory for the all users.</summary>
3397       <exception cref="T:System.Security.Permissions.EnvironmentPermission">Controls access to system and user environment variables. Associated enumeration: <see cref="F:System.Security.Permissions.PermissionState.Unrestricted" />.</exception>
3398       <exception cref="T:System.IO.DirectoryNotFoundException">The path is empty, usually because the operating system does not support the directory.</exception>
3399       <returns>The path to the Application Data directory for the all users.</returns>
3400     </member>
3401     <member name="P:Microsoft.VisualBasic.FileIO.SpecialDirectories.CurrentUserApplicationData">
3402       <summary>Gets a path name pointing to the Application Data directory for the current user.</summary>
3403       <exception cref="T:System.IO.DirectoryNotFoundException">The path is empty, usually because the operating system does not support the directory.</exception>
3404       <returns>The path to the Application Data directory for the current user.</returns>
3405     </member>
3406     <member name="P:Microsoft.VisualBasic.FileIO.SpecialDirectories.Desktop">
3407       <summary>Gets a path name pointing to the Desktop directory.</summary>
3408       <exception cref="T:System.IO.DirectoryNotFoundException">The path is empty, usually because the operating system does not support the directory.</exception>
3409       <returns>The path to the Desktop directory.</returns>
3410     </member>
3411     <member name="P:Microsoft.VisualBasic.FileIO.SpecialDirectories.MyDocuments">
3412       <summary>Gets a path name pointing to the My Documents directory.</summary>
3413       <exception cref="T:System.IO.DirectoryNotFoundException">The path is empty, usually because the operating system does not support the directory.</exception>
3414       <returns>The path to the My Documents directory.</returns>
3415     </member>
3416     <member name="P:Microsoft.VisualBasic.FileIO.SpecialDirectories.MyMusic">
3417       <summary>Gets a path name pointing to the My Music directory.</summary>
3418       <exception cref="T:System.IO.DirectoryNotFoundException">The path is empty, usually because the operating system does not support the directory.</exception>
3419       <returns>The path to the My Music directory.</returns>
3420     </member>
3421     <member name="P:Microsoft.VisualBasic.FileIO.SpecialDirectories.MyPictures">
3422       <summary>Gets a path name pointing to the My Pictures directory.</summary>
3423       <exception cref="T:System.IO.DirectoryNotFoundException">The path is empty, usually because the operating system does not support the directory.</exception>
3424       <returns>The path to the My Pictures directory.</returns>
3425     </member>
3426     <member name="P:Microsoft.VisualBasic.FileIO.SpecialDirectories.ProgramFiles">
3427       <summary>Gets a path pointing to the Program Files directory.</summary>
3428       <exception cref="T:System.IO.DirectoryNotFoundException">The path is empty, usually because the operating system does not support the directory.</exception>
3429       <returns>The path to the Program Files directory.</returns>
3430     </member>
3431     <member name="P:Microsoft.VisualBasic.FileIO.SpecialDirectories.Programs">
3432       <summary>Gets a path name pointing to the Programs directory.</summary>
3433       <exception cref="T:System.IO.DirectoryNotFoundException">The path is empty, usually because the operating system does not support the directory.</exception>
3434       <returns>The path to the Programs directory.</returns>
3435     </member>
3436     <member name="P:Microsoft.VisualBasic.FileIO.SpecialDirectories.Temp">
3437       <summary>Gets a path name pointing to the Temp directory.</summary>
3438       <exception cref="T:System.IO.DirectoryNotFoundException">The path is empty, usually because the operating system does not support the directory.</exception>
3439       <returns>The path to the Temp directory.</returns>
3440     </member>
3441     <member name="T:Microsoft.VisualBasic.FileIO.TextFieldParser">
3442       <summary>Provides methods and properties for parsing structured text files.</summary>
3443     </member>
3444     <member name="M:Microsoft.VisualBasic.FileIO.TextFieldParser.#ctor(System.IO.Stream)">
3445       <summary>Initializes a new instance of the <see langword="TextFieldParser" /> class.</summary>
3446       <param name="stream">
3447         <see cref="T:System.IO.Stream" />. The stream to be parsed.</param>
3448       <exception cref="T:System.ArgumentNullException">
3449         <paramref name="stream" /> is <see langword="Nothing" />.</exception>
3450       <exception cref="T:System.ArgumentException">
3451         <paramref name="stream" /> cannot be read from.</exception>
3452     </member>
3453     <member name="M:Microsoft.VisualBasic.FileIO.TextFieldParser.#ctor(System.IO.Stream,System.Text.Encoding)">
3454       <summary>Initializes a new instance of the <see langword="TextFieldParser" /> class.</summary>
3455       <param name="stream">
3456         <see cref="T:System.IO.Stream" />. The stream to be parsed.</param>
3457       <param name="defaultEncoding">
3458         <see cref="T:System.Text.Encoding" />. The character encoding to use if encoding is not determined from file. Default is <see cref="P:System.Text.Encoding.UTF8" />.</param>
3459       <exception cref="T:System.ArgumentNullException">
3460         <paramref name="stream" /> or <paramref name="defaultEncoding" /> is <see langword="Nothing" />.</exception>
3461       <exception cref="T:System.ArgumentException">
3462         <paramref name="stream" /> cannot be read from.</exception>
3463     </member>
3464     <member name="M:Microsoft.VisualBasic.FileIO.TextFieldParser.#ctor(System.IO.Stream,System.Text.Encoding,System.Boolean)">
3465       <summary>Initializes a new instance of the <see langword="TextFieldParser" /> class.</summary>
3466       <param name="stream">
3467         <see cref="T:System.IO.Stream" />. The stream to be parsed.</param>
3468       <param name="defaultEncoding">
3469         <see cref="T:System.Text.Encoding" />. The character encoding to use if encoding is not determined from file. Default is <see cref="P:System.Text.Encoding.UTF8" />.</param>
3470       <param name="detectEncoding">
3471         <see langword="Boolean" />. Indicates whether to look for byte order marks at the beginning of the file. Default is <see langword="True" />.</param>
3472       <exception cref="T:System.ArgumentNullException">
3473         <paramref name="stream" /> or <paramref name="defaultEncoding" /> is <see langword="Nothing" />.</exception>
3474       <exception cref="T:System.ArgumentException">
3475         <paramref name="stream" /> cannot be read from.</exception>
3476     </member>
3477     <member name="M:Microsoft.VisualBasic.FileIO.TextFieldParser.#ctor(System.IO.Stream,System.Text.Encoding,System.Boolean,System.Boolean)">
3478       <summary>Initializes a new instance of the <see langword="TextFieldParser" /> class.</summary>
3479       <param name="stream">
3480         <see cref="T:System.IO.Stream" />. The stream to be parsed.</param>
3481       <param name="defaultEncoding">
3482         <see cref="T:System.Text.Encoding" />. The character encoding to use if encoding is not determined from file. Default is <see cref="P:System.Text.Encoding.UTF8" />.</param>
3483       <param name="detectEncoding">
3484         <see langword="Boolean" />. Indicates whether to look for byte order marks at the beginning of the file. Default is <see langword="True" />.</param>
3485       <param name="leaveOpen">
3486         <see langword="Boolean" />. Indicates whether to leave <paramref name="stream" /> open when the <see langword="TextFieldParser" /> object is closed. Default is <see langword="False" />.</param>
3487       <exception cref="T:System.ArgumentNullException">
3488         <paramref name="stream" /> or <paramref name="defaultEncoding" /> is <see langword="Nothing" />.</exception>
3489       <exception cref="T:System.ArgumentException">
3490         <paramref name="stream" /> cannot be read from.</exception>
3491     </member>
3492     <member name="M:Microsoft.VisualBasic.FileIO.TextFieldParser.#ctor(System.IO.TextReader)">
3493       <summary>Initializes a new instance of the <see langword="TextFieldParser" /> class.</summary>
3494       <param name="reader">
3495         <see cref="T:System.IO.TextReader" />. The <see cref="T:System.IO.TextReader" /> stream to be parsed.</param>
3496       <exception cref="T:System.ArgumentNullException">
3497         <paramref name="reader" /> is <see langword="Nothing" />.</exception>
3498     </member>
3499     <member name="M:Microsoft.VisualBasic.FileIO.TextFieldParser.#ctor(System.String)">
3500       <summary>Initializes a new instance of the <see langword="TextFieldParser" /> class.</summary>
3501       <param name="path">
3502         <see langword="String" />. The complete path of the file to be parsed.</param>
3503       <exception cref="T:System.ArgumentNullException">
3504         <paramref name="path" /> is an empty string.</exception>
3505     </member>
3506     <member name="M:Microsoft.VisualBasic.FileIO.TextFieldParser.#ctor(System.String,System.Text.Encoding)">
3507       <summary>Initializes a new instance of the <see langword="TextFieldParser" /> class.</summary>
3508       <param name="path">
3509         <see langword="String" />. The complete path of the file to be parsed.</param>
3510       <param name="defaultEncoding">
3511         <see cref="T:System.Text.Encoding" />. The character encoding to use if encoding is not determined from file. Default is <see cref="P:System.Text.Encoding.UTF8" />.</param>
3512       <exception cref="T:System.ArgumentNullException">
3513         <paramref name="path" /> is an empty string or <paramref name="defaultEncoding" /> is <see langword="Nothing" />.</exception>
3514     </member>
3515     <member name="M:Microsoft.VisualBasic.FileIO.TextFieldParser.#ctor(System.String,System.Text.Encoding,System.Boolean)">
3516       <summary>Initializes a new instance of the <see langword="TextFieldParser" /> class.</summary>
3517       <param name="path">
3518         <see langword="String" />. The complete path of the file to be parsed.</param>
3519       <param name="defaultEncoding">
3520         <see cref="T:System.Text.Encoding" />. The character encoding to use if encoding is not determined from file. Default is <see cref="P:System.Text.Encoding.UTF8" />.</param>
3521       <param name="detectEncoding">
3522         <see langword="Boolean" />. Indicates whether to look for byte order marks at the beginning of the file. Default is <see langword="True" />.</param>
3523       <exception cref="T:System.ArgumentNullException">
3524         <paramref name="path" /> is an empty string or <paramref name="defaultEncoding" /> is <see langword="Nothing" />.</exception>
3525     </member>
3526     <member name="M:Microsoft.VisualBasic.FileIO.TextFieldParser.Close">
3527       <summary>Closes the current <see langword="TextFieldParser" /> object.</summary>
3528     </member>
3529     <member name="M:Microsoft.VisualBasic.FileIO.TextFieldParser.Dispose(System.Boolean)">
3530       <summary>Releases resources used by the <see cref="T:Microsoft.VisualBasic.FileIO.TextFieldParser" /> object.</summary>
3531       <param name="disposing">Boolean. <see langword="True" /> releases both managed and unmanaged resources; <see langword="False" /> releases only unmanaged resources.</param>
3532     </member>
3533     <member name="M:Microsoft.VisualBasic.FileIO.TextFieldParser.Finalize">
3534       <summary>Allows the <see cref="T:Microsoft.VisualBasic.FileIO.TextFieldParser" /> object to attempt to free resources and perform other cleanup operations before it is reclaimed by garbage collection.</summary>
3535     </member>
3536     <member name="M:Microsoft.VisualBasic.FileIO.TextFieldParser.PeekChars(System.Int32)">
3537       <summary>Reads the specified number of characters without advancing the cursor.</summary>
3538       <param name="numberOfChars">The number of characters to read. Required.</param>
3539       <exception cref="T:System.ArgumentException">
3540         <paramref name="numberOfChars" /> is less than 0.</exception>
3541       <returns>A string that contains the specified number of characters read.</returns>
3542     </member>
3543     <member name="M:Microsoft.VisualBasic.FileIO.TextFieldParser.ReadFields">
3544       <summary>Reads all fields on the current line, returns them as an array of strings, and advances the cursor to the next line containing data.</summary>
3545       <exception cref="T:Microsoft.VisualBasic.FileIO.MalformedLineException">A field cannot be parsed by using the specified format.</exception>
3546       <returns>An array of strings that contains field values for the current line.</returns>
3547     </member>
3548     <member name="M:Microsoft.VisualBasic.FileIO.TextFieldParser.ReadLine">
3549       <summary>Returns the current line as a string and advances the cursor to the next line.</summary>
3550       <returns>The current line from the file or stream.</returns>
3551     </member>
3552     <member name="M:Microsoft.VisualBasic.FileIO.TextFieldParser.ReadToEnd">
3553       <summary>Reads the remainder of the text file and returns it as a string.</summary>
3554       <returns>The remaining text from the file or stream.</returns>
3555     </member>
3556     <member name="M:Microsoft.VisualBasic.FileIO.TextFieldParser.SetDelimiters(System.String[])">
3557       <summary>Sets the delimiters for the reader to the specified values, and sets the field type to <see langword="Delimited" />.</summary>
3558       <param name="delimiters">Array of type <see langword="String" />.</param>
3559       <exception cref="T:System.ArgumentException">A delimiter is zero-length.</exception>
3560     </member>
3561     <member name="M:Microsoft.VisualBasic.FileIO.TextFieldParser.SetFieldWidths(System.Int32[])">
3562       <summary>Sets the delimiters for the reader to the specified values.</summary>
3563       <param name="fieldWidths">Array of <see langword="Integer" />.</param>
3564     </member>
3565     <member name="M:Microsoft.VisualBasic.FileIO.TextFieldParser.System#IDisposable#Dispose">
3566       <summary>Releases resources used by the <see cref="T:Microsoft.VisualBasic.FileIO.TextFieldParser" /> object.</summary>
3567     </member>
3568     <member name="P:Microsoft.VisualBasic.FileIO.TextFieldParser.CommentTokens">
3569       <summary>Defines comment tokens. A comment token is a string that, when placed at the beginning of a line, indicates that the line is a comment and should be ignored by the parser.</summary>
3570       <exception cref="T:System.ArgumentException">A comment token includes white space.</exception>
3571       <returns>A string array that contains all of the comment tokens for the <see cref="T:Microsoft.VisualBasic.FileIO.TextFieldParser" /> object.</returns>
3572     </member>
3573     <member name="P:Microsoft.VisualBasic.FileIO.TextFieldParser.Delimiters">
3574       <summary>Defines the delimiters for a text file.</summary>
3575       <exception cref="T:System.ArgumentException">A delimiter value is set to a newline character, an empty string, or <see langword="Nothing" />.</exception>
3576       <returns>A string array that contains all of the field delimiters for the <see cref="T:Microsoft.VisualBasic.FileIO.TextFieldParser" /> object.</returns>
3577     </member>
3578     <member name="P:Microsoft.VisualBasic.FileIO.TextFieldParser.EndOfData">
3579       <summary>Returns <see langword="True" /> if there are no non-blank, non-comment lines between the current cursor position and the end of the file.</summary>
3580       <returns>
3581         <see langword="True" /> if there is no more data to read; otherwise, <see langword="False" />.</returns>
3582     </member>
3583     <member name="P:Microsoft.VisualBasic.FileIO.TextFieldParser.ErrorLine">
3584       <summary>Returns the line that caused the most recent <see cref="T:Microsoft.VisualBasic.FileIO.MalformedLineException" /> exception.</summary>
3585       <returns>The line that caused the most recent <see cref="T:Microsoft.VisualBasic.FileIO.MalformedLineException" /> exception.</returns>
3586     </member>
3587     <member name="P:Microsoft.VisualBasic.FileIO.TextFieldParser.ErrorLineNumber">
3588       <summary>Returns the number of the line that caused the most recent <see cref="T:Microsoft.VisualBasic.FileIO.MalformedLineException" /> exception.</summary>
3589       <returns>The number of the line that caused the most recent <see cref="T:Microsoft.VisualBasic.FileIO.MalformedLineException" /> exception.</returns>
3590     </member>
3591     <member name="P:Microsoft.VisualBasic.FileIO.TextFieldParser.FieldWidths">
3592       <summary>Denotes the width of each column in the text file being parsed.</summary>
3593       <exception cref="T:System.ArgumentException">A width value in any location other than the last entry of the array is less than or equal to zero.</exception>
3594       <returns>An integer array that contains the width of each column in the text file that is being parsed.</returns>
3595     </member>
3596     <member name="P:Microsoft.VisualBasic.FileIO.TextFieldParser.HasFieldsEnclosedInQuotes">
3597       <summary>Denotes whether fields are enclosed in quotation marks when a delimited file is being parsed.</summary>
3598       <returns>
3599         <see langword="True" /> if fields are enclosed in quotation marks; otherwise, <see langword="False" />.</returns>
3600     </member>
3601     <member name="P:Microsoft.VisualBasic.FileIO.TextFieldParser.LineNumber">
3602       <summary>Returns the current line number, or returns -1 if no more characters are available in the stream.</summary>
3603       <returns>The current line number.</returns>
3604     </member>
3605     <member name="P:Microsoft.VisualBasic.FileIO.TextFieldParser.TextFieldType">
3606       <summary>Indicates whether the file to be parsed is delimited or fixed-width.</summary>
3607       <returns>A <see cref="P:Microsoft.VisualBasic.FileIO.TextFieldParser.TextFieldType" /> value that indicates whether the file to be parsed is delimited or fixed-width.</returns>
3608     </member>
3609     <member name="P:Microsoft.VisualBasic.FileIO.TextFieldParser.TrimWhiteSpace">
3610       <summary>Indicates whether leading and trailing white space should be trimmed from field values.</summary>
3611       <returns>
3612         <see langword="True" /> if leading and trailing white space should be trimmed from field values; otherwise, <see langword="False" />.</returns>
3613     </member>
3614     <member name="T:Microsoft.VisualBasic.FileIO.UICancelOption">
3615       <summary>Specifies whether an exception is thrown if the user clicks Cancel during an operation.</summary>
3616     </member>
3617     <member name="F:Microsoft.VisualBasic.FileIO.UICancelOption.DoNothing">
3618       <summary>Do nothing when the user clicks Cancel.</summary>
3619     </member>
3620     <member name="F:Microsoft.VisualBasic.FileIO.UICancelOption.ThrowException">
3621       <summary>Throw an exception when the user clicks Cancel.</summary>
3622     </member>
3623     <member name="T:Microsoft.VisualBasic.FileIO.UIOption">
3624       <summary>Specifies which dialog boxes to show when copying, deleting, or moving files or directories.</summary>
3625     </member>
3626     <member name="F:Microsoft.VisualBasic.FileIO.UIOption.AllDialogs">
3627       <summary>Show progress dialog box and any error dialog boxes.</summary>
3628     </member>
3629     <member name="F:Microsoft.VisualBasic.FileIO.UIOption.OnlyErrorDialogs">
3630       <summary>Only show error dialog boxes and hide progress dialog boxes. Default.</summary>
3631     </member>
3632     <member name="T:Microsoft.VisualBasic.FileSystem">
3633       <summary>The <see langword="FileSystem" /> module contains the procedures that are used to perform file, directory or folder, and system operations. The <see langword="My" /> feature gives you better productivity and performance in file I/O operations than using the <see langword="FileSystem" /> module. For more information, see <see cref="T:Microsoft.VisualBasic.FileIO.FileSystem" />.</summary>
3634     </member>
3635     <member name="M:Microsoft.VisualBasic.FileSystem.ChDir(System.String)">
3636       <summary>Changes the current directory or folder. The <see langword="My" /> feature gives you better productivity and performance in file I/O operations than the <see langword="ChDir" /> function. For more information, see <see cref="P:Microsoft.VisualBasic.FileIO.FileSystem.CurrentDirectory" /> .</summary>
3637       <param name="Path">Required. A string expression that identifies which directory or folder becomes the new default directory or folder. <paramref name="Path" /> may include the drive. If no drive is specified, <see langword="ChDir" /> changes the default directory or folder on the current drive.</param>
3638       <exception cref="T:System.ArgumentException">
3639         <paramref name="Path" /> is empty.</exception>
3640       <exception cref="T:System.IO.FileNotFoundException">Invalid drive is specified, or drive is unavailable.</exception>
3641     </member>
3642     <member name="M:Microsoft.VisualBasic.FileSystem.ChDrive(System.Char)">
3643       <summary>Changes the current drive.</summary>
3644       <param name="Drive">Required. String expression that specifies an existing drive. If you supply a zero-length string (""), the current drive does not change. If the <paramref name="Drive" /> argument is a multiple-character string, <see langword="ChDrive" /> uses only the first letter.</param>
3645       <exception cref="T:System.IO.IOException">Invalid drive is specified, or drive is unavailable.</exception>
3646     </member>
3647     <member name="M:Microsoft.VisualBasic.FileSystem.ChDrive(System.String)">
3648       <summary>Changes the current drive.</summary>
3649       <param name="Drive">Required. String expression that specifies an existing drive. If you supply a zero-length string (""), the current drive does not change. If the <paramref name="Drive" /> argument is a multiple-character string, <see langword="ChDrive" /> uses only the first letter.</param>
3650       <exception cref="T:System.IO.IOException">Invalid drive is specified, or drive is unavailable.</exception>
3651     </member>
3652     <member name="M:Microsoft.VisualBasic.FileSystem.CurDir">
3653       <summary>Returns a string representing the current path. The <see cref="T:Microsoft.VisualBasic.FileIO.FileSystem" /> gives you better productivity and performance in file I/O operations than <see langword="CurDir" />. For more information, see <see cref="P:Microsoft.VisualBasic.FileIO.FileSystem.CurrentDirectory" />.</summary>
3654       <returns>A string representing the current path.</returns>
3655     </member>
3656     <member name="M:Microsoft.VisualBasic.FileSystem.CurDir(System.Char)">
3657       <summary>Returns a string representing the current path. The <see cref="T:Microsoft.VisualBasic.FileIO.FileSystem" /> gives you better productivity and performance in file I/O operations than <see langword="CurDir" />. For more information, see <see cref="P:Microsoft.VisualBasic.FileIO.FileSystem.CurrentDirectory" />.</summary>
3658       <param name="Drive">Optional. <see langword="Char" /> expression that specifies an existing drive. If no drive is specified, or if <paramref name="Drive" /> is a zero-length string (""), <see langword="CurDir" /> returns the path for the current drive.</param>
3659       <returns>A string representing the current path.</returns>
3660     </member>
3661     <member name="M:Microsoft.VisualBasic.FileSystem.Dir">
3662       <summary>Returns a string representing the name of a file, directory, or folder that matches a specified pattern or file attribute, or the volume label of a drive. The <see cref="T:Microsoft.VisualBasic.FileIO.FileSystem" /> gives you better productivity and performance in file I/O operations than the <see langword="Dir" /> function. See <see cref="M:Microsoft.VisualBasic.FileIO.FileSystem.GetDirectoryInfo(System.String)" /> for more information.</summary>
3663       <returns>A string representing the name of a file, directory, or folder that matches a specified pattern or file attribute, or the volume label of a drive.</returns>
3664     </member>
3665     <member name="M:Microsoft.VisualBasic.FileSystem.Dir(System.String,Microsoft.VisualBasic.FileAttribute)">
3666       <summary>Returns a string representing the name of a file, directory, or folder that matches a specified pattern or file attribute, or the volume label of a drive. The <see cref="T:Microsoft.VisualBasic.FileIO.FileSystem" /> gives you better productivity and performance in file I/O operations than the <see langword="Dir" /> function. See <see cref="M:Microsoft.VisualBasic.FileIO.FileSystem.GetDirectoryInfo(System.String)" /> for more information.</summary>
3667       <param name="PathName">Optional. A string expression that specifies a file name, directory or folder name, or drive volume label. A zero-length string (<see langword="&quot;&quot;" />) is returned if <paramref name="PathName" /> is not found.</param>
3668       <param name="Attributes">Optional. Enumeration or numeric expression whose value specifies file attributes. If omitted, <see langword="Dir" /> returns files that match <paramref name="Pathname" /> but have no attributes.</param>
3669       <returns>A string representing the name of a file, directory, or folder that matches a specified pattern or file attribute, or the volume label of a drive.</returns>
3670     </member>
3671     <member name="M:Microsoft.VisualBasic.FileSystem.EOF(System.Int32)">
3672       <summary>Returns a Boolean value <see langword="True" /> when the end of a file opened for <see langword="Random" /> or sequential <see langword="Input" /> has been reached.</summary>
3673       <param name="FileNumber">Required. An <see langword="Integer" /> that contains any valid file number.</param>
3674       <exception cref="T:System.IO.IOException">File mode is invalid.</exception>
3675       <returns>A Boolean value <see langword="True" /> when the end of a file opened for <see langword="Random" /> or sequential <see langword="Input" /> has been reached.</returns>
3676     </member>
3677     <member name="M:Microsoft.VisualBasic.FileSystem.FileAttr(System.Int32)">
3678       <summary>Returns an enumeration representing the file mode for files opened using the <see langword="FileOpen" /> function. The <see cref="T:Microsoft.VisualBasic.FileIO.FileSystem" /> gives you better productivity and performance in file I/O operations than the <see langword="FileAttr" /> function. See <see cref="M:Microsoft.VisualBasic.FileIO.FileSystem.GetFileInfo(System.String)" /> for more information.</summary>
3679       <param name="FileNumber">Required. <see langword="Integer" />. Any valid file number.</param>
3680       <returns>One of the following values:  
3681   
3682  <list type="table"><listheader><term>Value</term><description>File access mode</description></listheader><item><term>1</term><description><see langword="OpenMode.Input" /></description></item><item><term>2</term><description><see langword="OpenMode.Output" /></description></item><item><term>4</term><description><see langword="OpenMode.Random" /></description></item><item><term>8</term><description><see langword="OpenMode.Append" /></description></item><item><term>32</term><description><see langword="OpenMode.Binary" /></description></item></list></returns>
3683     </member>
3684     <member name="M:Microsoft.VisualBasic.FileSystem.FileClose(System.Int32[])">
3685       <summary>Concludes input/output (I/O) to a file opened using the <see langword="FileOpen" /> function. <see langword="My" /> gives you better productivity and performance in file I/O operations. See <see cref="T:Microsoft.VisualBasic.FileIO.FileSystem" /> for more information.</summary>
3686       <param name="FileNumbers">Optional. Parameter array of 0 or more channels to be closed.</param>
3687       <exception cref="T:System.IO.IOException">
3688         <paramref name="FileNumber" /> does not exist.</exception>
3689     </member>
3690     <member name="M:Microsoft.VisualBasic.FileSystem.FileCopy(System.String,System.String)">
3691       <summary>Copies a file. The <see cref="T:Microsoft.VisualBasic.FileIO.FileSystem" /> gives you better productivity and performance in file I/O operations than <see langword="FileCopy" />. See <see cref="M:Microsoft.VisualBasic.FileIO.FileSystem.CopyFile(System.String,System.String)" /> for more information.</summary>
3692       <param name="Source">Required. A string expression that specifies the name of the file to be copied. <paramref name="Source" /> may include the directory or folder, and drive, of the source file.</param>
3693       <param name="Destination">Required. A string expression that specifies the destination file name. <paramref name="Destination" /> may include the directory or folder, and drive, of the destination file.</param>
3694       <exception cref="T:System.ArgumentException">
3695         <paramref name="Source" /> or <paramref name="Destination" /> is invalid or not specified.</exception>
3696       <exception cref="T:System.IO.IOException">File is already open.</exception>
3697       <exception cref="T:System.IO.FileNotFoundException">File does not exist.</exception>
3698     </member>
3699     <member name="M:Microsoft.VisualBasic.FileSystem.FileDateTime(System.String)">
3700       <summary>Returns a <see langword="Date" /> value that indicates the date and time a file was written to. The <see langword="My" /> feature gives you better productivity and performance in file I/O operations than <see langword="FileDateTime" />. For more information, see <see cref="M:Microsoft.VisualBasic.FileIO.FileSystem.GetFileInfo(System.String)" />.</summary>
3701       <param name="PathName">Required. A string expression that specifies a file name. <paramref name="PathName" /> may include the directory or folder, and the drive.</param>
3702       <exception cref="T:System.ArgumentException">
3703         <paramref name="PathName" /> is invalid or contains wildcards.</exception>
3704       <exception cref="T:System.IO.FileNotFoundException">Target file does not exist.</exception>
3705       <returns>
3706         <see langword="Date" /> value that indicates the date and time a file was created or last modified.</returns>
3707     </member>
3708     <member name="M:Microsoft.VisualBasic.FileSystem.FileGet(System.Int32,System.Array@,System.Int64,System.Boolean,System.Boolean)">
3709       <summary>Reads data from an open disk file into a variable. The <see langword="My" /> feature gives you better productivity and performance in file I/O operations than <see langword="FileGet" />. For more information, see <see cref="T:Microsoft.VisualBasic.FileIO.FileSystem" />.</summary>
3710       <param name="FileNumber">Required. Any valid file number.</param>
3711       <param name="Value">Required. Valid variable name into which data is read.</param>
3712       <param name="RecordNumber">Optional. Record number (<see langword="Random" /> mode files) or byte number (<see langword="Binary" /> mode files) at which reading starts.</param>
3713       <param name="ArrayIsDynamic">Optional. Applies only when writing an array. Specifies whether the array is to be treated as dynamic and whether an array descriptor describing the size and bounds of the array is necessary.</param>
3714       <param name="StringIsFixedLength">Optional. Applies only when writing a string. Specifies whether to write a two-byte descriptor for the string that describes the length. The default is <see langword="False" />.</param>
3715       <exception cref="T:System.ArgumentException">
3716         <paramref name="RecordNumber" /> &lt; 1 and not equal to -1.</exception>
3717       <exception cref="T:System.IO.IOException">File mode is invalid.</exception>
3718     </member>
3719     <member name="M:Microsoft.VisualBasic.FileSystem.FileGet(System.Int32,System.Boolean@,System.Int64)">
3720       <summary>Reads data from an open disk file into a variable. The <see langword="My" /> feature gives you better productivity and performance in file I/O operations than <see langword="FileGet" />. For more information, see <see cref="T:Microsoft.VisualBasic.FileIO.FileSystem" />.</summary>
3721       <param name="FileNumber">Required. Any valid file number.</param>
3722       <param name="Value">Required. Valid variable name into which data is read.</param>
3723       <param name="RecordNumber">Optional. Record number (<see langword="Random" /> mode files) or byte number (<see langword="Binary" /> mode files) at which reading starts.</param>
3724       <exception cref="T:System.ArgumentException">
3725         <paramref name="RecordNumber" /> &lt; 1 and not equal to -1.</exception>
3726       <exception cref="T:System.IO.IOException">File mode is invalid.</exception>
3727     </member>
3728     <member name="M:Microsoft.VisualBasic.FileSystem.FileGet(System.Int32,System.Byte@,System.Int64)">
3729       <summary>Reads data from an open disk file into a variable. The <see langword="My" /> feature gives you better productivity and performance in file I/O operations than <see langword="FileGet" />. For more information, see <see cref="T:Microsoft.VisualBasic.FileIO.FileSystem" />.</summary>
3730       <param name="FileNumber">Required. Any valid file number.</param>
3731       <param name="Value">Required. Valid variable name into which data is read.</param>
3732       <param name="RecordNumber">Optional. Record number (<see langword="Random" /> mode files) or byte number (<see langword="Binary" /> mode files) at which reading starts.</param>
3733       <exception cref="T:System.ArgumentException">
3734         <paramref name="RecordNumber" /> &lt; 1 and not equal to -1.</exception>
3735       <exception cref="T:System.IO.IOException">File mode is invalid.</exception>
3736     </member>
3737     <member name="M:Microsoft.VisualBasic.FileSystem.FileGet(System.Int32,System.Char@,System.Int64)">
3738       <summary>Reads data from an open disk file into a variable. The <see langword="My" /> feature gives you better productivity and performance in file I/O operations than <see langword="FileGet" />. For more information, see <see cref="T:Microsoft.VisualBasic.FileIO.FileSystem" />.</summary>
3739       <param name="FileNumber">Required. Any valid file number.</param>
3740       <param name="Value">Required. Valid variable name into which data is read.</param>
3741       <param name="RecordNumber">Optional. Record number (<see langword="Random" /> mode files) or byte number (<see langword="Binary" /> mode files) at which reading starts.</param>
3742       <exception cref="T:System.ArgumentException">
3743         <paramref name="RecordNumber" /> &lt; 1 and not equal to -1.</exception>
3744       <exception cref="T:System.IO.IOException">File mode is invalid.</exception>
3745     </member>
3746     <member name="M:Microsoft.VisualBasic.FileSystem.FileGet(System.Int32,System.DateTime@,System.Int64)">
3747       <summary>Reads data from an open disk file into a variable. The <see langword="My" /> feature gives you better productivity and performance in file I/O operations than <see langword="FileGet" />. For more information, see <see cref="T:Microsoft.VisualBasic.FileIO.FileSystem" />.</summary>
3748       <param name="FileNumber">Required. Any valid file number.</param>
3749       <param name="Value">Required. Valid variable name into which data is read.</param>
3750       <param name="RecordNumber">Optional. Record number (<see langword="Random" /> mode files) or byte number (<see langword="Binary" /> mode files) at which reading starts.</param>
3751       <exception cref="T:System.ArgumentException">
3752         <paramref name="RecordNumber" /> &lt; 1 and not equal to -1.</exception>
3753       <exception cref="T:System.IO.IOException">File mode is invalid.</exception>
3754     </member>
3755     <member name="M:Microsoft.VisualBasic.FileSystem.FileGet(System.Int32,System.Decimal@,System.Int64)">
3756       <summary>Reads data from an open disk file into a variable. The <see langword="My" /> feature gives you better productivity and performance in file I/O operations than <see langword="FileGet" />. For more information, see <see cref="T:Microsoft.VisualBasic.FileIO.FileSystem" />.</summary>
3757       <param name="FileNumber">Required. Any valid file number.</param>
3758       <param name="Value">Required. Valid variable name into which data is read.</param>
3759       <param name="RecordNumber">Optional. Record number (<see langword="Random" /> mode files) or byte number (<see langword="Binary" /> mode files) at which reading starts.</param>
3760       <exception cref="T:System.ArgumentException">
3761         <paramref name="RecordNumber" /> &lt; 1 and not equal to -1.</exception>
3762       <exception cref="T:System.IO.IOException">File mode is invalid.</exception>
3763     </member>
3764     <member name="M:Microsoft.VisualBasic.FileSystem.FileGet(System.Int32,System.Double@,System.Int64)">
3765       <summary>Reads data from an open disk file into a variable. The <see langword="My" /> feature gives you better productivity and performance in file I/O operations than <see langword="FileGet" />. For more information, see <see cref="T:Microsoft.VisualBasic.FileIO.FileSystem" />.</summary>
3766       <param name="FileNumber">Required. Any valid file number.</param>
3767       <param name="Value">Required. Valid variable name into which data is read.</param>
3768       <param name="RecordNumber">Optional. Record number (<see langword="Random" /> mode files) or byte number (<see langword="Binary" /> mode files) at which reading starts.</param>
3769       <exception cref="T:System.ArgumentException">
3770         <paramref name="RecordNumber" /> &lt; 1 and not equal to -1.</exception>
3771       <exception cref="T:System.IO.IOException">File mode is invalid.</exception>
3772     </member>
3773     <member name="M:Microsoft.VisualBasic.FileSystem.FileGet(System.Int32,System.Int16@,System.Int64)">
3774       <summary>Reads data from an open disk file into a variable. The <see langword="My" /> feature gives you better productivity and performance in file I/O operations than <see langword="FileGet" />. For more information, see <see cref="T:Microsoft.VisualBasic.FileIO.FileSystem" />.</summary>
3775       <param name="FileNumber">Required. Any valid file number.</param>
3776       <param name="Value">Required. Valid variable name into which data is read.</param>
3777       <param name="RecordNumber">Optional. Record number (<see langword="Random" /> mode files) or byte number (<see langword="Binary" /> mode files) at which reading starts.</param>
3778       <exception cref="T:System.ArgumentException">
3779         <paramref name="RecordNumber" /> &lt; 1 and not equal to -1.</exception>
3780       <exception cref="T:System.IO.IOException">File mode is invalid.</exception>
3781     </member>
3782     <member name="M:Microsoft.VisualBasic.FileSystem.FileGet(System.Int32,System.Int32@,System.Int64)">
3783       <summary>Reads data from an open disk file into a variable. The <see langword="My" /> feature gives you better productivity and performance in file I/O operations than <see langword="FileGet" />. For more information, see <see cref="T:Microsoft.VisualBasic.FileIO.FileSystem" />.</summary>
3784       <param name="FileNumber">Required. Any valid file number.</param>
3785       <param name="Value">Required. Valid variable name into which data is read.</param>
3786       <param name="RecordNumber">Optional. Record number (<see langword="Random" /> mode files) or byte number (<see langword="Binary" /> mode files) at which reading starts.</param>
3787       <exception cref="T:System.ArgumentException">
3788         <paramref name="RecordNumber" /> &lt; 1 and not equal to -1.</exception>
3789       <exception cref="T:System.IO.IOException">File mode is invalid.</exception>
3790     </member>
3791     <member name="M:Microsoft.VisualBasic.FileSystem.FileGet(System.Int32,System.Int64@,System.Int64)">
3792       <summary>Reads data from an open disk file into a variable. The <see langword="My" /> feature gives you better productivity and performance in file I/O operations than <see langword="FileGet" />. For more information, see <see cref="T:Microsoft.VisualBasic.FileIO.FileSystem" />.</summary>
3793       <param name="FileNumber">Required. Any valid file number.</param>
3794       <param name="Value">Required. Valid variable name into which data is read.</param>
3795       <param name="RecordNumber">Optional. Record number (<see langword="Random" /> mode files) or byte number (<see langword="Binary" /> mode files) at which reading starts.</param>
3796       <exception cref="T:System.ArgumentException">
3797         <paramref name="RecordNumber" /> &lt; 1 and not equal to -1.</exception>
3798       <exception cref="T:System.IO.IOException">File mode is invalid.</exception>
3799     </member>
3800     <member name="M:Microsoft.VisualBasic.FileSystem.FileGet(System.Int32,System.Single@,System.Int64)">
3801       <summary>Reads data from an open disk file into a variable. The <see langword="My" /> feature gives you better productivity and performance in file I/O operations than <see langword="FileGet" />. For more information, see <see cref="T:Microsoft.VisualBasic.FileIO.FileSystem" />.</summary>
3802       <param name="FileNumber">Required. Any valid file number.</param>
3803       <param name="Value">Required. Valid variable name into which data is read.</param>
3804       <param name="RecordNumber">Optional. Record number (<see langword="Random" /> mode files) or byte number (<see langword="Binary" /> mode files) at which reading starts.</param>
3805       <exception cref="T:System.ArgumentException">
3806         <paramref name="RecordNumber" /> &lt; 1 and not equal to -1.</exception>
3807       <exception cref="T:System.IO.IOException">File mode is invalid.</exception>
3808     </member>
3809     <member name="M:Microsoft.VisualBasic.FileSystem.FileGet(System.Int32,System.String@,System.Int64,System.Boolean)">
3810       <summary>Reads data from an open disk file into a variable. The <see langword="My" /> feature gives you better productivity and performance in file I/O operations than <see langword="FileGet" />. For more information, see <see cref="T:Microsoft.VisualBasic.FileIO.FileSystem" />.</summary>
3811       <param name="FileNumber">Required. Any valid file number.</param>
3812       <param name="Value">Required. Valid variable name into which data is read.</param>
3813       <param name="RecordNumber">Optional. Record number (<see langword="Random" /> mode files) or byte number (<see langword="Binary" /> mode files) at which reading starts.</param>
3814       <param name="StringIsFixedLength">Optional. Applies only when writing a string. Specifies whether to write a two-byte descriptor for the string that describes the length. The default is <see langword="False" />.</param>
3815       <exception cref="T:System.ArgumentException">
3816         <paramref name="RecordNumber" /> &lt; 1 and not equal to -1.</exception>
3817       <exception cref="T:System.IO.IOException">File mode is invalid.</exception>
3818     </member>
3819     <member name="M:Microsoft.VisualBasic.FileSystem.FileGet(System.Int32,System.ValueType@,System.Int64)">
3820       <summary>Reads data from an open disk file into a variable. The <see langword="My" /> feature gives you better productivity and performance in file I/O operations than <see langword="FileGet" />. For more information, see <see cref="T:Microsoft.VisualBasic.FileIO.FileSystem" />.</summary>
3821       <param name="FileNumber">Required. Any valid file number.</param>
3822       <param name="Value">Required. Valid variable name into which data is read.</param>
3823       <param name="RecordNumber">Optional. Record number (<see langword="Random" /> mode files) or byte number (<see langword="Binary" /> mode files) at which reading starts.</param>
3824       <exception cref="T:System.ArgumentException">
3825         <paramref name="RecordNumber" /> &lt; 1 and not equal to -1.</exception>
3826       <exception cref="T:System.IO.IOException">File mode is invalid.</exception>
3827     </member>
3828     <member name="M:Microsoft.VisualBasic.FileSystem.FileGetObject(System.Int32,System.Object@,System.Int64)">
3829       <summary>Reads data from an open disk file into a variable.  The <see langword="My" /> feature gives you better productivity and performance in file I/O operations than <see langword="FileGetObject" />. For more information, see <see cref="T:Microsoft.VisualBasic.FileIO.FileSystem" />.</summary>
3830       <param name="FileNumber">Required. Any valid file number.</param>
3831       <param name="Value">Required. Valid variable name into which data is read.</param>
3832       <param name="RecordNumber">Optional. Record number (<see langword="Random" /> mode files) or byte number (<see langword="Binary" /> mode files) at which reading starts.</param>
3833     </member>
3834     <member name="M:Microsoft.VisualBasic.FileSystem.FileLen(System.String)">
3835       <summary>Returns a value that specifies the length of a file in bytes. The <see langword="My" /> feature gives you better productivity and performance in file I/O operations than <see langword="FileLen" />. For more information, see <see cref="M:Microsoft.VisualBasic.FileIO.FileSystem.GetFileInfo(System.String)" />.</summary>
3836       <param name="PathName">Required. A string expression that specifies a file. <paramref name="PathName" /> may include the directory or folder, and the drive.</param>
3837       <exception cref="T:System.IO.FileNotFoundException">File does not exist.</exception>
3838       <returns>The length of a file in bytes.</returns>
3839     </member>
3840     <member name="M:Microsoft.VisualBasic.FileSystem.FileOpen(System.Int32,System.String,Microsoft.VisualBasic.OpenMode,Microsoft.VisualBasic.OpenAccess,Microsoft.VisualBasic.OpenShare,System.Int32)">
3841       <summary>Opens a file for input or output. The <see langword="My" /> feature gives you better productivity and performance in file I/O operations than <see langword="FileOpen" />. For more information, see <see cref="T:Microsoft.VisualBasic.FileIO.FileSystem" />.</summary>
3842       <param name="FileNumber">Required. Any valid file number. Use the <see langword="FreeFile" /> function to obtain the next available file number.</param>
3843       <param name="FileName">Required. A string expression that specifies a file name - may include directory or folder, and drive.</param>
3844       <param name="Mode">Required. Enumeration specifying the file mode: <see langword="Append" />, <see langword="Binary" />, <see langword="Input" />, <see langword="Output" />, or <see langword="Random" />. For more information, see <see cref="T:Microsoft.VisualBasic.OpenMode" /> .</param>
3845       <param name="Access">Optional. Enumeration specifying the operations permitted on the open file: <see langword="Read" />, <see langword="Write" />, or <see langword="ReadWrite" />. Defaults to <see langword="ReadWrite" />. For more information, see <see cref="T:Microsoft.VisualBasic.OpenAccess" /> .</param>
3846       <param name="Share">Optional. Enumeration specifying the operations not permitted on the open file by other processes: <see langword="Shared" />, <see langword="Lock Read" />, <see langword="Lock Write" />, and <see langword="Lock Read Write" />. Defaults to <see langword="Lock Read Write" />. For more information, see <see cref="T:Microsoft.VisualBasic.OpenShare" /> .</param>
3847       <param name="RecordLength">Optional. Number less than or equal to 32,767 (bytes). For files opened for random access, this value is the record length. For sequential files, this value is the number of characters buffered.</param>
3848       <exception cref="T:System.ArgumentException">Record length is negative (and not equal to -1).</exception>
3849       <exception cref="T:System.IO.IOException">
3850         <paramref name="FileName" /> is already open, or <paramref name="FileName" /> is invalid.</exception>
3851     </member>
3852     <member name="M:Microsoft.VisualBasic.FileSystem.FilePut(System.Int32,System.Array,System.Int64,System.Boolean,System.Boolean)">
3853       <summary>Writes data from a variable to a disk file. The <see langword="My" /> feature gives you better productivity and performance in file I/O operations than <see langword="FilePut" />. For more information, see <see cref="T:Microsoft.VisualBasic.FileIO.FileSystem" />.</summary>
3854       <param name="FileNumber">Required. Any valid file number.</param>
3855       <param name="Value">Required. Valid variable name that contains data written to disk.</param>
3856       <param name="RecordNumber">Optional. Record number (<see langword="Random" /> mode files) or byte number (<see langword="Binary" /> mode files) at which writing starts.</param>
3857       <param name="ArrayIsDynamic">Optional. Applies only when writing an array. Specifies whether the array is to be treated as dynamic, and whether to write an array descriptor for the string that describes the length.</param>
3858       <param name="StringIsFixedLength">Optional. Applies only when writing a string. Specifies whether to write a two-byte string length descriptor for the string to the file. The default is <see langword="False" />.</param>
3859       <exception cref="T:System.ArgumentException">
3860         <paramref name="RecordNumber" /> &lt; 1 and not equal to -1.</exception>
3861       <exception cref="T:System.IO.IOException">File mode is invalid.</exception>
3862     </member>
3863     <member name="M:Microsoft.VisualBasic.FileSystem.FilePut(System.Int32,System.Boolean,System.Int64)">
3864       <summary>Writes data from a variable to a disk file. The <see langword="My" /> feature gives you better productivity and performance in file I/O operations than <see langword="FilePut" />. For more information, see <see cref="T:Microsoft.VisualBasic.FileIO.FileSystem" />.</summary>
3865       <param name="FileNumber">Required. Any valid file number.</param>
3866       <param name="Value">Required. Valid variable name that contains data written to disk.</param>
3867       <param name="RecordNumber">Optional. Record number (<see langword="Random" /> mode files) or byte number (<see langword="Binary" /> mode files) at which writing starts.</param>
3868       <exception cref="T:System.ArgumentException">
3869         <paramref name="RecordNumber" /> &lt; 1 and not equal to -1.</exception>
3870       <exception cref="T:System.IO.IOException">File mode is invalid.</exception>
3871     </member>
3872     <member name="M:Microsoft.VisualBasic.FileSystem.FilePut(System.Int32,System.Byte,System.Int64)">
3873       <summary>Writes data from a variable to a disk file. The <see langword="My" /> feature gives you better productivity and performance in file I/O operations than <see langword="FilePut" />. For more information, see <see cref="T:Microsoft.VisualBasic.FileIO.FileSystem" />.</summary>
3874       <param name="FileNumber">Required. Any valid file number.</param>
3875       <param name="Value">Required. Valid variable name that contains data written to disk.</param>
3876       <param name="RecordNumber">Optional. Record number (<see langword="Random" /> mode files) or byte number (<see langword="Binary" /> mode files) at which writing starts.</param>
3877       <exception cref="T:System.ArgumentException">
3878         <paramref name="RecordNumber" /> &lt; 1 and not equal to -1.</exception>
3879       <exception cref="T:System.IO.IOException">File mode is invalid.</exception>
3880     </member>
3881     <member name="M:Microsoft.VisualBasic.FileSystem.FilePut(System.Int32,System.Char,System.Int64)">
3882       <summary>Writes data from a variable to a disk file. The <see langword="My" /> feature gives you better productivity and performance in file I/O operations than <see langword="FilePut" />. For more information, see <see cref="T:Microsoft.VisualBasic.FileIO.FileSystem" />.</summary>
3883       <param name="FileNumber">Required. Any valid file number.</param>
3884       <param name="Value">Required. Valid variable name that contains data written to disk.</param>
3885       <param name="RecordNumber">Optional. Record number (<see langword="Random" /> mode files) or byte number (<see langword="Binary" /> mode files) at which writing starts.</param>
3886       <exception cref="T:System.ArgumentException">
3887         <paramref name="RecordNumber" /> &lt; 1 and not equal to -1.</exception>
3888       <exception cref="T:System.IO.IOException">File mode is invalid.</exception>
3889     </member>
3890     <member name="M:Microsoft.VisualBasic.FileSystem.FilePut(System.Int32,System.DateTime,System.Int64)">
3891       <summary>Writes data from a variable to a disk file. The <see langword="My" /> feature gives you better productivity and performance in file I/O operations than <see langword="FilePut" />. For more information, see <see cref="T:Microsoft.VisualBasic.FileIO.FileSystem" />.</summary>
3892       <param name="FileNumber">Required. Any valid file number.</param>
3893       <param name="Value">Required. Valid variable name that contains data written to disk.</param>
3894       <param name="RecordNumber">Optional. Record number (<see langword="Random" /> mode files) or byte number (<see langword="Binary" /> mode files) at which writing starts.</param>
3895       <exception cref="T:System.ArgumentException">
3896         <paramref name="RecordNumber" /> &lt; 1 and not equal to -1.</exception>
3897       <exception cref="T:System.IO.IOException">File mode is invalid.</exception>
3898     </member>
3899     <member name="M:Microsoft.VisualBasic.FileSystem.FilePut(System.Int32,System.Decimal,System.Int64)">
3900       <summary>Writes data from a variable to a disk file. The <see langword="My" /> feature gives you better productivity and performance in file I/O operations than <see langword="FilePut" />. For more information, see <see cref="T:Microsoft.VisualBasic.FileIO.FileSystem" />.</summary>
3901       <param name="FileNumber">Required. Any valid file number.</param>
3902       <param name="Value">Required. Valid variable name that contains data written to disk.</param>
3903       <param name="RecordNumber">Optional. Record number (<see langword="Random" /> mode files) or byte number (<see langword="Binary" /> mode files) at which writing starts.</param>
3904       <exception cref="T:System.ArgumentException">
3905         <paramref name="RecordNumber" /> &lt; 1 and not equal to -1.</exception>
3906       <exception cref="T:System.IO.IOException">File mode is invalid.</exception>
3907     </member>
3908     <member name="M:Microsoft.VisualBasic.FileSystem.FilePut(System.Int32,System.Double,System.Int64)">
3909       <summary>Writes data from a variable to a disk file. The <see langword="My" /> feature gives you better productivity and performance in file I/O operations than <see langword="FilePut" />. For more information, see <see cref="T:Microsoft.VisualBasic.FileIO.FileSystem" />.</summary>
3910       <param name="FileNumber">Required. Any valid file number.</param>
3911       <param name="Value">Required. Valid variable name that contains data written to disk.</param>
3912       <param name="RecordNumber">Optional. Record number (<see langword="Random" /> mode files) or byte number (<see langword="Binary" /> mode files) at which writing starts.</param>
3913       <exception cref="T:System.ArgumentException">
3914         <paramref name="RecordNumber" /> &lt; 1 and not equal to -1.</exception>
3915       <exception cref="T:System.IO.IOException">File mode is invalid.</exception>
3916     </member>
3917     <member name="M:Microsoft.VisualBasic.FileSystem.FilePut(System.Int32,System.Int16,System.Int64)">
3918       <summary>Writes data from a variable to a disk file. The <see langword="My" /> feature gives you better productivity and performance in file I/O operations than <see langword="FilePut" />. For more information, see <see cref="T:Microsoft.VisualBasic.FileIO.FileSystem" />.</summary>
3919       <param name="FileNumber">Required. Any valid file number.</param>
3920       <param name="Value">Required. Valid variable name that contains data written to disk.</param>
3921       <param name="RecordNumber">Optional. Record number (<see langword="Random" /> mode files) or byte number (<see langword="Binary" /> mode files) at which writing starts.</param>
3922       <exception cref="T:System.ArgumentException">
3923         <paramref name="RecordNumber" /> &lt; 1 and not equal to -1.</exception>
3924       <exception cref="T:System.IO.IOException">File mode is invalid.</exception>
3925     </member>
3926     <member name="M:Microsoft.VisualBasic.FileSystem.FilePut(System.Int32,System.Int32,System.Int64)">
3927       <summary>Writes data from a variable to a disk file. The <see langword="My" /> feature gives you better productivity and performance in file I/O operations than <see langword="FilePut" />. For more information, see <see cref="T:Microsoft.VisualBasic.FileIO.FileSystem" />.</summary>
3928       <param name="FileNumber">Required. Any valid file number.</param>
3929       <param name="Value">Required. Valid variable name that contains data written to disk.</param>
3930       <param name="RecordNumber">Optional. Record number (<see langword="Random" /> mode files) or byte number (<see langword="Binary" /> mode files) at which writing starts.</param>
3931       <exception cref="T:System.ArgumentException">
3932         <paramref name="RecordNumber" /> &lt; 1 and not equal to -1.</exception>
3933       <exception cref="T:System.IO.IOException">File mode is invalid.</exception>
3934     </member>
3935     <member name="M:Microsoft.VisualBasic.FileSystem.FilePut(System.Int32,System.Int64,System.Int64)">
3936       <summary>Writes data from a variable to a disk file. The <see langword="My" /> feature gives you better productivity and performance in file I/O operations than <see langword="FilePut" />. For more information, see <see cref="T:Microsoft.VisualBasic.FileIO.FileSystem" />.</summary>
3937       <param name="FileNumber">Required. Any valid file number.</param>
3938       <param name="Value">Required. Valid variable name that contains data written to disk.</param>
3939       <param name="RecordNumber">Optional. Record number (<see langword="Random" /> mode files) or byte number (<see langword="Binary" /> mode files) at which writing starts.</param>
3940       <exception cref="T:System.ArgumentException">
3941         <paramref name="RecordNumber" /> &lt; 1 and not equal to -1.</exception>
3942       <exception cref="T:System.IO.IOException">File mode is invalid.</exception>
3943     </member>
3944     <member name="M:Microsoft.VisualBasic.FileSystem.FilePut(System.Int32,System.Single,System.Int64)">
3945       <summary>Writes data from a variable to a disk file. The <see langword="My" /> feature gives you better productivity and performance in file I/O operations than <see langword="FilePut" />. For more information, see <see cref="T:Microsoft.VisualBasic.FileIO.FileSystem" />.</summary>
3946       <param name="FileNumber">Required. Any valid file number.</param>
3947       <param name="Value">Required. Valid variable name that contains data written to disk.</param>
3948       <param name="RecordNumber">Optional. Record number (<see langword="Random" /> mode files) or byte number (<see langword="Binary" /> mode files) at which writing starts.</param>
3949       <exception cref="T:System.ArgumentException">
3950         <paramref name="RecordNumber" /> &lt; 1 and not equal to -1.</exception>
3951       <exception cref="T:System.IO.IOException">File mode is invalid.</exception>
3952     </member>
3953     <member name="M:Microsoft.VisualBasic.FileSystem.FilePut(System.Int32,System.String,System.Int64,System.Boolean)">
3954       <summary>Writes data from a variable to a disk file. The <see langword="My" /> feature gives you better productivity and performance in file I/O operations than <see langword="FilePut" />. For more information, see <see cref="T:Microsoft.VisualBasic.FileIO.FileSystem" />.</summary>
3955       <param name="FileNumber">Required. Any valid file number.</param>
3956       <param name="Value">Required. Valid variable name that contains data written to disk.</param>
3957       <param name="RecordNumber">Optional. Record number (<see langword="Random" /> mode files) or byte number (<see langword="Binary" /> mode files) at which writing starts.</param>
3958       <param name="StringIsFixedLength">Optional. Applies only when writing a string. Specifies whether to write a two-byte string length descriptor for the string to the file. The default is <see langword="False" />.</param>
3959       <exception cref="T:System.ArgumentException">
3960         <paramref name="RecordNumber" /> &lt; 1 and not equal to -1.</exception>
3961       <exception cref="T:System.IO.IOException">File mode is invalid.</exception>
3962     </member>
3963     <member name="M:Microsoft.VisualBasic.FileSystem.FilePut(System.Int32,System.ValueType,System.Int64)">
3964       <summary>Writes data from a variable to a disk file. The <see langword="My" /> feature gives you better productivity and performance in file I/O operations than <see langword="FilePut" />. For more information, see <see cref="T:Microsoft.VisualBasic.FileIO.FileSystem" />.</summary>
3965       <param name="FileNumber">Required. Any valid file number.</param>
3966       <param name="Value">Required. Valid variable name that contains data written to disk.</param>
3967       <param name="RecordNumber">Optional. Record number (<see langword="Random" /> mode files) or byte number (<see langword="Binary" /> mode files) at which writing starts.</param>
3968       <exception cref="T:System.ArgumentException">
3969         <paramref name="RecordNumber" /> &lt; 1 and not equal to -1.</exception>
3970       <exception cref="T:System.IO.IOException">File mode is invalid.</exception>
3971     </member>
3972     <member name="M:Microsoft.VisualBasic.FileSystem.FilePut(System.Object,System.Object,System.Object)">
3973       <summary>Writes data from a variable to a disk file. The <see langword="My" /> feature gives you better productivity and performance in file I/O operations than <see langword="FilePut" />. For more information, see <see cref="T:Microsoft.VisualBasic.FileIO.FileSystem" />.</summary>
3974       <param name="FileNumber">Required. Any valid file number.</param>
3975       <param name="Value">Required. Valid variable name that contains data written to disk.</param>
3976       <param name="RecordNumber">Optional. Record number (<see langword="Random" /> mode files) or byte number (<see langword="Binary" /> mode files) at which writing starts.</param>
3977       <exception cref="T:System.ArgumentException">
3978         <paramref name="RecordNumber" /> &lt; 1 and not equal to -1.</exception>
3979       <exception cref="T:System.IO.IOException">File mode is invalid.</exception>
3980     </member>
3981     <member name="M:Microsoft.VisualBasic.FileSystem.FilePutObject(System.Int32,System.Object,System.Int64)">
3982       <summary>Writes data from a variable to a disk file.  The <see langword="My" /> feature gives you better productivity and performance in file I/O operations than <see langword="FilePutObject" />. For more information, see <see cref="T:Microsoft.VisualBasic.FileIO.FileSystem" />.</summary>
3983       <param name="FileNumber">Required. Any valid file number.</param>
3984       <param name="Value">Required. Valid variable name that contains data written to disk.</param>
3985       <param name="RecordNumber">Optional. Record number (<see langword="Random" /> mode files) or byte number (<see langword="Binary" /> mode files) at which writing starts.</param>
3986     </member>
3987     <member name="M:Microsoft.VisualBasic.FileSystem.FileWidth(System.Int32,System.Int32)">
3988       <summary>Assigns an output line width to a file opened by using the <see langword="FileOpen" /> function.</summary>
3989       <param name="FileNumber">Required. Any valid file number.</param>
3990       <param name="RecordWidth">Required. Numeric expression in the range 0-255, inclusive, which indicates how many characters appear on a line before a new line is started. If <paramref name="RecordWidth" /> equals 0, there is no limit to the length of a line. The default value for <paramref name="RecordWidth" /> is 0.</param>
3991       <exception cref="T:System.IO.IOException">File mode is invalid.</exception>
3992     </member>
3993     <member name="M:Microsoft.VisualBasic.FileSystem.FreeFile">
3994       <summary>Returns an <see langword="Integer" /> value that represents the next file number available for use by the <see langword="FileOpen" /> function.</summary>
3995       <exception cref="T:System.IO.IOException">More than 255 files are in use.</exception>
3996       <returns>An integer value that represents the next file number available for use by the <see langword="FileOpen" /> function.</returns>
3997     </member>
3998     <member name="M:Microsoft.VisualBasic.FileSystem.GetAttr(System.String)">
3999       <summary>Returns a <see langword="FileAttribute" /> value that represents the attributes of a file, directory, or folder. The <see langword="My" /> feature gives you better productivity and performance in file I/O operations than <see langword="FileAttribute" />. For more information, see <see cref="T:Microsoft.VisualBasic.FileIO.FileSystem" />.</summary>
4000       <param name="PathName">Required. A string expression that specifies a file, directory, or folder name. <paramref name="PathName" /> can include the directory or folder, and the drive.</param>
4001       <exception cref="T:System.IO.IOException">
4002         <paramref name="Pathname" /> is invalid or contains wildcards.</exception>
4003       <exception cref="T:System.IO.FileNotFoundException">Target file does not exist.</exception>
4004       <returns>A bitwise combination of the enumeration values.</returns>
4005     </member>
4006     <member name="M:Microsoft.VisualBasic.FileSystem.Input(System.Int32,System.Boolean@)">
4007       <summary>Reads data from an open sequential file and assigns the data to variables.</summary>
4008       <param name="FileNumber">Required. Any valid file number.</param>
4009       <param name="Value">Required. Variable that is assigned the values read from the file - cannot be an array or object variable.</param>
4010       <exception cref="T:System.IO.IOException">File mode is invalid.</exception>
4011     </member>
4012     <member name="M:Microsoft.VisualBasic.FileSystem.Input(System.Int32,System.Byte@)">
4013       <summary>Reads data from an open sequential file and assigns the data to variables.</summary>
4014       <param name="FileNumber">Required. Any valid file number.</param>
4015       <param name="Value">Required. Variable that is assigned the values read from the file - cannot be an array or object variable.</param>
4016       <exception cref="T:System.IO.IOException">File mode is invalid.</exception>
4017     </member>
4018     <member name="M:Microsoft.VisualBasic.FileSystem.Input(System.Int32,System.Char@)">
4019       <summary>Reads data from an open sequential file and assigns the data to variables.</summary>
4020       <param name="FileNumber">Required. Any valid file number.</param>
4021       <param name="Value">Required. Variable that is assigned the values read from the file - cannot be an array or object variable.</param>
4022       <exception cref="T:System.IO.IOException">File mode is invalid.</exception>
4023     </member>
4024     <member name="M:Microsoft.VisualBasic.FileSystem.Input(System.Int32,System.DateTime@)">
4025       <summary>Reads data from an open sequential file and assigns the data to variables.</summary>
4026       <param name="FileNumber">Required. Any valid file number.</param>
4027       <param name="Value">Required. Variable that is assigned the values read from the file - cannot be an array or object variable.</param>
4028       <exception cref="T:System.IO.IOException">File mode is invalid.</exception>
4029     </member>
4030     <member name="M:Microsoft.VisualBasic.FileSystem.Input(System.Int32,System.Decimal@)">
4031       <summary>Reads data from an open sequential file and assigns the data to variables.</summary>
4032       <param name="FileNumber">Required. Any valid file number.</param>
4033       <param name="Value">Required. Variable that is assigned the values read from the file - cannot be an array or object variable.</param>
4034       <exception cref="T:System.IO.IOException">File mode is invalid.</exception>
4035     </member>
4036     <member name="M:Microsoft.VisualBasic.FileSystem.Input(System.Int32,System.Double@)">
4037       <summary>Reads data from an open sequential file and assigns the data to variables.</summary>
4038       <param name="FileNumber">Required. Any valid file number.</param>
4039       <param name="Value">Required. Variable that is assigned the values read from the file - cannot be an array or object variable.</param>
4040       <exception cref="T:System.IO.IOException">File mode is invalid.</exception>
4041     </member>
4042     <member name="M:Microsoft.VisualBasic.FileSystem.Input(System.Int32,System.Int16@)">
4043       <summary>Reads data from an open sequential file and assigns the data to variables.</summary>
4044       <param name="FileNumber">Required. Any valid file number.</param>
4045       <param name="Value">Required. Variable that is assigned the values read from the file - cannot be an array or object variable.</param>
4046       <exception cref="T:System.IO.IOException">File mode is invalid.</exception>
4047     </member>
4048     <member name="M:Microsoft.VisualBasic.FileSystem.Input(System.Int32,System.Int32@)">
4049       <summary>Reads data from an open sequential file and assigns the data to variables.</summary>
4050       <param name="FileNumber">Required. Any valid file number.</param>
4051       <param name="Value">Required. Variable that is assigned the values read from the file - cannot be an array or object variable.</param>
4052       <exception cref="T:System.IO.IOException">File mode is invalid.</exception>
4053     </member>
4054     <member name="M:Microsoft.VisualBasic.FileSystem.Input(System.Int32,System.Int64@)">
4055       <summary>Reads data from an open sequential file and assigns the data to variables.</summary>
4056       <param name="FileNumber">Required. Any valid file number.</param>
4057       <param name="Value">Required. Variable that is assigned the values read from the file - cannot be an array or object variable.</param>
4058       <exception cref="T:System.IO.IOException">File mode is invalid.</exception>
4059     </member>
4060     <member name="M:Microsoft.VisualBasic.FileSystem.Input(System.Int32,System.Object@)">
4061       <summary>Reads data from an open sequential file and assigns the data to variables.</summary>
4062       <param name="FileNumber">Required. Any valid file number.</param>
4063       <param name="Value">Required. Variable that is assigned the values read from the file - cannot be an array or object variable.</param>
4064       <exception cref="T:System.IO.IOException">File mode is invalid.</exception>
4065     </member>
4066     <member name="M:Microsoft.VisualBasic.FileSystem.Input(System.Int32,System.Single@)">
4067       <summary>Reads data from an open sequential file and assigns the data to variables.</summary>
4068       <param name="FileNumber">Required. Any valid file number.</param>
4069       <param name="Value">Required. Variable that is assigned the values read from the file - cannot be an array or object variable.</param>
4070       <exception cref="T:System.IO.IOException">File mode is invalid.</exception>
4071     </member>
4072     <member name="M:Microsoft.VisualBasic.FileSystem.Input(System.Int32,System.String@)">
4073       <summary>Reads data from an open sequential file and assigns the data to variables.</summary>
4074       <param name="FileNumber">Required. Any valid file number.</param>
4075       <param name="Value">Required. Variable that is assigned the values read from the file - cannot be an array or object variable.</param>
4076       <exception cref="T:System.IO.IOException">File mode is invalid.</exception>
4077     </member>
4078     <member name="M:Microsoft.VisualBasic.FileSystem.InputString(System.Int32,System.Int32)">
4079       <summary>Returns <see langword="String" /> value that contains characters from a file opened in <see langword="Input" /> or <see langword="Binary" /> mode. The <see langword="My" /> feature gives you better productivity and performance in file I/O operations than <see langword="InputString" />. For more information, see <see cref="T:Microsoft.VisualBasic.FileIO.FileSystem" />.</summary>
4080       <param name="FileNumber">Required. Any valid file number.</param>
4081       <param name="CharCount">Required. Any valid numeric expression specifying the number of characters to read.</param>
4082       <exception cref="T:System.IO.IOException">
4083         <paramref name="FileNumber" /> does not exist.</exception>
4084       <exception cref="T:System.ArgumentException">
4085         <paramref name="CharCount" /> &lt; 0 or &gt; 214.</exception>
4086       <returns>A string that contains characters from a file opened in <see langword="Input" /> or <see langword="Binary" /> mode. The <see langword="My" /> feature gives you better productivity and performance in file I/O operations than <see langword="InputString" />.</returns>
4087     </member>
4088     <member name="M:Microsoft.VisualBasic.FileSystem.Kill(System.String)">
4089       <summary>Deletes files from a disk. The <see langword="My" /> feature gives you better productivity and performance in file I/O operations than <see langword="Kill" />. For more information, see <see cref="T:Microsoft.VisualBasic.FileIO.FileSystem" /> .</summary>
4090       <param name="PathName">Required. A string expression that specifies one or more file names to be deleted. <paramref name="PathName" /> can include the directory or folder, and the drive.</param>
4091       <exception cref="T:System.IO.IOException">Target file(s) open.</exception>
4092       <exception cref="T:System.IO.FileNotFoundException">Target file(s) not found.</exception>
4093       <exception cref="T:System.Security.SecurityException">Permission denied.</exception>
4094     </member>
4095     <member name="M:Microsoft.VisualBasic.FileSystem.LineInput(System.Int32)">
4096       <summary>Reads a single line from an open sequential file and assigns it to a <see langword="String" /> variable.</summary>
4097       <param name="FileNumber">Required. Any valid file number.</param>
4098       <exception cref="T:System.IO.EndOfStreamException">End of file reached.</exception>
4099       <exception cref="T:System.IO.IOException">
4100         <paramref name="FileNumber" /> does not exist.</exception>
4101       <returns>Reads a single line from an open sequential file and assigns it to a <see langword="String" /> variable.</returns>
4102     </member>
4103     <member name="M:Microsoft.VisualBasic.FileSystem.Loc(System.Int32)">
4104       <summary>Returns a value that specifies the current read/write position in an open file.</summary>
4105       <param name="FileNumber">Required. Any valid <see langword="Integer" /> file number.</param>
4106       <exception cref="T:System.IO.IOException">File mode is invalid.</exception>
4107       <returns>The current read/write position in an open file.</returns>
4108     </member>
4109     <member name="M:Microsoft.VisualBasic.FileSystem.Lock(System.Int32)">
4110       <summary>Controls access by other processes to all or part of a file opened by using the <see langword="Open" /> function. The <see langword="My" /> feature gives you better productivity and performance in file I/O operations than <see langword="Lock" /> and <see langword="Unlock" />. For more information, see <see cref="T:Microsoft.VisualBasic.FileIO.FileSystem" />.</summary>
4111       <param name="FileNumber">Required. Any valid file number.</param>
4112       <exception cref="T:System.IO.IOException">File mode is invalid.</exception>
4113     </member>
4114     <member name="M:Microsoft.VisualBasic.FileSystem.Lock(System.Int32,System.Int64)">
4115       <summary>Controls access by other processes to all or part of a file opened by using the <see langword="Open" /> function. The <see langword="My" /> feature gives you better productivity and performance in file I/O operations than <see langword="Lock" /> and <see langword="Unlock" />. For more information, see <see cref="T:Microsoft.VisualBasic.FileIO.FileSystem" />.</summary>
4116       <param name="FileNumber">Required. Any valid file number.</param>
4117       <param name="Record">Optional. Number of the only record or byte to lock or unlock.</param>
4118       <exception cref="T:System.IO.IOException">File mode is invalid.</exception>
4119     </member>
4120     <member name="M:Microsoft.VisualBasic.FileSystem.Lock(System.Int32,System.Int64,System.Int64)">
4121       <summary>Controls access by other processes to all or part of a file opened by using the <see langword="Open" /> function. The <see langword="My" /> feature gives you better productivity and performance in file I/O operations than <see langword="Lock" /> and <see langword="Unlock" />. For more information, see <see cref="T:Microsoft.VisualBasic.FileIO.FileSystem" />.</summary>
4122       <param name="FileNumber">Required. Any valid file number.</param>
4123       <param name="FromRecord">Optional. Number of the first record or byte to lock or unlock.</param>
4124       <param name="ToRecord">Optional. Number of the last record or byte to lock or unlock.</param>
4125       <exception cref="T:System.IO.IOException">File mode is invalid.</exception>
4126     </member>
4127     <member name="M:Microsoft.VisualBasic.FileSystem.LOF(System.Int32)">
4128       <summary>Returns the size, in bytes, of a file opened by using the <see langword="FileOpen" /> function. The <see langword="My" /> feature gives you better productivity and performance in file I/O operations than <see langword="LOF" />. For more information, see <see cref="T:Microsoft.VisualBasic.FileIO.FileSystem" />.</summary>
4129       <param name="FileNumber">Required. An integer that contains a valid file number.</param>
4130       <exception cref="T:System.IO.IOException">File mode is invalid.</exception>
4131       <returns>The size, in bytes, of a file opened by using the <see langword="FileOpen" /> function. The <see langword="My" /> feature gives you better productivity and performance in file I/O operations than <see langword="LOF" />.</returns>
4132     </member>
4133     <member name="M:Microsoft.VisualBasic.FileSystem.MkDir(System.String)">
4134       <summary>Creates a new directory. The <see langword="My" /> feature gives you better productivity and performance in file I/O operations than <see langword="MkDir" />. For more information, see <see cref="M:Microsoft.VisualBasic.FileIO.FileSystem.CreateDirectory(System.String)" />.</summary>
4135       <param name="Path">Required. A string expression that identifies the directory to be created. The <paramref name="Path" /> may include the drive. If no drive is specified, <see langword="MkDir" /> creates the new directory on the current drive.</param>
4136       <exception cref="T:System.ArgumentException">
4137         <paramref name="Path" /> is not specified or is empty.</exception>
4138       <exception cref="T:System.Security.SecurityException">Permission denied.</exception>
4139       <exception cref="T:System.IO.IOException">Directory already exists.</exception>
4140     </member>
4141     <member name="M:Microsoft.VisualBasic.FileSystem.Print(System.Int32,System.Object[])">
4142       <summary>Writes display-formatted data to a sequential file.</summary>
4143       <param name="FileNumber">Required. Any valid file number.</param>
4144       <param name="Output">Optional. Zero or more comma-delimited expressions to write to a file.  
4145   
4146  The <paramref name="Output" /> argument settings are:  
4147   
4148  <see langword="T:System.IO.IOException" />: File mode is invalid.  
4149   
4150  <see langword="T:System.IO.IOException" />: <paramref name="FileNumber" /> does not exist.</param>
4151     </member>
4152     <member name="M:Microsoft.VisualBasic.FileSystem.PrintLine(System.Int32,System.Object[])">
4153       <summary>Writes display-formatted data to a sequential file.</summary>
4154       <param name="FileNumber">Required. Any valid file number.</param>
4155       <param name="Output">Optional. Zero or more comma-delimited expressions to write to a file.  
4156   
4157  The <paramref name="Output" /> argument settings are:  
4158   
4159  <see langword="T:System.IO.IOException" />: File mode is invalid.  
4160   
4161  <see langword="T:System.IO.IOException" />: <paramref name="FileNumber" /> does not exist.</param>
4162     </member>
4163     <member name="M:Microsoft.VisualBasic.FileSystem.Rename(System.String,System.String)">
4164       <summary>Renames a disk file or directory. The <see langword="My" /> feature gives you better productivity and performance in file I/O operations than <see langword="Rename" />. For more information, see <see cref="T:Microsoft.VisualBasic.FileIO.FileSystem" />.</summary>
4165       <param name="OldPath">Required. A string expression that specifies the existing file name and location. <paramref name="OldPath" /> may include the directory, and drive, of the file.</param>
4166       <param name="NewPath">Required. A string expression that specifies the new file name and location. <paramref name="NewPath" /> may include directory and drive of the destination location. The file name specified by <paramref name="NewPath" /> cannot already exist.</param>
4167       <exception cref="T:System.ArgumentException">Path is invalid.</exception>
4168       <exception cref="T:System.IO.FileNotFoundException">
4169         <paramref name="OldPath" /> file does not exist.</exception>
4170       <exception cref="T:System.IO.IOException">Cannot rename to different device.</exception>
4171     </member>
4172     <member name="M:Microsoft.VisualBasic.FileSystem.Reset">
4173       <summary>Closes all disk files opened by using the <see langword="FileOpen" /> function. The <see langword="My" /> feature gives you better productivity and performance in file I/O operations than <see langword="Reset" />. For more information, see <see cref="T:Microsoft.VisualBasic.FileIO.FileSystem" />.</summary>
4174     </member>
4175     <member name="M:Microsoft.VisualBasic.FileSystem.RmDir(System.String)">
4176       <summary>Removes an existing directory. The <see langword="My" /> feature gives you better productivity and performance in file I/O operations than <see langword="RmDir" />. For more information, see <see cref="Overload:Microsoft.VisualBasic.FileIO.FileSystem.DeleteDirectory" />.</summary>
4177       <param name="Path">Required. A string expression that identifies the directory or folder to be removed. <paramref name="Path" /> can include the drive. If no drive is specified, <see langword="RmDir" /> removes the directory on the current drive.</param>
4178       <exception cref="T:System.ArgumentException">
4179         <paramref name="Path" /> is not specified or is empty.</exception>
4180       <exception cref="T:System.IO.IOException">Target directory contains files.</exception>
4181       <exception cref="T:System.IO.FileNotFoundException">Directory does not exist.</exception>
4182     </member>
4183     <member name="M:Microsoft.VisualBasic.FileSystem.Seek(System.Int32)">
4184       <summary>Returns a <see langword="Long" /> specifying the current read/write position in a file opened by using the <see langword="FileOpen" /> function, or sets the position for the next read/write operation in a file opened by using the <see langword="FileOpen" /> function. The <see langword="My" /> feature gives you better productivity and performance in file I/O operations than <see langword="Seek" />. For more information, see <see cref="T:Microsoft.VisualBasic.FileIO.FileSystem" />.</summary>
4185       <param name="FileNumber">Required. An <see langword="Integer" /> that contains a valid file number.</param>
4186       <exception cref="T:System.IO.IOException">File mode is invalid.</exception>
4187       <returns>A <see langword="Long" /> specifying the current read/write position in a file opened by using the <see langword="FileOpen" /> function, or sets the position for the next read/write operation in a file opened by using the <see langword="FileOpen" /> function.</returns>
4188     </member>
4189     <member name="M:Microsoft.VisualBasic.FileSystem.Seek(System.Int32,System.Int64)">
4190       <summary>Returns a <see langword="Long" /> specifying the current read/write position in a file opened by using the <see langword="FileOpen" /> function, or sets the position for the next read/write operation in a file opened by using the <see langword="FileOpen" /> function. The <see langword="My" /> feature gives you better productivity and performance in file I/O operations than <see langword="Seek" />. For more information, see <see cref="T:Microsoft.VisualBasic.FileIO.FileSystem" />.</summary>
4191       <param name="FileNumber">Required. An <see langword="Integer" /> that contains a valid file number.</param>
4192       <param name="Position">Required. Number in the range 1-2,147,483,647, inclusive, that indicates where the next read/write operation should occur.</param>
4193       <exception cref="T:System.IO.IOException">File mode is invalid.</exception>
4194     </member>
4195     <member name="M:Microsoft.VisualBasic.FileSystem.SetAttr(System.String,Microsoft.VisualBasic.FileAttribute)">
4196       <summary>Sets attribute information for a file. The <see langword="My" /> feature gives you better productivity and performance in file I/O operations than <see langword="SetAttr" />. For more information, see <see cref="T:Microsoft.VisualBasic.FileIO.FileSystem" />.</summary>
4197       <param name="PathName">Required. A string expression that specifies a file name. <paramref name="PathName" /> can include directory or folder, and drive.</param>
4198       <param name="Attributes">Required. Constant or numeric expression, whose sum specifies file attributes.</param>
4199       <exception cref="T:System.ArgumentException">
4200         <paramref name="Attribute" /> type is invalid.</exception>
4201     </member>
4202     <member name="M:Microsoft.VisualBasic.FileSystem.SPC(System.Int16)">
4203       <summary>Used with the <see langword="Print" /> or <see langword="PrintLine" /> function to position output.</summary>
4204       <param name="Count">Required. The number of spaces to insert before displaying or printing the next expression in a list.</param>
4205       <returns>Used with the <see langword="Print" /> or <see langword="PrintLine" /> function to position output.</returns>
4206     </member>
4207     <member name="M:Microsoft.VisualBasic.FileSystem.TAB">
4208       <summary>Used with the <see langword="Print" /> or <see langword="PrintLine" /> functions to position output.</summary>
4209       <returns>Used with the <see langword="Print" /> or <see langword="PrintLine" /> functions to position output.</returns>
4210     </member>
4211     <member name="M:Microsoft.VisualBasic.FileSystem.TAB(System.Int16)">
4212       <summary>Used with the <see langword="Print" /> or <see langword="PrintLine" /> functions to position output.</summary>
4213       <param name="Column">Optional. The column number moved to before displaying or printing the next expression in a list. If omitted, <see langword="TAB" /> moves the insertion point to the start of the next print zone.</param>
4214       <returns>Used with the <see langword="Print" /> or <see langword="PrintLine" /> functions to position output.</returns>
4215     </member>
4216     <member name="M:Microsoft.VisualBasic.FileSystem.Unlock(System.Int32)">
4217       <summary>Controls access by other processes to all or part of a file opened by using the <see langword="Open" /> function. The <see langword="My" /> feature gives you better productivity and performance in file I/O operations than <see langword="Lock" /> and <see langword="Unlock" />. For more information, see <see cref="T:Microsoft.VisualBasic.FileIO.FileSystem" />.</summary>
4218       <param name="FileNumber">Required. Any valid file number.</param>
4219       <exception cref="T:System.IO.IOException">File mode is invalid.</exception>
4220     </member>
4221     <member name="M:Microsoft.VisualBasic.FileSystem.Unlock(System.Int32,System.Int64)">
4222       <summary>Controls access by other processes to all or part of a file opened by using the <see langword="Open" /> function. The <see langword="My" /> feature gives you better productivity and performance in file I/O operations than <see langword="Lock" /> and <see langword="Unlock" />. For more information, see <see cref="T:Microsoft.VisualBasic.FileIO.FileSystem" />.</summary>
4223       <param name="FileNumber">Required. Any valid file number.</param>
4224       <param name="Record">Optional. Number of the only record or byte to lock or unlock.</param>
4225       <exception cref="T:System.IO.IOException">File mode is invalid.</exception>
4226     </member>
4227     <member name="M:Microsoft.VisualBasic.FileSystem.Unlock(System.Int32,System.Int64,System.Int64)">
4228       <summary>Controls access by other processes to all or part of a file opened by using the <see langword="Open" /> function. The <see langword="My" /> feature gives you better productivity and performance in file I/O operations than <see langword="Lock" /> and <see langword="Unlock" />. For more information, see <see cref="T:Microsoft.VisualBasic.FileIO.FileSystem" />.</summary>
4229       <param name="FileNumber">Required. Any valid file number.</param>
4230       <param name="FromRecord">Optional. Number of the first record or byte to lock or unlock.</param>
4231       <param name="ToRecord">Optional. Number of the last record or byte to lock or unlock.</param>
4232       <exception cref="T:System.IO.IOException">File mode is invalid.</exception>
4233     </member>
4234     <member name="M:Microsoft.VisualBasic.FileSystem.Write(System.Int32,System.Object[])">
4235       <summary>Writes data to a sequential file. Data written with <see langword="Write" /> is usually read from a file by using <see langword="Input" />.</summary>
4236       <param name="FileNumber">Required. An <see langword="Integer" /> expression that contains any valid file number.</param>
4237       <param name="Output">Optional. One or more comma-delimited expressions to write to a file.</param>
4238       <exception cref="T:System.IO.IOException">File mode is invalid.</exception>
4239     </member>
4240     <member name="M:Microsoft.VisualBasic.FileSystem.WriteLine(System.Int32,System.Object[])">
4241       <summary>Writes data to a sequential file. Data written with <see langword="Write" /> is usually read from a file by using <see langword="Input" />.</summary>
4242       <param name="FileNumber">Required. An <see langword="Integer" /> expression that contains any valid file number.</param>
4243       <param name="Output">Optional. One or more comma-delimited expressions to write to a file.</param>
4244     </member>
4245     <member name="T:Microsoft.VisualBasic.Financial">
4246       <summary>The <see langword="Financial" /> module contains procedures used to perform financial operations.</summary>
4247     </member>
4248     <member name="M:Microsoft.VisualBasic.Financial.DDB(System.Double,System.Double,System.Double,System.Double,System.Double)">
4249       <summary>Returns a value specifying the depreciation of an asset for a specific time period using the double-declining balance method or some other method you specify.</summary>
4250       <param name="Cost">Required. The initial cost of the asset.</param>
4251       <param name="Salvage">Required. The value of the asset at the end of its useful life.</param>
4252       <param name="Life">Required. The length of useful life of the asset.</param>
4253       <param name="Period">Required. The period for which asset depreciation is calculated.</param>
4254       <param name="Factor">Optional. The rate at which the balance declines. If omitted, 2 (double-declining method) is assumed.</param>
4255       <exception cref="T:System.ArgumentException">
4256         <paramref name="Factor" /> &lt;= 0, <paramref name="Salvage" /> &lt; 0, <paramref name="Period" /> &lt;= 0, or <paramref name="Period" /> &gt; <paramref name="Life" />.</exception>
4257       <returns>The depreciation of an asset for a specific time period using the double-declining balance method or some other method you specify.</returns>
4258     </member>
4259     <member name="M:Microsoft.VisualBasic.Financial.FV(System.Double,System.Double,System.Double,System.Double,Microsoft.VisualBasic.DueDate)">
4260       <summary>Returns a value specifying the future value of an annuity based on periodic, fixed payments and a fixed interest rate.</summary>
4261       <param name="Rate">Required. The interest rate per period. For example, if you get a car loan at an annual percentage rate (APR) of 10 percent and make monthly payments, the rate per period is 0.1/12, or 0.0083.</param>
4262       <param name="NPer">Required. The total number of payment periods in the annuity. For example, if you make monthly payments on a four-year car loan, your loan has a total of 4 x 12 (or 48) payment periods.</param>
4263       <param name="Pmt">Required. The payment to be made each period. Payments usually contain principal and interest that doesn't change over the life of the annuity.</param>
4264       <param name="PV">Optional. The present value (or lump sum) of a series of future payments. For example, when you borrow money to buy a car, the loan amount is the present value to the lender of the monthly car payments you will make. If omitted, 0 is assumed.</param>
4265       <param name="Due">Optional. Object of type <see cref="T:Microsoft.VisualBasic.DueDate" /> that specifies when payments are due. This argument must be either <see langword="DueDate.EndOfPeriod" /> if payments are due at the end of the payment period, or <see langword="DueDate.BegOfPeriod" /> if payments are due at the beginning of the period. If omitted, <see langword="DueDate.EndOfPeriod" /> is assumed.</param>
4266       <returns>The future value of an annuity based on periodic, fixed payments and a fixed interest rate.</returns>
4267     </member>
4268     <member name="M:Microsoft.VisualBasic.Financial.IPmt(System.Double,System.Double,System.Double,System.Double,System.Double,Microsoft.VisualBasic.DueDate)">
4269       <summary>Returns a value specifying the interest payment for a given period of an annuity based on periodic, fixed payments and a fixed interest rate.</summary>
4270       <param name="Rate">Required. The interest rate per period. For example, if you get a car loan at an annual percentage rate (APR) of 10 percent and make monthly payments, the rate per period is 0.1/12, or 0.0083.</param>
4271       <param name="Per">Required. The payment period in the range 1 through <paramref name="NPer" />.</param>
4272       <param name="NPer">Required. The total number of payment periods in the annuity. For example, if you make monthly payments on a four-year car loan, your loan has a total of 4 x 12 (or 48) payment periods.</param>
4273       <param name="PV">Required. The present value, or value today, of a series of future payments or receipts. For example, when you borrow money to buy a car, the loan amount is the present value to the lender of the monthly car payments you will make.</param>
4274       <param name="FV">Optional. The future value or cash balance you want after you've made the final payment. For example, the future value of a loan is $0 because that's its value after the final payment. However, if you want to save $50,000 over 18 years for your child's education, then $50,000 is the future value. If omitted, 0 is assumed.</param>
4275       <param name="Due">Optional. Object of type <see cref="T:Microsoft.VisualBasic.DueDate" /> that specifies when payments are due. This argument must be either <c>DueDate.EndOfPeriod</c> if payments are due at the end of the payment period, or <c>DueDate.BegOfPeriod</c> if payments are due at the beginning of the period. If omitted, <c>DueDate.EndOfPeriod</c> is assumed.</param>
4276       <exception cref="T:System.ArgumentException">
4277         <paramref name="Per" /> &lt;= 0 or <paramref name="Per" /> &gt; <paramref name="NPer" /></exception>
4278       <returns>The interest payment for a given period of an annuity based on periodic, fixed payments and a fixed interest rate.</returns>
4279     </member>
4280     <member name="M:Microsoft.VisualBasic.Financial.IRR(System.Double[]@,System.Double)">
4281       <summary>Returns a value specifying the internal rate of return for a series of periodic cash flows (payments and receipts).</summary>
4282       <param name="ValueArray">Required. Array of <see cref="T:System.Double" /> specifying cash flow values. The array must contain at least one negative value (a payment) and one positive value (a receipt).</param>
4283       <param name="Guess">Optional. Object specifying value you estimate will be returned by <see langword="IRR" />. If omitted, <paramref name="Guess" /> is 0.1 (10 percent).</param>
4284       <exception cref="T:System.ArgumentException">Array argument values are invalid or <paramref name="Guess" /> &lt;= -1.</exception>
4285       <returns>The internal rate of return for a series of periodic cash flows (payments and receipts).</returns>
4286     </member>
4287     <member name="M:Microsoft.VisualBasic.Financial.MIRR(System.Double[]@,System.Double,System.Double)">
4288       <summary>Returns a value specifying the modified internal rate of return for a series of periodic cash flows (payments and receipts).</summary>
4289       <param name="ValueArray">Required. Array of <see cref="T:System.Double" /> specifying cash-flow values. The array must contain at least one negative value (a payment) and one positive value (a receipt).</param>
4290       <param name="FinanceRate">Required. The interest rate paid as the cost of financing.</param>
4291       <param name="ReinvestRate">Required. The interest rate received on gains from cash reinvestment.</param>
4292       <exception cref="T:System.ArgumentException">Rank of <paramref name="ValueArray" /> does not equal 1, <paramref name="FinanceRate" /> = -1, or <paramref name="ReinvestRate" /> = -1</exception>
4293       <exception cref="T:System.DivideByZeroException">Division by zero has occurred.</exception>
4294       <returns>The modified internal rate of return for a series of periodic cash flows (payments and receipts).</returns>
4295     </member>
4296     <member name="M:Microsoft.VisualBasic.Financial.NPer(System.Double,System.Double,System.Double,System.Double,Microsoft.VisualBasic.DueDate)">
4297       <summary>Returns a value specifying the number of periods for an annuity based on periodic fixed payments and a fixed interest rate.</summary>
4298       <param name="Rate">Required. The interest rate per period. For example, if you get a car loan at an annual percentage rate (APR) of 10 percent and make monthly payments, the rate per period is 0.1/12, or 0.0083.</param>
4299       <param name="Pmt">Required. The payment to be made each period. Payments usually contain principal and interest that does not change over the life of the annuity.</param>
4300       <param name="PV">Required. The present value, or value today, of a series of future payments or receipts. For example, when you borrow money to buy a car, the loan amount is the present value to the lender of the monthly car payments you will make.</param>
4301       <param name="FV">Optional. The future value or cash balance you want after you have made the final payment. For example, the future value of a loan is $0 because that is its value after the final payment. However, if you want to save $50,000 over 18 years for your child's education, then $50,000 is the future value. If omitted, 0 is assumed.</param>
4302       <param name="Due">Optional. Object of type <see cref="T:Microsoft.VisualBasic.DueDate" /> that specifies when payments are due. This argument must be either <c>DueDate.EndOfPeriod</c> if payments are due at the end of the payment period, or <c>DueDate.BegOfPeriod</c> if payments are due at the beginning of the period. If omitted, <c>DueDate.EndOfPeriod</c> is assumed.</param>
4303       <exception cref="T:System.ArgumentException">
4304         <paramref name="Rate" /> = 0 and <paramref name="Pmt" /> = 0</exception>
4305       <returns>The number of periods for an annuity based on periodic fixed payments and a fixed interest rate.</returns>
4306     </member>
4307     <member name="M:Microsoft.VisualBasic.Financial.NPV(System.Double,System.Double[]@)">
4308       <summary>Returns a value specifying the net present value of an investment based on a series of periodic cash flows (payments and receipts) and a discount rate.</summary>
4309       <param name="Rate">Required. The discount rate over the length of the period, expressed as a decimal.</param>
4310       <param name="ValueArray">Required. Array of <see cref="T:System.Double" /> specifying cash flow values. The array must contain at least one negative value (a payment) and one positive value (a receipt).</param>
4311       <exception cref="T:System.ArgumentException">
4312         <paramref name="ValueArray" /> is <see langword="Nothing" />, rank of <paramref name="ValueArray" /> &lt;&gt; 1, or <paramref name="Rate" /> = -1</exception>
4313       <returns>The net present value of an investment based on a series of periodic cash flows (payments and receipts) and a discount rate.</returns>
4314     </member>
4315     <member name="M:Microsoft.VisualBasic.Financial.Pmt(System.Double,System.Double,System.Double,System.Double,Microsoft.VisualBasic.DueDate)">
4316       <summary>Returns a value specifying the payment for an annuity based on periodic, fixed payments and a fixed interest rate.</summary>
4317       <param name="Rate">Required. The interest rate per period. For example, if you get a car loan at an annual percentage rate (APR) of 10 percent and make monthly payments, the rate per period is 0.1/12, or 0.0083.</param>
4318       <param name="NPer">Required. The total number of payment periods in the annuity. For example, if you make monthly payments on a four-year car loan, your loan has a total of 4 × 12 (or 48) payment periods.</param>
4319       <param name="PV">Required. The present value (or lump sum) that a series of payments to be paid in the future is worth now. For example, when you borrow money to buy a car, the loan amount is the present value to the lender of the monthly car payments you will make.</param>
4320       <param name="FV">Optional. The future value or cash balance you want after you have made the final payment. For example, the future value of a loan is $0 because that is its value after the final payment. However, if you want to save $50,000 during 18 years for your child's education, then $50,000 is the future value. If omitted, 0 is assumed.</param>
4321       <param name="Due">Optional. Object of type <see cref="T:Microsoft.VisualBasic.DueDate" /> that specifies when payments are due. This argument must be either <c>DueDate.EndOfPeriod</c> if payments are due at the end of the payment period, or <c>DueDate.BegOfPeriod</c> if payments are due at the beginning of the period. If omitted, <c>DueDate.EndOfPeriod</c> is assumed.</param>
4322       <exception cref="T:System.ArgumentException">
4323         <paramref name="NPer" /> = 0.</exception>
4324       <returns>The payment for an annuity based on periodic, fixed payments and a fixed interest rate.</returns>
4325     </member>
4326     <member name="M:Microsoft.VisualBasic.Financial.PPmt(System.Double,System.Double,System.Double,System.Double,System.Double,Microsoft.VisualBasic.DueDate)">
4327       <summary>Returns a value specifying the principal payment for a given period of an annuity based on periodic fixed payments and a fixed interest rate.</summary>
4328       <param name="Rate">Required. The interest rate per period. For example, if you get a car loan at an annual percentage rate (APR) of 10 percent and make monthly payments, the rate per period is 0.1/12, or 0.0083.</param>
4329       <param name="Per">Required. The payment period in the range 1 through <paramref name="NPer" />.</param>
4330       <param name="NPer">Required. The total number of payment periods in the annuity. For example, if you make monthly payments on a four-year car loan, your loan has a total of 4 x 12 (or 48) payment periods.</param>
4331       <param name="PV">Required. The current value of a series of future payments or receipts. For example, when you borrow money to buy a car, the loan amount is the present value to the lender of the monthly car payments you will make.</param>
4332       <param name="FV">Optional. The future value or cash balance you want after you have made the final payment. For example, the future value of a loan is $0 because that is its value after the final payment. However, if you want to save $50,000 over 18 years for your child's education, then $50,000 is the future value. If omitted, 0 is assumed.</param>
4333       <param name="Due">Optional. Object of type <see cref="T:Microsoft.VisualBasic.DueDate" /> that specifies when payments are due. This argument must be either <c>DueDate.EndOfPeriod</c> if payments are due at the end of the payment period, or <c>DueDate.BegOfPeriod</c> if payments are due at the beginning of the period. If omitted, <c>DueDate.EndOfPeriod</c> is assumed.</param>
4334       <exception cref="T:System.ArgumentException">
4335         <paramref name="Per" /> &lt;=0 or <paramref name="Per" /> &gt; <paramref name="NPer" />.</exception>
4336       <returns>The principal payment for a given period of an annuity based on periodic fixed payments and a fixed interest rate.</returns>
4337     </member>
4338     <member name="M:Microsoft.VisualBasic.Financial.PV(System.Double,System.Double,System.Double,System.Double,Microsoft.VisualBasic.DueDate)">
4339       <summary>Returns a value specifying the present value of an annuity based on periodic, fixed payments to be paid in the future and a fixed interest rate.</summary>
4340       <param name="Rate">Required. The interest rate per period. For example, if you get a car loan at an annual percentage rate (APR) of 10 percent and make monthly payments, the rate per period is 0.1/12, or 0.0083.</param>
4341       <param name="NPer">Required. The total number of payment periods in the annuity. For example, if you make monthly payments on a four-year car loan, your loan has 4 x 12 (or 48) payment periods.</param>
4342       <param name="Pmt">Required. The payment to be made each period. Payments usually contain principal and interest that does not change during the life of the annuity.</param>
4343       <param name="FV">Optional. The future value or cash balance you want after you make the final payment. For example, the future value of a loan is $0 because that is its value after the final payment. However, if you want to save $50,000 over 18 years for your child's education, then $50,000 is the future value. If omitted, 0 is assumed.</param>
4344       <param name="Due">Optional. Object of type <see cref="T:Microsoft.VisualBasic.DueDate" /> that specifies when payments are due. This argument must be either <c>DueDate.EndOfPeriod</c> if payments are due at the end of the payment period, or <c>DueDate.BegOfPeriod</c> if payments are due at the beginning of the period. If omitted, <c>DueDate.EndOfPeriod</c> is assumed.</param>
4345       <returns>The present value of an annuity based on periodic, fixed payments to be paid in the future and a fixed interest rate.</returns>
4346     </member>
4347     <member name="M:Microsoft.VisualBasic.Financial.Rate(System.Double,System.Double,System.Double,System.Double,Microsoft.VisualBasic.DueDate,System.Double)">
4348       <summary>Returns a value specifying the interest rate per period for an annuity.</summary>
4349       <param name="NPer">Required. The total number of payment periods in the annuity. For example, if you make monthly payments on a four-year car loan, your loan has a total of 4 * 12 (or 48) payment periods.</param>
4350       <param name="Pmt">Required. The payment to be made each period. Payments usually contain principal and interest that doesn't change over the life of the annuity.</param>
4351       <param name="PV">Required. The present value, or value today, of a series of future payments or receipts. For example, when you borrow money to buy a car, the loan amount is the present value to the lender of the monthly car payments you will make.</param>
4352       <param name="FV">Optional. The future value or cash balance you want after you make the final payment. For example, the future value of a loan is $0 because that is its value after the final payment. However, if you want to save $50,000 over 18 years for your child's education, then $50,000 is the future value. If omitted, 0 is assumed.</param>
4353       <param name="Due">Optional. Object of type <see cref="T:Microsoft.VisualBasic.DueDate" /> that specifies when payments are due. This argument must be either <c>DueDate.EndOfPeriod</c> if payments are due at the end of the payment period, or <c>DueDate.BegOfPeriod</c> if payments are due at the beginning of the period. If omitted, <c>DueDate.EndOfPeriod</c> is assumed.</param>
4354       <param name="Guess">Optional. The value you estimate is returned by <see langword="Rate" />. If omitted, <paramref name="Guess" /> is 0.1 (10 percent).</param>
4355       <exception cref="T:System.ArgumentException">
4356         <paramref name="NPer" /> &lt;= 0.</exception>
4357       <returns>The interest rate per period for an annuity.</returns>
4358     </member>
4359     <member name="M:Microsoft.VisualBasic.Financial.SLN(System.Double,System.Double,System.Double)">
4360       <summary>Returns a value specifying the straight-line depreciation of an asset for a single period.</summary>
4361       <param name="Cost">Required. The initial cost of the asset.</param>
4362       <param name="Salvage">Required. The value of the asset at the end of its useful life.</param>
4363       <param name="Life">Required. The length of the useful life of the asset.</param>
4364       <exception cref="T:System.ArgumentException">
4365         <paramref name="Life" /> = 0.</exception>
4366       <returns>The straight-line depreciation of an asset for a single period.</returns>
4367     </member>
4368     <member name="M:Microsoft.VisualBasic.Financial.SYD(System.Double,System.Double,System.Double,System.Double)">
4369       <summary>Returns a value specifying the sum-of-years digits depreciation of an asset for a specified period.</summary>
4370       <param name="Cost">Required. The initial cost of the asset.</param>
4371       <param name="Salvage">Required. The value of the asset at the end of its useful life.</param>
4372       <param name="Life">Required. The length of the useful life of the asset.</param>
4373       <param name="Period">Required. The period for which asset depreciation is calculated.</param>
4374       <exception cref="T:System.ArgumentException">
4375         <paramref name="Salvage" /> &lt; 0, <paramref name="Period" /> &gt; <paramref name="Life" />, or <paramref name="Period" /> &lt;=0.</exception>
4376       <returns>The sum-of-years digits depreciation of an asset for a specified period.</returns>
4377     </member>
4378     <member name="T:Microsoft.VisualBasic.FirstDayOfWeek">
4379       <summary>Indicates the first day of the week to use when calling date-related functions.</summary>
4380     </member>
4381     <member name="F:Microsoft.VisualBasic.FirstDayOfWeek.Friday">
4382       <summary>Friday This member is equivalent to the Visual Basic constant <see langword="vbFriday" />.</summary>
4383     </member>
4384     <member name="F:Microsoft.VisualBasic.FirstDayOfWeek.Monday">
4385       <summary>Monday This member is equivalent to the Visual Basic constant <see langword="vbMonday" />.</summary>
4386     </member>
4387     <member name="F:Microsoft.VisualBasic.FirstDayOfWeek.Saturday">
4388       <summary>Saturday This member is equivalent to the Visual Basic constant <see langword="vbSaturday" />.</summary>
4389     </member>
4390     <member name="F:Microsoft.VisualBasic.FirstDayOfWeek.Sunday">
4391       <summary>Sunday (default) This member is equivalent to the Visual Basic constant <see langword="vbSunday" />.</summary>
4392     </member>
4393     <member name="F:Microsoft.VisualBasic.FirstDayOfWeek.System">
4394       <summary>The first day of the week as specified in your system settings This member is equivalent to the Visual Basic constant <see langword="vbUseSystemDayOfWeek" />.</summary>
4395     </member>
4396     <member name="F:Microsoft.VisualBasic.FirstDayOfWeek.Thursday">
4397       <summary>Thursday This member is equivalent to the Visual Basic constant <see langword="vbThursday" />.</summary>
4398     </member>
4399     <member name="F:Microsoft.VisualBasic.FirstDayOfWeek.Tuesday">
4400       <summary>Tuesday This member is equivalent to the Visual Basic constant <see langword="vbTuesday" />.</summary>
4401     </member>
4402     <member name="F:Microsoft.VisualBasic.FirstDayOfWeek.Wednesday">
4403       <summary>Wednesday This member is equivalent to the Visual Basic constant <see langword="vbWednesday" />.</summary>
4404     </member>
4405     <member name="T:Microsoft.VisualBasic.FirstWeekOfYear">
4406       <summary>Indicates the first week of the year to use when calling date-related functions.</summary>
4407     </member>
4408     <member name="F:Microsoft.VisualBasic.FirstWeekOfYear.FirstFourDays">
4409       <summary>The first week that has at least four days in the new year. This member is equivalent to the Visual Basic constant <see langword="vbFirstFourDays" />.</summary>
4410     </member>
4411     <member name="F:Microsoft.VisualBasic.FirstWeekOfYear.FirstFullWeek">
4412       <summary>The first full week of the year. This member is equivalent to the Visual Basic constant <see langword="vbFirstFullWeek" />.</summary>
4413     </member>
4414     <member name="F:Microsoft.VisualBasic.FirstWeekOfYear.Jan1">
4415       <summary>The week in which January 1 occurs (default). This member is equivalent to the Visual Basic constant <see langword="vbFirstJan1" />.</summary>
4416     </member>
4417     <member name="F:Microsoft.VisualBasic.FirstWeekOfYear.System">
4418       <summary>The week specified in your system settings as the first week of the year. This member is equivalent to the Visual Basic constant <see langword="vbUseSystem" />.</summary>
4419     </member>
4420     <member name="T:Microsoft.VisualBasic.HideModuleNameAttribute">
4421       <summary>The <see langword="HideModuleNameAttribute" /> attribute, when applied to a module, allows the module members to be accessed using only the qualification needed for the module.</summary>
4422     </member>
4423     <member name="M:Microsoft.VisualBasic.HideModuleNameAttribute.#ctor">
4424       <summary>Initializes a new instance of the <see cref="T:Microsoft.VisualBasic.HideModuleNameAttribute" /> attribute.</summary>
4425     </member>
4426     <member name="T:Microsoft.VisualBasic.Information">
4427       <summary>The <see langword="Information" /> module contains the procedures used to return, test for, or verify information.</summary>
4428     </member>
4429     <member name="M:Microsoft.VisualBasic.Information.Erl">
4430       <summary>Returns an integer indicating the line number of the last executed statement. Read-only.</summary>
4431       <returns>Returns an integer indicating the line number of the last executed statement. Read-only.</returns>
4432     </member>
4433     <member name="M:Microsoft.VisualBasic.Information.Err">
4434       <summary>Contains information about run-time errors.</summary>
4435       <returns>Contains information about run-time errors.</returns>
4436     </member>
4437     <member name="M:Microsoft.VisualBasic.Information.IsArray(System.Object)">
4438       <summary>Returns a <see langword="Boolean" /> value indicating whether a variable points to an array.</summary>
4439       <param name="VarName">Required. <see langword="Object" /> variable.</param>
4440       <returns>Returns a <see langword="Boolean" /> value indicating whether a variable points to an array.</returns>
4441     </member>
4442     <member name="M:Microsoft.VisualBasic.Information.IsDate(System.Object)">
4443       <summary>Returns a <see langword="Boolean" /> value indicating whether an expression represents a valid <see langword="Date" /> value.</summary>
4444       <param name="Expression">Required. <see langword="Object" /> expression.</param>
4445       <returns>Returns a <see langword="Boolean" /> value indicating whether an expression represents a valid <see langword="Date" /> value.</returns>
4446     </member>
4447     <member name="M:Microsoft.VisualBasic.Information.IsDBNull(System.Object)">
4448       <summary>Returns a <see langword="Boolean" /> value indicating whether an expression evaluates to the <see cref="T:System.DBNull" /> class.</summary>
4449       <param name="Expression">Required. <see langword="Object" /> expression.</param>
4450       <returns>Returns a <see langword="Boolean" /> value indicating whether an expression evaluates to the <see cref="T:System.DBNull" /> class.</returns>
4451     </member>
4452     <member name="M:Microsoft.VisualBasic.Information.IsError(System.Object)">
4453       <summary>Returns a <see langword="Boolean" /> value indicating whether an expression is an exception type.</summary>
4454       <param name="Expression">Required. <see langword="Object" /> expression.</param>
4455       <returns>Returns a <see langword="Boolean" /> value indicating whether an expression is an exception type.</returns>
4456     </member>
4457     <member name="M:Microsoft.VisualBasic.Information.IsNothing(System.Object)">
4458       <summary>Returns a <see langword="Boolean" /> value indicating whether an expression has no object assigned to it.</summary>
4459       <param name="Expression">Required. <see langword="Object" /> expression.</param>
4460       <returns>Returns a <see langword="Boolean" /> value indicating whether an expression has no object assigned to it.</returns>
4461     </member>
4462     <member name="M:Microsoft.VisualBasic.Information.IsNumeric(System.Object)">
4463       <summary>Returns a <see langword="Boolean" /> value indicating whether an expression can be evaluated as a number.</summary>
4464       <param name="Expression">Required. <see langword="Object" /> expression.</param>
4465       <returns>Returns a <see langword="Boolean" /> value indicating whether an expression can be evaluated as a number.</returns>
4466     </member>
4467     <member name="M:Microsoft.VisualBasic.Information.IsReference(System.Object)">
4468       <summary>Returns a <see langword="Boolean" /> value indicating whether an expression evaluates to a reference type.</summary>
4469       <param name="Expression">Required. <see langword="Object" /> expression.</param>
4470       <returns>Returns a <see langword="Boolean" /> value indicating whether an expression evaluates to a reference type.</returns>
4471     </member>
4472     <member name="M:Microsoft.VisualBasic.Information.LBound(System.Array,System.Int32)">
4473       <summary>Returns the lowest available subscript for the indicated dimension of an array.</summary>
4474       <param name="Array">Required. Array of any data type. The array in which you want to find the lowest possible subscript of a dimension.</param>
4475       <param name="Rank">Optional. <see langword="Integer" />. The dimension for which the lowest possible subscript is to be returned. Use 1 for the first dimension, 2 for the second, and so on. If <paramref name="Rank" /> is omitted, 1 is assumed.</param>
4476       <exception cref="T:System.ArgumentNullException">
4477         <paramref name="Array" /> is <see langword="Nothing" />.</exception>
4478       <exception cref="T:System.RankException">
4479         <paramref name="Rank" /> less than 1, or <paramref name="Rank" /> is greater than the rank of <paramref name="Array" />.</exception>
4480       <returns>
4481         <see langword="Integer" />. The lowest value the subscript for the specified dimension can contain. <see langword="LBound" /> always returns 0 as long as <paramref name="Array" /> has been initialized, even if it has no elements, for example if it is a zero-length string. If <paramref name="Array" /> is <see langword="Nothing" />, <see langword="LBound" /> throws an <see cref="T:System.ArgumentNullException" />.</returns>
4482     </member>
4483     <member name="M:Microsoft.VisualBasic.Information.QBColor(System.Int32)">
4484       <summary>Returns an <see langword="Integer" /> value representing the RGB color code corresponding to the specified color number.</summary>
4485       <param name="Color">Required. A whole number in the range 0-15.</param>
4486       <exception cref="T:System.ArgumentException">
4487         <paramref name="Color" /> is outside of range 0 to 15, inclusive.</exception>
4488       <returns>Returns an <see langword="Integer" /> value representing the RGB color code corresponding to the specified color number.</returns>
4489     </member>
4490     <member name="M:Microsoft.VisualBasic.Information.RGB(System.Int32,System.Int32,System.Int32)">
4491       <summary>Returns an <see langword="Integer" /> value representing an RGB color value from a set of red, green and blue color components.</summary>
4492       <param name="Red">Required. <see langword="Integer" /> in the range 0-255, inclusive, that represents the intensity of the red component of the color.</param>
4493       <param name="Green">Required. <see langword="Integer" /> in the range 0-255, inclusive, that represents the intensity of the green component of the color.</param>
4494       <param name="Blue">Required. <see langword="Integer" /> in the range 0-255, inclusive, that represents the intensity of the blue component of the color.</param>
4495       <exception cref="T:System.ArgumentException">
4496         <paramref name="Green" />, <paramref name="Blue" />, or <paramref name="Red" /> is outside of range 0 to 255, inclusive.</exception>
4497       <returns>Returns an <see langword="Integer" /> value representing an RGB color value from a set of red, green and blue color components.</returns>
4498     </member>
4499     <member name="M:Microsoft.VisualBasic.Information.SystemTypeName(System.String)">
4500       <summary>Returns a <see langword="String" /> value containing the system data type name of a variable.</summary>
4501       <param name="VbName">Required. A <see langword="String" /> variable containing a Visual Basic type name.</param>
4502       <returns>Returns a <see langword="String" /> value containing the system data type name of a variable.</returns>
4503     </member>
4504     <member name="M:Microsoft.VisualBasic.Information.TypeName(System.Object)">
4505       <summary>Returns a <see langword="String" /> value containing data-type information about a variable.</summary>
4506       <param name="VarName">Required. <see langword="Object" /> variable. If <see langword="Option Strict" /> is <see langword="Off" />, you can pass a variable of any data type except a structure.</param>
4507       <returns>Returns a <see langword="String" /> value containing data-type information about a variable.</returns>
4508     </member>
4509     <member name="M:Microsoft.VisualBasic.Information.UBound(System.Array,System.Int32)">
4510       <summary>Returns the highest available subscript for the indicated dimension of an array.</summary>
4511       <param name="Array">Required. Array of any data type. The array in which you want to find the highest possible subscript of a dimension.</param>
4512       <param name="Rank">Optional. <see langword="Integer" />. The dimension for which the highest possible subscript is to be returned. Use 1 for the first dimension, 2 for the second, and so on. If <paramref name="Rank" /> is omitted, 1 is assumed.</param>
4513       <exception cref="T:System.ArgumentNullException">
4514         <paramref name="Array" /> is <see langword="Nothing" />.</exception>
4515       <exception cref="T:System.RankException">
4516         <paramref name="Rank" /> is less than 1, or <paramref name="Rank" /> is greater than the rank of <paramref name="Array" />.</exception>
4517       <returns>
4518         <see langword="Integer" />. The highest value the subscript for the specified dimension can contain. If <paramref name="Array" /> has only one element, <see langword="UBound" /> returns 0. If <paramref name="Array" /> has no elements, for example if it is a zero-length string, <see langword="UBound" /> returns -1.</returns>
4519     </member>
4520     <member name="M:Microsoft.VisualBasic.Information.VarType(System.Object)">
4521       <summary>Returns an <see langword="Integer" /> value containing the data type classification of a variable.</summary>
4522       <param name="VarName">Required. <see langword="Object" /> variable. If <see langword="Option Strict" /> is <see langword="Off" />, you can pass a variable of any data type except a structure.</param>
4523       <returns>Returns an <see langword="Integer" /> value containing the data type classification of a variable.</returns>
4524     </member>
4525     <member name="M:Microsoft.VisualBasic.Information.VbTypeName(System.String)">
4526       <summary>Returns a <see langword="String" /> value containing the Visual Basic data type name of a variable.</summary>
4527       <param name="UrtName">Required. <see langword="String" /> variable containing a type name used by the common language runtime.</param>
4528       <returns>Returns a <see langword="String" /> value containing the Visual Basic data type name of a variable.</returns>
4529     </member>
4530     <member name="T:Microsoft.VisualBasic.Interaction">
4531       <summary>The <see langword="Interaction" /> module contains procedures used to interact with objects, applications, and systems.</summary>
4532     </member>
4533     <member name="M:Microsoft.VisualBasic.Interaction.AppActivate(System.Int32)">
4534       <summary>Activates an application that is already running.</summary>
4535       <param name="ProcessId">
4536         <see langword="Integer" /> specifying the Win32 process ID number assigned to this process. You can use the ID returned by the <see cref="M:Microsoft.VisualBasic.Interaction.Shell(System.String,Microsoft.VisualBasic.AppWinStyle,System.Boolean,System.Int32)" />, provided it is not zero.</param>
4537     </member>
4538     <member name="M:Microsoft.VisualBasic.Interaction.AppActivate(System.String)">
4539       <summary>Activates an application that is already running.</summary>
4540       <param name="Title">
4541         <see langword="String" /> expression specifying the title in the title bar of the application you want to activate. You can use the title assigned to the application when it was launched.</param>
4542     </member>
4543     <member name="M:Microsoft.VisualBasic.Interaction.Beep">
4544       <summary>Sounds a tone through the computer's speaker.</summary>
4545     </member>
4546     <member name="M:Microsoft.VisualBasic.Interaction.CallByName(System.Object,System.String,Microsoft.VisualBasic.CallType,System.Object[])">
4547       <summary>Executes a method on an object, or sets or returns a property on an object.</summary>
4548       <param name="ObjectRef">Required. <see langword="Object" />. A pointer to the object exposing the property or method.</param>
4549       <param name="ProcName">Required. <see langword="String" />. A string expression containing the name of the property or method on the object.</param>
4550       <param name="UseCallType">Required. An enumeration member of type <see cref="T:Microsoft.VisualBasic.CallType" /> representing the type of procedure being called. The value of <see langword="CallType" /> can be <see langword="Method" />, <see langword="Get" />, or <see langword="Set" />.</param>
4551       <param name="Args">Optional. <see langword="ParamArray" />. A parameter array containing the arguments to be passed to the property or method being called.</param>
4552       <exception cref="T:System.ArgumentException">Invalid <paramref name="UseCallType" /> value; must be <see langword="Method" />, <see langword="Get" />, or <see langword="Set" />.</exception>
4553       <returns>Executes a method on an object, or sets or returns a property on an object.</returns>
4554     </member>
4555     <member name="M:Microsoft.VisualBasic.Interaction.Choose(System.Double,System.Object[])">
4556       <summary>Selects and returns a value from a list of arguments.</summary>
4557       <param name="Index">Required. <see cref="T:System.Double" />. Numeric expression that results in a value between 1 and the number of elements passed in the <paramref name="Choice" /> argument.</param>
4558       <param name="Choice">Required. <see langword="Object" /> parameter array. You can supply either a single variable or an expression that evaluates to the <see langword="Object" /> data type, to a list of <see langword="Object" /> variables or expressions separated by commas, or to a single-dimensional array of <see langword="Object" /> elements.</param>
4559       <returns>Selects and returns a value from a list of arguments.</returns>
4560     </member>
4561     <member name="M:Microsoft.VisualBasic.Interaction.Command">
4562       <summary>Returns the argument portion of the command line used to start Visual Basic or an executable program developed with Visual Basic. The <see langword="My" /> feature provides greater productivity and performance than the <see langword="Command" /> function. For more information, see <see cref="P:Microsoft.VisualBasic.ApplicationServices.ConsoleApplicationBase.CommandLineArgs" />.</summary>
4563       <returns>The argument portion of the command line used to start Visual Basic or an executable program developed with Visual Basic.  
4564   
4565  The <see langword="My" /> feature provides greater productivity and performance than the <see langword="Command" /> function. For more information, see <see cref="P:Microsoft.VisualBasic.ApplicationServices.ConsoleApplicationBase.CommandLineArgs" />.</returns>
4566     </member>
4567     <member name="M:Microsoft.VisualBasic.Interaction.CreateObject(System.String,System.String)">
4568       <summary>Creates and returns a reference to a COM object. <see langword="CreateObject" /> cannot be used to create instances of classes in Visual Basic unless those classes are explicitly exposed as COM components.</summary>
4569       <param name="ProgId">Required. <see langword="String" />. The program ID of the object to create.</param>
4570       <param name="ServerName">Optional. <see langword="String" />. The name of the network server where the object will be created. If <paramref name="ServerName" /> is an empty string (""), the local computer is used.</param>
4571       <exception cref="T:System.Exception">Server is unavailable</exception>
4572       <exception cref="T:System.IO.FileNotFoundException">No object of the specified type exists.</exception>
4573       <returns>Creates and returns a reference to a COM object. <see langword="CreateObject" /> cannot be used to create instances of classes in Visual Basic unless those classes are explicitly exposed as COM components.</returns>
4574     </member>
4575     <member name="M:Microsoft.VisualBasic.Interaction.DeleteSetting(System.String,System.String,System.String)">
4576       <summary>Deletes a section or key setting from an application's entry in the Windows registry. The <see langword="My" /> feature gives you greater productivity and performance in registry operations than the <see langword="DeleteSetting" /> function. For more information, see <see cref="P:Microsoft.VisualBasic.Devices.ServerComputer.Registry" /> .</summary>
4577       <param name="AppName">Required. <see langword="String" /> expression containing the name of the application or project to which the section or key setting applies.</param>
4578       <param name="Section">Required. <see langword="String" /> expression containing the name of the section from which the key setting is being deleted. If only <paramref name="AppName" /> and <paramref name="Section" /> are provided, the specified section is deleted along with all related key settings.</param>
4579       <param name="Key">Optional. <see langword="String" /> expression containing the name of the key setting being deleted.</param>
4580       <exception cref="T:System.ArgumentException">User is not logged in.</exception>
4581     </member>
4582     <member name="M:Microsoft.VisualBasic.Interaction.Environ(System.Int32)">
4583       <summary>Returns the string associated with an operating-system environment variable.</summary>
4584       <param name="Expression">Required. Expression that evaluates either a string containing the name of an environment variable, or an integer corresponding to the numeric order of an environment string in the environment-string table.</param>
4585       <exception cref="T:System.ArgumentException">
4586         <paramref name="Expression" /> is missing.</exception>
4587       <returns>The string associated with an operating-system environment variable.</returns>
4588     </member>
4589     <member name="M:Microsoft.VisualBasic.Interaction.Environ(System.String)">
4590       <summary>Returns the string associated with an operating-system environment variable.</summary>
4591       <param name="Expression">Required. Expression that evaluates either a string containing the name of an environment variable, or an integer corresponding to the numeric order of an environment string in the environment-string table.</param>
4592       <exception cref="T:System.ArgumentException">
4593         <paramref name="Expression" /> is missing.</exception>
4594       <returns>The string associated with an operating-system environment variable.</returns>
4595     </member>
4596     <member name="M:Microsoft.VisualBasic.Interaction.GetAllSettings(System.String,System.String)">
4597       <summary>Returns a list of key settings and their respective values (originally created with <see langword="SaveSetting" />) from an application's entry in the Windows registry. Using the <see langword="My" /> feature gives you greater productivity and performance in registry operations than <see langword="GetAllSettings" />. For more information, see <see cref="P:Microsoft.VisualBasic.Devices.ServerComputer.Registry" />.</summary>
4598       <param name="AppName">Required. <see langword="String" /> expression containing the name of the application or project whose key settings are requested.</param>
4599       <param name="Section">Required. <see langword="String" /> expression containing the name of the section whose key settings are requested. <see langword="GetAllSettings" /> returns an object that contains a two-dimensional array of strings. The strings contain all the key settings in the specified section, plus their corresponding values.</param>
4600       <exception cref="T:System.ArgumentException">User is not logged in.</exception>
4601       <returns>A list of key settings and their respective values (originally created with <see langword="SaveSetting" />) from an application's entry in the Windows registry.  
4602   
4603  Using the <see langword="My" /> feature gives you greater productivity and performance in registry operations than <see langword="GetAllSettings" />. For more information, see <see cref="P:Microsoft.VisualBasic.Devices.ServerComputer.Registry" />.</returns>
4604     </member>
4605     <member name="M:Microsoft.VisualBasic.Interaction.GetObject(System.String,System.String)">
4606       <summary>Returns a reference to an object provided by a COM component.</summary>
4607       <param name="PathName">Optional. <see langword="String" />. The full path and name of the file containing the object to retrieve. If <paramref name="PathName" /> is omitted, <paramref name="Class" /> is required.</param>
4608       <param name="Class">Required if <paramref name="PathName" /> is not supplied. <see langword="String" />. A string representing the class of the object. The <paramref name="Class" /> argument has the following syntax and parts:  
4609   
4610  <c>appname</c><c>.</c><c>objecttype</c>  
4611   
4612  [1|1] Parameter  
4613   
4614  [1|2] Description  
4615   
4616  [2|1] <c>appname</c>  
4617   
4618  [2|2] Required. <see langword="String" />. The name of the application providing the object.  
4619   
4620  [3|1] <c>objecttype</c>  
4621   
4622  [3|2] Required. <see langword="String" />. The type or class of object to create.</param>
4623       <exception cref="T:System.Exception">No object of the specified class type exists.</exception>
4624       <exception cref="T:System.IO.FileNotFoundException">No object with the specified path and file name exists.</exception>
4625       <returns>A reference to an object provided by a COM component.</returns>
4626     </member>
4627     <member name="M:Microsoft.VisualBasic.Interaction.GetSetting(System.String,System.String,System.String,System.String)">
4628       <summary>Returns a key setting value from an application's entry in the Windows registry. The <see langword="My" /> feature gives you greater productivity and performance in registry operations than <see langword="GetAllSettings" />. For more information, see <see cref="P:Microsoft.VisualBasic.Devices.ServerComputer.Registry" />.</summary>
4629       <param name="AppName">Required. <see langword="String" /> expression containing the name of the application or project whose key setting is requested.</param>
4630       <param name="Section">Required. <see langword="String" /> expression containing the name of the section in which the key setting is found.</param>
4631       <param name="Key">Required. <see langword="String" /> expression containing the name of the key setting to return.</param>
4632       <param name="Default">Optional. Expression containing the value to return if no value is set in the <paramref name="Key" /> setting. If omitted, <paramref name="Default" /> is assumed to be a zero-length string ("").</param>
4633       <exception cref="T:System.ArgumentException">One or more arguments are not <see langword="String" /> expressions, or user is not logged in.</exception>
4634       <returns>A key setting value from an application's entry in the Windows registry.  
4635   
4636  The <see langword="My" /> feature gives you greater productivity and performance in registry operations than <see langword="GetAllSettings" />.</returns>
4637     </member>
4638     <member name="M:Microsoft.VisualBasic.Interaction.IIf(System.Boolean,System.Object,System.Object)">
4639       <summary>Returns one of two objects, depending on the evaluation of an expression.</summary>
4640       <param name="Expression">Required. <see langword="Boolean" />. The expression you want to evaluate.</param>
4641       <param name="TruePart">Required. <see langword="Object" />. Returned if <paramref name="Expression" /> evaluates to <see langword="True" />.</param>
4642       <param name="FalsePart">Required. <see langword="Object" />. Returned if <paramref name="Expression" /> evaluates to <see langword="False" />.</param>
4643       <returns>Returns one of two objects, depending on the evaluation of an expression.</returns>
4644     </member>
4645     <member name="M:Microsoft.VisualBasic.Interaction.InputBox(System.String,System.String,System.String,System.Int32,System.Int32)">
4646       <summary>Displays a prompt in a dialog box, waits for the user to input text or click a button, and then returns a string containing the contents of the text box.</summary>
4647       <param name="Prompt">Required <see langword="String" /> expression displayed as the message in the dialog box. The maximum length of <paramref name="Prompt" /> is approximately 1024 characters, depending on the width of the characters used. If <paramref name="Prompt" /> consists of more than one line, you can separate the lines using a carriage return character (<see langword="Chr(" />13<see langword=")" />), a line feed character (<see langword="Chr(" />10<see langword=")" />), or a carriage return/line feed combination (<see langword="Chr(" />13<see langword=")" /> &amp; <see langword="Chr(" />10<see langword=")" />) between each line.</param>
4648       <param name="Title">Optional. <see langword="String" /> expression displayed in the title bar of the dialog box. If you omit <paramref name="Title" />, the application name is placed in the title bar.</param>
4649       <param name="DefaultResponse">Optional. <see langword="String" /> expression displayed in the text box as the default response if no other input is provided. If you omit <paramref name="DefaultResponse" />, the displayed text box is empty.</param>
4650       <param name="XPos">Optional. Numeric expression that specifies, in twips, the distance of the left edge of the dialog box from the left edge of the screen. If you omit <paramref name="XPos" />, the dialog box is centered horizontally.</param>
4651       <param name="YPos">Optional. Numeric expression that specifies, in twips, the distance of the upper edge of the dialog box from the top of the screen. If you omit <paramref name="YPos" />, the dialog box is positioned vertically approximately one-third of the way down the screen.</param>
4652       <returns>Displays a prompt in a dialog box, waits for the user to input text or click a button, and then returns a string containing the contents of the text box.</returns>
4653     </member>
4654     <member name="M:Microsoft.VisualBasic.Interaction.MsgBox(System.Object,Microsoft.VisualBasic.MsgBoxStyle,System.Object)">
4655       <summary>Displays a message in a dialog box, waits for the user to click a button, and then returns an integer indicating which button the user clicked.</summary>
4656       <param name="Prompt">Required. <see langword="String" /> expression displayed as the message in the dialog box. The maximum length of <paramref name="Prompt" /> is approximately 1024 characters, depending on the width of the characters used. If <paramref name="Prompt" /> consists of more than one line, you can separate the lines using a carriage return character (<see langword="Chr(" />13<see langword=")" />), a line feed character (<see langword="Chr(" />10<see langword=")" />), or a carriage return/linefeed character combination (<see langword="Chr(" />13<see langword=")" /> &amp; <see langword="Chr(" />10<see langword=")" />) between each line.</param>
4657       <param name="Buttons">Optional. Numeric expression that is the sum of values specifying the number and type of buttons to display, the icon style to use, the identity of the default button, and the modality of the message box. If you omit <paramref name="Buttons" />, the default value is zero.</param>
4658       <param name="Title">Optional. <see langword="String" /> expression displayed in the title bar of the dialog box. If you omit <paramref name="Title" />, the application name is placed in the title bar.</param>
4659       <exception cref="T:System.ArgumentException">
4660         <paramref name="Prompt" /> is not a <see langword="String" /> expression, or <paramref name="Title" /> is invalid.</exception>
4661       <exception cref="T:System.InvalidOperationException">Process is not running in User Interactive mode.</exception>
4662       <exception cref="T:System.ComponentModel.InvalidEnumArgumentException">One or more parameters not a member of <see langword="MsgBoxResult" /> or <see langword="MsgBoxStyle" /> enumeration.</exception>
4663       <returns>One of the following values:
4664           <list type="table"><listheader><term>Constant</term><description>Value</description></listheader><item><term><see langword="OK" /></term><description>1</description></item><item><term><see langword="Cancel" /></term><description>2</description></item><item><term><see langword="Abort" /></term><description>3</description></item><item><term><see langword="Retry" /></term><description>4</description></item><item><term><see langword="Ignore" /></term><description>5</description></item><item><term><see langword="Yes" /></term><description>6</description></item><item><term><see langword="No" /></term><description>7</description></item></list></returns>
4665     </member>
4666     <member name="M:Microsoft.VisualBasic.Interaction.Partition(System.Int64,System.Int64,System.Int64,System.Int64)">
4667       <summary>Returns a string representing the calculated range that contains a number.</summary>
4668       <param name="Number">Required. <see langword="Long" />. Whole number that you want to locate within one of the calculated ranges.</param>
4669       <param name="Start">Required. <see langword="Long" />. Whole number that indicates the start of the set of calculated ranges. <paramref name="Start" /> cannot be less than 0.</param>
4670       <param name="Stop">Required. <see langword="Long" />. Whole number that indicates the end of the set of calculated ranges. <paramref name="Stop" /> cannot be less than or equal to <paramref name="Start" />.</param>
4671       <param name="Interval">Required. <see langword="Long" />. Whole number that indicates the size of each range calculated between <paramref name="Start" /> and <paramref name="Stop" />. <paramref name="Interval" /> cannot be less than 1.</param>
4672       <exception cref="T:System.ArgumentException">
4673         <paramref name="Start" /> &lt; 0, <paramref name="Stop" /> &lt;= <paramref name="Start" />, or <paramref name="Interval" /> &lt; 1.</exception>
4674       <returns>A string representing the calculated range that contains a number.</returns>
4675     </member>
4676     <member name="M:Microsoft.VisualBasic.Interaction.SaveSetting(System.String,System.String,System.String,System.String)">
4677       <summary>Saves or creates an application entry in the Windows registry. The <see langword="My" /> feature gives you greater productivity and performance in registry operations than <see langword="SaveSetting" />. For more information, see <see cref="P:Microsoft.VisualBasic.Devices.ServerComputer.Registry" />.</summary>
4678       <param name="AppName">Required. <see langword="String" /> expression containing the name of the application or project to which the setting applies.</param>
4679       <param name="Section">Required. <see langword="String" /> expression containing the name of the section in which the key setting is being saved.</param>
4680       <param name="Key">Required. <see langword="String" /> expression containing the name of the key setting being saved.</param>
4681       <param name="Setting">Required. Expression containing the value to which <paramref name="Key" /> is being set.</param>
4682       <exception cref="T:System.ArgumentException">Key registry could not be created, or user is not logged in.</exception>
4683     </member>
4684     <member name="M:Microsoft.VisualBasic.Interaction.Shell(System.String,Microsoft.VisualBasic.AppWinStyle,System.Boolean,System.Int32)">
4685       <summary>Runs an executable program and returns an integer containing the program's process ID if it is still running.</summary>
4686       <param name="PathName">Required. <see langword="String" />. Name of the program to execute, together with any required arguments and command-line switches. <paramref name="PathName" /> can also include the drive and the directory path or folder.  
4687  If you do not know the path to the program, you can use the <see cref="Overload:Microsoft.VisualBasic.FileIO.FileSystem.GetFiles" /> to locate it. For example, you can call <c>My.Computer.FileSystem.GetFiles("C:\", True, "testFile.txt")</c>, which returns the full path of every file named <c>testFile.txt</c> anywhere on drive C:\.</param>
4688       <param name="Style">Optional. <see langword="AppWinStyle" />. A value chosen from the <see cref="T:Microsoft.VisualBasic.AppWinStyle" /> specifying the style of the window in which the program is to run. If <paramref name="Style" /> is omitted, <see langword="Shell" /> uses <see langword="AppWinStyle.MinimizedFocus" />, which starts the program minimized and with focus.</param>
4689       <param name="Wait">Optional. <see langword="Boolean" />. A value indicating whether the <see langword="Shell" /> function should wait for completion of the program. If <paramref name="Wait" /> is omitted, <see langword="Shell" /> uses <see langword="False" />.</param>
4690       <param name="Timeout">Optional. <see langword="Integer" />. The number of milliseconds to wait for completion if <paramref name="Wait" /> is <see langword="True" />. If <paramref name="Timeout" /> is omitted, <see langword="Shell" /> uses -1, which means there is no timeout and <see langword="Shell" /> does not return until the program finishes. Therefore, if you omit <paramref name="Timeout" /> or set it to -1, it is possible that <see langword="Shell" /> might never return control to your program.</param>
4691       <exception cref="T:System.ArgumentException">
4692         <paramref name="Style" /> is not within range 0 through 9, inclusive.</exception>
4693       <exception cref="T:System.IO.FileNotFoundException">
4694         <see langword="Shell" /> cannot find the <paramref name="PathName" /> file.</exception>
4695       <exception cref="T:System.NullReferenceException">
4696         <paramref name="PathName" /> is <see langword="Nothing" />.</exception>
4697       <returns>An integer containing the program's process ID if it is still running. 0 if the program already finished executing.</returns>
4698     </member>
4699     <member name="M:Microsoft.VisualBasic.Interaction.Switch(System.Object[])">
4700       <summary>Evaluates a list of expressions and returns an <see langword="Object" /> value corresponding to the first expression in the list that is <see langword="True" />.</summary>
4701       <param name="VarExpr">Required. <see langword="Object" /> parameter array. Must have an even number of elements. You can supply a list of <see langword="Object" /> variables or expressions separated by commas, or a single-dimensional array of <see langword="Object" /> elements.</param>
4702       <exception cref="T:System.ArgumentException">Number of arguments is odd.</exception>
4703       <returns>Evaluates a list of expressions and returns an <see langword="Object" /> value corresponding to the first expression in the list that is <see langword="True" />.</returns>
4704     </member>
4705     <member name="T:Microsoft.VisualBasic.MsgBoxResult">
4706       <summary>Indicates which button was pressed on a message box, returned by the <see langword="MsgBox" /> function.</summary>
4707     </member>
4708     <member name="F:Microsoft.VisualBasic.MsgBoxResult.Abort">
4709       <summary>Abort button was pressed. This member is equivalent to the Visual Basic constant <see langword="vbAbort" />.</summary>
4710     </member>
4711     <member name="F:Microsoft.VisualBasic.MsgBoxResult.Cancel">
4712       <summary>Cancel button was pressed. This member is equivalent to the Visual Basic constant <see langword="vbCancel" />.</summary>
4713     </member>
4714     <member name="F:Microsoft.VisualBasic.MsgBoxResult.Ignore">
4715       <summary>Ignore button was pressed. This member is equivalent to the Visual Basic constant <see langword="vbIgnore" />.</summary>
4716     </member>
4717     <member name="F:Microsoft.VisualBasic.MsgBoxResult.No">
4718       <summary>No button was pressed. This member is equivalent to the Visual Basic constant <see langword="vbNo" />.</summary>
4719     </member>
4720     <member name="F:Microsoft.VisualBasic.MsgBoxResult.Ok">
4721       <summary>OK button was pressed. This member is equivalent to the Visual Basic constant <see langword="vbOK" />.</summary>
4722     </member>
4723     <member name="F:Microsoft.VisualBasic.MsgBoxResult.Retry">
4724       <summary>Retry button was pressed. This member is equivalent to the Visual Basic constant <see langword="vbRetry" />.</summary>
4725     </member>
4726     <member name="F:Microsoft.VisualBasic.MsgBoxResult.Yes">
4727       <summary>Yes button was pressed. This member is equivalent to the Visual Basic constant <see langword="vbYes" />.</summary>
4728     </member>
4729     <member name="T:Microsoft.VisualBasic.MsgBoxStyle">
4730       <summary>Indicates which buttons to display when calling the <see langword="MsgBox" /> function.</summary>
4731     </member>
4732     <member name="F:Microsoft.VisualBasic.MsgBoxStyle.AbortRetryIgnore">
4733       <summary>Abort, Retry, and Ignore buttons. This member is equivalent to the Visual Basic constant <see langword="vbAbortRetryIgnore" />.</summary>
4734     </member>
4735     <member name="F:Microsoft.VisualBasic.MsgBoxStyle.ApplicationModal">
4736       <summary>Application modal message box. This member is equivalent to the Visual Basic constant <see langword="vbApplicationModal" />.</summary>
4737     </member>
4738     <member name="F:Microsoft.VisualBasic.MsgBoxStyle.Critical">
4739       <summary>Critical message. This member is equivalent to the Visual Basic constant <see langword="vbCritical" />.</summary>
4740     </member>
4741     <member name="F:Microsoft.VisualBasic.MsgBoxStyle.DefaultButton1">
4742       <summary>First button is default. This member is equivalent to the Visual Basic constant <see langword="vbDefaultButton1" />.</summary>
4743     </member>
4744     <member name="F:Microsoft.VisualBasic.MsgBoxStyle.DefaultButton2">
4745       <summary>Second button is default. This member is equivalent to the Visual Basic constant <see langword="vbDefaultButton2" />.</summary>
4746     </member>
4747     <member name="F:Microsoft.VisualBasic.MsgBoxStyle.DefaultButton3">
4748       <summary>Third button is default. This member is equivalent to the Visual Basic constant <see langword="vbDefaultButton3" />.</summary>
4749     </member>
4750     <member name="F:Microsoft.VisualBasic.MsgBoxStyle.Exclamation">
4751       <summary>Warning message. This member is equivalent to the Visual Basic constant <see langword="vbExclamation" />.</summary>
4752     </member>
4753     <member name="F:Microsoft.VisualBasic.MsgBoxStyle.Information">
4754       <summary>Information message. This member is equivalent to the Visual Basic constant <see langword="vbInformation" />.</summary>
4755     </member>
4756     <member name="F:Microsoft.VisualBasic.MsgBoxStyle.MsgBoxHelp">
4757       <summary>Help text. This member is equivalent to the Visual Basic constant <see langword="vbMsgBoxHelp" />.</summary>
4758     </member>
4759     <member name="F:Microsoft.VisualBasic.MsgBoxStyle.MsgBoxRight">
4760       <summary>Right-aligned text. This member is equivalent to the Visual Basic constant <see langword="vbMsgBoxRight" />.</summary>
4761     </member>
4762     <member name="F:Microsoft.VisualBasic.MsgBoxStyle.MsgBoxRtlReading">
4763       <summary>Right-to-left reading text (Hebrew and Arabic systems). This member is equivalent to the Visual Basic constant <see langword="vbMsgBoxRtlReading" />.</summary>
4764     </member>
4765     <member name="F:Microsoft.VisualBasic.MsgBoxStyle.MsgBoxSetForeground">
4766       <summary>Foreground message box window. This member is equivalent to the Visual Basic constant <see langword="vbMsgBoxSetForeground" />.</summary>
4767     </member>
4768     <member name="F:Microsoft.VisualBasic.MsgBoxStyle.OkCancel">
4769       <summary>OK and Cancel buttons. This member is equivalent to the Visual Basic constant <see langword="vbOKCancel" />.</summary>
4770     </member>
4771     <member name="F:Microsoft.VisualBasic.MsgBoxStyle.OkOnly">
4772       <summary>OK button only (default). This member is equivalent to the Visual Basic constant <see langword="vbOKOnly" />.</summary>
4773     </member>
4774     <member name="F:Microsoft.VisualBasic.MsgBoxStyle.Question">
4775       <summary>Warning query. This member is equivalent to the Visual Basic constant <see langword="vbQuestion" />.</summary>
4776     </member>
4777     <member name="F:Microsoft.VisualBasic.MsgBoxStyle.RetryCancel">
4778       <summary>Retry and Cancel buttons. This member is equivalent to the Visual Basic constant <see langword="vbRetryCancel" />.</summary>
4779     </member>
4780     <member name="F:Microsoft.VisualBasic.MsgBoxStyle.SystemModal">
4781       <summary>System modal message box. This member is equivalent to the Visual Basic constant <see langword="vbSystemModal" />.</summary>
4782     </member>
4783     <member name="F:Microsoft.VisualBasic.MsgBoxStyle.YesNo">
4784       <summary>Yes and No buttons. This member is equivalent to the Visual Basic constant <see langword="vbYesNo" />.</summary>
4785     </member>
4786     <member name="F:Microsoft.VisualBasic.MsgBoxStyle.YesNoCancel">
4787       <summary>Yes, No, and Cancel buttons. This member is equivalent to the Visual Basic constant <see langword="vbYesNoCancel" />.</summary>
4788     </member>
4789     <member name="T:Microsoft.VisualBasic.MyGroupCollectionAttribute">
4790       <summary>This attribute supports <see langword="My.Forms" /> and <see langword="My.WebServices" /> in Visual Basic.</summary>
4791     </member>
4792     <member name="M:Microsoft.VisualBasic.MyGroupCollectionAttribute.#ctor(System.String,System.String,System.String,System.String)">
4793       <summary>This attribute supports <see langword="My.Forms" /> and <see langword="My.WebServices" /> in Visual Basic.</summary>
4794       <param name="typeToCollect">
4795         <see langword="String" />. Initializes the <see cref="P:Microsoft.VisualBasic.MyGroupCollectionAttribute.MyGroupName" /> property. The compiler generates accessor properties for classes that derive from this type.</param>
4796       <param name="createInstanceMethodName">
4797         <see langword="String" />. Initializes the <see cref="P:Microsoft.VisualBasic.MyGroupCollectionAttribute.CreateMethod" /> property. Specifies the method in the class that creates the type's instances.</param>
4798       <param name="disposeInstanceMethodName">
4799         <see langword="String" />. Initializes the <see cref="P:Microsoft.VisualBasic.MyGroupCollectionAttribute.DisposeMethod" /> property. Specifies the method in the class that disposes of the type's instances.</param>
4800       <param name="defaultInstanceAlias">
4801         <see langword="String" />. Initializes the <see cref="P:Microsoft.VisualBasic.MyGroupCollectionAttribute.DefaultInstanceAlias" /> property. Specifies the name of the property that returns the default instance of the class.</param>
4802     </member>
4803     <member name="P:Microsoft.VisualBasic.MyGroupCollectionAttribute.CreateMethod">
4804       <summary>This property supports <see langword="My" /> in Visual Basic.</summary>
4805       <returns>Specifies the method in the class that creates the type's instances.</returns>
4806     </member>
4807     <member name="P:Microsoft.VisualBasic.MyGroupCollectionAttribute.DefaultInstanceAlias">
4808       <summary>This property supports <see langword="My" /> in Visual Basic.</summary>
4809       <returns>Specifies the name of the property that returns the default instance of the class.</returns>
4810     </member>
4811     <member name="P:Microsoft.VisualBasic.MyGroupCollectionAttribute.DisposeMethod">
4812       <summary>This property supports <see langword="My" /> in Visual Basic.</summary>
4813       <returns>Specifies the method in the class that disposes of the type's instances.</returns>
4814     </member>
4815     <member name="P:Microsoft.VisualBasic.MyGroupCollectionAttribute.MyGroupName">
4816       <summary>This property supports <see langword="My" /> in Visual Basic.</summary>
4817       <returns>Specifies the name of the type for which the compiler generates accessor properties.</returns>
4818     </member>
4819     <member name="T:Microsoft.VisualBasic.OpenAccess">
4820       <summary>Indicates how to open a file when calling file-access functions.</summary>
4821     </member>
4822     <member name="F:Microsoft.VisualBasic.OpenAccess.Default">
4823       <summary>Read and write access permitted. This is the default.</summary>
4824     </member>
4825     <member name="F:Microsoft.VisualBasic.OpenAccess.Read">
4826       <summary>Read access permitted.</summary>
4827     </member>
4828     <member name="F:Microsoft.VisualBasic.OpenAccess.ReadWrite">
4829       <summary>Read and write access permitted.</summary>
4830     </member>
4831     <member name="F:Microsoft.VisualBasic.OpenAccess.Write">
4832       <summary>Write access permitted.</summary>
4833     </member>
4834     <member name="T:Microsoft.VisualBasic.OpenMode">
4835       <summary>Indicates how to open a file when calling file-access functions.</summary>
4836     </member>
4837     <member name="F:Microsoft.VisualBasic.OpenMode.Append">
4838       <summary>File opened to append to it. Default.</summary>
4839     </member>
4840     <member name="F:Microsoft.VisualBasic.OpenMode.Binary">
4841       <summary>File opened for binary access.</summary>
4842     </member>
4843     <member name="F:Microsoft.VisualBasic.OpenMode.Input">
4844       <summary>File opened for read access.</summary>
4845     </member>
4846     <member name="F:Microsoft.VisualBasic.OpenMode.Output">
4847       <summary>File opened for write access.</summary>
4848     </member>
4849     <member name="F:Microsoft.VisualBasic.OpenMode.Random">
4850       <summary>File opened for random access.</summary>
4851     </member>
4852     <member name="T:Microsoft.VisualBasic.OpenShare">
4853       <summary>Indicates how to open a file when calling file-access functions.</summary>
4854     </member>
4855     <member name="F:Microsoft.VisualBasic.OpenShare.Default">
4856       <summary>
4857         <see langword="LockReadWrite" />. This is the default.</summary>
4858     </member>
4859     <member name="F:Microsoft.VisualBasic.OpenShare.LockRead">
4860       <summary>Other processes cannot read the file.</summary>
4861     </member>
4862     <member name="F:Microsoft.VisualBasic.OpenShare.LockReadWrite">
4863       <summary>Other processes cannot read or write to the file.</summary>
4864     </member>
4865     <member name="F:Microsoft.VisualBasic.OpenShare.LockWrite">
4866       <summary>Other processes cannot write to the file.</summary>
4867     </member>
4868     <member name="F:Microsoft.VisualBasic.OpenShare.Shared">
4869       <summary>Any process can read or write to the file.</summary>
4870     </member>
4871     <member name="T:Microsoft.VisualBasic.SpcInfo">
4872       <summary>This class supports the Visual Basic <see langword="Print" /> and <see langword="PrintLine" /> functions.</summary>
4873     </member>
4874     <member name="F:Microsoft.VisualBasic.SpcInfo.Count">
4875       <summary>This field supports the Visual Basic <see langword="Print" /> and <see langword="PrintLine" /> functions.</summary>
4876     </member>
4877     <member name="T:Microsoft.VisualBasic.Strings">
4878       <summary>The <see langword="Strings" /> module contains procedures used to perform string operations.</summary>
4879     </member>
4880     <member name="M:Microsoft.VisualBasic.Strings.Asc(System.Char)">
4881       <summary>Returns an integer value representing the character code corresponding to a character.</summary>
4882       <param name="String">Required. Any valid <see langword="Char" /> or <see langword="String" /> expression. If <paramref name="String" /> is a <see langword="String" /> expression, only the first character of the string is used for input. If <paramref name="String" /> is <see langword="Nothing" /> or contains no characters, an <see cref="T:System.ArgumentException" /> error occurs.</param>
4883       <returns>The character code corresponding to a character.</returns>
4884     </member>
4885     <member name="M:Microsoft.VisualBasic.Strings.Asc(System.String)">
4886       <summary>Returns an integer value representing the character code corresponding to a character.</summary>
4887       <param name="String">Required. Any valid <see langword="Char" /> or <see langword="String" /> expression. If <paramref name="String" /> is a <see langword="String" /> expression, only the first character of the string is used for input. If <paramref name="String" /> is <see langword="Nothing" /> or contains no characters, an <see cref="T:System.ArgumentException" /> error occurs.</param>
4888       <returns>The character code corresponding to a character.</returns>
4889     </member>
4890     <member name="M:Microsoft.VisualBasic.Strings.AscW(System.Char)">
4891       <summary>Returns an integer value representing the character code corresponding to a character.</summary>
4892       <param name="String">Required. Any valid <see langword="Char" /> or <see langword="String" /> expression. If <paramref name="String" /> is a <see langword="String" /> expression, only the first character of the string is used for input. If <paramref name="String" /> is <see langword="Nothing" /> or contains no characters, an <see cref="T:System.ArgumentException" /> error occurs.</param>
4893       <returns>The character code corresponding to a character.</returns>
4894     </member>
4895     <member name="M:Microsoft.VisualBasic.Strings.AscW(System.String)">
4896       <summary>Returns an integer value representing the character code corresponding to a character.</summary>
4897       <param name="String">Required. Any valid <see langword="Char" /> or <see langword="String" /> expression. If <paramref name="String" /> is a <see langword="String" /> expression, only the first character of the string is used for input. If <paramref name="String" /> is <see langword="Nothing" /> or contains no characters, an <see cref="T:System.ArgumentException" /> error occurs.</param>
4898       <returns>The character code corresponding to a character.</returns>
4899     </member>
4900     <member name="M:Microsoft.VisualBasic.Strings.Chr(System.Int32)">
4901       <summary>Returns the character associated with the specified character code.</summary>
4902       <param name="CharCode">Required. An <see langword="Integer" /> expression representing the <c>code point</c>, or character code, for the character.</param>
4903       <exception cref="T:System.ArgumentException">
4904         <paramref name="CharCode" /> &lt; 0 or &gt; 255 for <see langword="Chr" />.</exception>
4905       <returns>The character associated with the specified character code.</returns>
4906     </member>
4907     <member name="M:Microsoft.VisualBasic.Strings.ChrW(System.Int32)">
4908       <summary>Returns the character associated with the specified character code.</summary>
4909       <param name="CharCode">Required. An <see langword="Integer" /> expression representing the <c>code point</c>, or character code, for the character.</param>
4910       <exception cref="T:System.ArgumentException">
4911         <paramref name="CharCode" /> &lt; -32768 or &gt; 65535 for <see langword="ChrW" />.</exception>
4912       <returns>The character associated with the specified character code.</returns>
4913     </member>
4914     <member name="M:Microsoft.VisualBasic.Strings.Filter(System.Object[],System.String,System.Boolean,Microsoft.VisualBasic.CompareMethod)">
4915       <summary>Returns a zero-based array containing a subset of a <see langword="String" /> array based on specified filter criteria.</summary>
4916       <param name="Source">Required. One-dimensional array of strings to be searched.</param>
4917       <param name="Match">Required. String to search for.</param>
4918       <param name="Include">Optional. <see langword="Boolean" /> value indicating whether to return substrings that include or exclude <paramref name="Match" />. If <paramref name="Include" /> is <see langword="True" />, the <see langword="Filter" /> function returns the subset of the array that contains <paramref name="Match" /> as a substring. If <paramref name="Include" /> is <see langword="False" />, the <see langword="Filter" /> function returns the subset of the array that does not contain <paramref name="Match" /> as a substring.</param>
4919       <param name="Compare">Optional. Numeric value indicating the kind of string comparison to use. See "Settings" for values.</param>
4920       <exception cref="T:System.ArgumentException">
4921         <paramref name="Source" /> is <see langword="Nothing" /> or is not a one-dimensional array.</exception>
4922       <returns>A zero-based array containing a subset of a <see langword="String" /> array based on specified filter criteria.</returns>
4923     </member>
4924     <member name="M:Microsoft.VisualBasic.Strings.Filter(System.String[],System.String,System.Boolean,Microsoft.VisualBasic.CompareMethod)">
4925       <summary>Returns a zero-based array containing a subset of a <see langword="String" /> array based on specified filter criteria.</summary>
4926       <param name="Source">Required. One-dimensional array of strings to be searched.</param>
4927       <param name="Match">Required. String to search for.</param>
4928       <param name="Include">Optional. <see langword="Boolean" /> value indicating whether to return substrings that include or exclude <paramref name="Match" />. If <paramref name="Include" /> is <see langword="True" />, the <see langword="Filter" /> function returns the subset of the array that contains <paramref name="Match" /> as a substring. If <paramref name="Include" /> is <see langword="False" />, the <see langword="Filter" /> function returns the subset of the array that does not contain <paramref name="Match" /> as a substring.</param>
4929       <param name="Compare">Optional. Numeric value indicating the kind of string comparison to use. See "Settings" for values.</param>
4930       <exception cref="T:System.ArgumentException">
4931         <paramref name="Source" /> is <see langword="Nothing" /> or is not a one-dimensional array.</exception>
4932       <returns>A zero-based array containing a subset of a <see langword="String" /> array based on specified filter criteria.</returns>
4933     </member>
4934     <member name="M:Microsoft.VisualBasic.Strings.Format(System.Object,System.String)">
4935       <summary>Returns a string formatted according to instructions contained in a format <see langword="String" /> expression.</summary>
4936       <param name="Expression">Required. Any valid expression.</param>
4937       <param name="Style">Optional. A valid named or user-defined format <see langword="String" /> expression.</param>
4938       <returns>A string formatted according to instructions contained in a format <see langword="String" /> expression.</returns>
4939     </member>
4940     <member name="M:Microsoft.VisualBasic.Strings.FormatCurrency(System.Object,System.Int32,Microsoft.VisualBasic.TriState,Microsoft.VisualBasic.TriState,Microsoft.VisualBasic.TriState)">
4941       <summary>Returns an expression formatted as a currency value using the currency symbol defined in the system control panel.</summary>
4942       <param name="Expression">Required. Expression to be formatted.</param>
4943       <param name="NumDigitsAfterDecimal">Optional. Numeric value indicating how many places are displayed to the right of the decimal. Default value is -1, which indicates that the computer's regional settings are used.</param>
4944       <param name="IncludeLeadingDigit">Optional. <see cref="T:Microsoft.VisualBasic.TriState" /> enumeration that indicates whether or not a leading zero is displayed for fractional values. See "Remarks" for values.</param>
4945       <param name="UseParensForNegativeNumbers">Optional. <see cref="T:Microsoft.VisualBasic.TriState" /> enumeration that indicates whether or not to place negative values within parentheses. See "Remarks" for values.</param>
4946       <param name="GroupDigits">Optional. <see cref="T:Microsoft.VisualBasic.TriState" /> enumeration that indicates whether or not numbers are grouped using the group delimiter specified in the computer's regional settings. See "Remarks" for values.</param>
4947       <exception cref="T:System.ArgumentException">Number of digits after decimal point is greater than 99.</exception>
4948       <exception cref="T:System.InvalidCastException">Type is not numeric.</exception>
4949       <returns>An expression formatted as a currency value using the currency symbol defined in the system control panel.</returns>
4950     </member>
4951     <member name="M:Microsoft.VisualBasic.Strings.FormatDateTime(System.DateTime,Microsoft.VisualBasic.DateFormat)">
4952       <summary>Returns a string expression representing a date/time value.</summary>
4953       <param name="Expression">Required. <see langword="Date" /> expression to be formatted.</param>
4954       <param name="NamedFormat">Optional. Numeric value that indicates the date/time format used. If omitted, <see langword="DateFormat.GeneralDate" /> is used.</param>
4955       <exception cref="T:System.ArgumentException">
4956         <paramref name="NamedFormat" /> setting is not valid.</exception>
4957       <returns>A string expression representing a date/time value.</returns>
4958     </member>
4959     <member name="M:Microsoft.VisualBasic.Strings.FormatNumber(System.Object,System.Int32,Microsoft.VisualBasic.TriState,Microsoft.VisualBasic.TriState,Microsoft.VisualBasic.TriState)">
4960       <summary>Returns an expression formatted as a number.</summary>
4961       <param name="Expression">Required. Expression to be formatted.</param>
4962       <param name="NumDigitsAfterDecimal">Optional. Numeric value indicating how many places are displayed to the right of the decimal. The default value is -1, which indicates that the computer's regional settings are used.</param>
4963       <param name="IncludeLeadingDigit">Optional. <see cref="T:Microsoft.VisualBasic.TriState" /> constant that indicates whether a leading 0 is displayed for fractional values. See "Settings" for values.</param>
4964       <param name="UseParensForNegativeNumbers">Optional. <see cref="T:Microsoft.VisualBasic.TriState" /> constant that indicates whether to place negative values within parentheses. See "Settings" for values.</param>
4965       <param name="GroupDigits">Optional. <see cref="T:Microsoft.VisualBasic.TriState" /> constant that indicates whether or not numbers are grouped using the group delimiter specified in the locale settings. See "Settings" for values.</param>
4966       <exception cref="T:System.InvalidCastException">Type is not numeric.</exception>
4967       <returns>An expression formatted as a number.</returns>
4968     </member>
4969     <member name="M:Microsoft.VisualBasic.Strings.FormatPercent(System.Object,System.Int32,Microsoft.VisualBasic.TriState,Microsoft.VisualBasic.TriState,Microsoft.VisualBasic.TriState)">
4970       <summary>Returns an expression formatted as a percentage (that is, multiplied by 100) with a trailing % character.</summary>
4971       <param name="Expression">Required. Expression to be formatted.</param>
4972       <param name="NumDigitsAfterDecimal">Optional. Numeric value indicating how many places to the right of the decimal are displayed. Default value is -1, which indicates that the locale settings are used.</param>
4973       <param name="IncludeLeadingDigit">Optional. <see cref="T:Microsoft.VisualBasic.TriState" /> constant that indicates whether or not a leading zero displays for fractional values. See "Settings" for values.</param>
4974       <param name="UseParensForNegativeNumbers">Optional. <see cref="T:Microsoft.VisualBasic.TriState" /> constant that indicates whether or not to place negative values within parentheses. See "Settings" for values.</param>
4975       <param name="GroupDigits">Optional. <see cref="T:Microsoft.VisualBasic.TriState" /> constant that indicates whether or not numbers are grouped using the group delimiter specified in the locale settings. See "Settings" for values.</param>
4976       <exception cref="T:System.InvalidCastException">Type is not numeric.</exception>
4977       <returns>An expression formatted as a percentage (that is, multiplied by 100) with a trailing % character.</returns>
4978     </member>
4979     <member name="M:Microsoft.VisualBasic.Strings.GetChar(System.String,System.Int32)">
4980       <summary>Returns a <see langword="Char" /> value representing the character from the specified index in the supplied string.</summary>
4981       <param name="str">Required. Any valid <see langword="String" /> expression.</param>
4982       <param name="Index">Required. <see langword="Integer" /> expression. The (1-based) index of the character in <paramref name="str" /> to be returned.</param>
4983       <exception cref="T:System.ArgumentException">
4984         <paramref name="str" /> is <see langword="Nothing" />, <paramref name="Index" /> &lt; 1, or <paramref name="Index" /> is greater than index of last character of <paramref name="str" />.</exception>
4985       <returns>
4986         <see langword="Char" /> value representing the character from the specified index in the supplied string.</returns>
4987     </member>
4988     <member name="M:Microsoft.VisualBasic.Strings.InStr(System.Int32,System.String,System.String,Microsoft.VisualBasic.CompareMethod)">
4989       <summary>Returns an integer specifying the start position of the first occurrence of one string within another.</summary>
4990       <param name="Start">Optional. Numeric expression that sets the starting position for each search. If omitted, search begins at the first character position. The start index is 1-based.</param>
4991       <param name="String1">Required. <see langword="String" /> expression being searched.</param>
4992       <param name="String2">Required. <see langword="String" /> expression sought.</param>
4993       <param name="Compare">Optional. Specifies the type of string comparison. If <paramref name="Compare" /> is omitted, the <see langword="Option Compare" /> setting determines the type of comparison.</param>
4994       <exception cref="T:System.ArgumentException">
4995         <paramref name="Start" /> &lt; 1.</exception>
4996       <returns>
4997         <list type="table">
4998           <listheader>
4999             <term>If</term>
5000             <description>InStr returns</description>
5001           </listheader>
5002           <item>
5003             <term>
5004               <paramref name="String1" /> is zero length or <see langword="Nothing" /></term>
5005             <description>0</description>
5006           </item>
5007           <item>
5008             <term>
5009               <paramref name="String2" /> is zero length or <see langword="Nothing" /></term>
5010             <description>
5011               <paramref name="start" />
5012             </description>
5013           </item>
5014           <item>
5015             <term>
5016               <paramref name="String2" /> is not found</term>
5017             <description>0</description>
5018           </item>
5019           <item>
5020             <term>
5021               <paramref name="String2" /> is found within <paramref name="String1" /></term>
5022             <description> Position where match begins</description>
5023           </item>
5024           <item>
5025             <term>
5026               <paramref name="Start" /> &gt; length of <paramref name="String1" /></term>
5027             <description>0</description>
5028           </item>
5029         </list>
5030       </returns>
5031     </member>
5032     <member name="M:Microsoft.VisualBasic.Strings.InStr(System.String,System.String,Microsoft.VisualBasic.CompareMethod)">
5033       <summary>Returns an integer specifying the start position of the first occurrence of one string within another.</summary>
5034       <param name="String1">Required. <see langword="String" /> expression being searched.</param>
5035       <param name="String2">Required. <see langword="String" /> expression sought.</param>
5036       <param name="Compare">Optional. Specifies the type of string comparison. If <paramref name="Compare" /> is omitted, the <see langword="Option Compare" /> setting determines the type of comparison.</param>
5037       <returns>
5038         <list type="table">
5039           <listheader>
5040             <term>If</term>
5041             <description>InStr returns</description>
5042           </listheader>
5043           <item>
5044             <term>
5045               <paramref name="String1" /> is zero length or <see langword="Nothing" /></term>
5046             <description>0</description>
5047           </item>
5048           <item>
5049             <term>
5050               <paramref name="String2" /> is zero length or <see langword="Nothing" /></term>
5051             <description>The starting position for the search, which defaults to the first character position.</description>
5052           </item>
5053           <item>
5054             <term>
5055               <paramref name="String2" /> is not found</term>
5056             <description>0</description>
5057           </item>
5058           <item>
5059             <term>
5060               <paramref name="String2" /> is found within <paramref name="String1" /></term>
5061             <description>Position where match begins.</description>
5062           </item>
5063         </list>
5064       </returns>
5065     </member>
5066     <member name="M:Microsoft.VisualBasic.Strings.InStrRev(System.String,System.String,System.Int32,Microsoft.VisualBasic.CompareMethod)">
5067       <summary>Returns the position of the first occurrence of one string within another, starting from the right side of the string.</summary>
5068       <param name="StringCheck">Required. String expression being searched.</param>
5069       <param name="StringMatch">Required. String expression being searched for.</param>
5070       <param name="Start">Optional. Numeric expression setting the one-based starting position for each search, starting from the left side of the string. If <paramref name="Start" /> is omitted then -1 is used, meaning the search begins at the last character position. Search then proceeds from right to left.</param>
5071       <param name="Compare">Optional. Numeric value indicating the kind of comparison to use when evaluating substrings. If omitted, a binary comparison is performed. See Settings for values.</param>
5072       <exception cref="T:System.ArgumentException">
5073         <paramref name="Start" /> = 0 or <paramref name="Start" /> &lt; -1.</exception>
5074       <returns>
5075         <list type="table">
5076           <listheader>
5077             <term>If</term>
5078             <description>InStrRev returns</description>
5079           </listheader>
5080           <item>
5081             <term>
5082               <paramref name="StringCheck" /> is zero-length</term>
5083             <description>0</description>
5084           </item>
5085           <item>
5086             <term>
5087               <paramref name="StringMatch" /> is zero-length</term>
5088             <description>
5089               <paramref name="Start" />
5090             </description>
5091           </item>
5092           <item>
5093             <term>
5094               <paramref name="StringMatch" /> is not found</term>
5095             <description>0</description>
5096           </item>
5097           <item>
5098             <term>
5099               <paramref name="StringMatch" /> is found within <paramref name="StringCheck" /></term>
5100             <description>Position at which the first match is found, starting with the right side of the string.</description>
5101           </item>
5102           <item>
5103             <term>
5104               <paramref name="Start" /> is greater than length of <paramref name="StringMatch" /></term>
5105             <description>0</description>
5106           </item>
5107         </list>
5108       </returns>
5109     </member>
5110     <member name="M:Microsoft.VisualBasic.Strings.Join(System.Object[],System.String)">
5111       <summary>Returns a string created by joining a number of substrings contained in an array.</summary>
5112       <param name="SourceArray">Required. One-dimensional array containing substrings to be joined.</param>
5113       <param name="Delimiter">Optional. Any string, used to separate the substrings in the returned string. If omitted, the space character (" ") is used. If <paramref name="Delimiter" /> is a zero-length string ("") or <see langword="Nothing" />, all items in the list are concatenated with no delimiters.</param>
5114       <exception cref="T:System.ArgumentException">
5115         <paramref name="SourceArray" /> is not one dimensional.</exception>
5116       <returns>A string created by joining a number of substrings contained in an array.</returns>
5117     </member>
5118     <member name="M:Microsoft.VisualBasic.Strings.Join(System.String[],System.String)">
5119       <summary>Returns a string created by joining a number of substrings contained in an array.</summary>
5120       <param name="SourceArray">Required. One-dimensional array containing substrings to be joined.</param>
5121       <param name="Delimiter">Optional. Any string, used to separate the substrings in the returned string. If omitted, the space character (" ") is used. If <paramref name="Delimiter" /> is a zero-length string ("") or <see langword="Nothing" />, all items in the list are concatenated with no delimiters.</param>
5122       <exception cref="T:System.ArgumentException">
5123         <paramref name="SourceArray" /> is not one dimensional.</exception>
5124       <returns>A string created by joining a number of substrings contained in an array.</returns>
5125     </member>
5126     <member name="M:Microsoft.VisualBasic.Strings.LCase(System.Char)">
5127       <summary>Returns a string or character converted to lowercase.</summary>
5128       <param name="Value">Required. Any valid <see langword="String" /> or <see langword="Char" /> expression.</param>
5129       <returns>A string or character converted to lowercase.</returns>
5130     </member>
5131     <member name="M:Microsoft.VisualBasic.Strings.LCase(System.String)">
5132       <summary>Returns a string or character converted to lowercase.</summary>
5133       <param name="Value">Required. Any valid <see langword="String" /> or <see langword="Char" /> expression.</param>
5134       <returns>A string or character converted to lowercase.</returns>
5135     </member>
5136     <member name="M:Microsoft.VisualBasic.Strings.Left(System.String,System.Int32)">
5137       <summary>Returns a string containing a specified number of characters from the left side of a string.</summary>
5138       <param name="str">Required. <see langword="String" /> expression from which the leftmost characters are returned.</param>
5139       <param name="Length">Required. <see langword="Integer" /> expression. Numeric expression indicating how many characters to return. If 0, a zero-length string ("") is returned. If greater than or equal to the number of characters in <paramref name="str" />, the entire string is returned.</param>
5140       <exception cref="T:System.ArgumentException">
5141         <paramref name="Length" /> &lt; 0.</exception>
5142       <returns>A string containing a specified number of characters from the left side of a string.</returns>
5143     </member>
5144     <member name="M:Microsoft.VisualBasic.Strings.Len(System.Boolean)">
5145       <summary>Returns an integer containing either the number of characters in a string or the nominal number of bytes required to store a variable.</summary>
5146       <param name="Expression">Any valid <see langword="String" /> expression or variable name. If <paramref name="Expression" /> is of type <see langword="Object" />, the <see langword="Len" /> function returns the size as it will be written to the file by the <see langword="FilePut" /> function.</param>
5147       <returns>An integer containing either the number of characters in a string or the nominal number of bytes required to store a variable.</returns>
5148     </member>
5149     <member name="M:Microsoft.VisualBasic.Strings.Len(System.Byte)">
5150       <summary>Returns an integer containing either the number of characters in a string or the nominal number of bytes required to store a variable.</summary>
5151       <param name="Expression">Any valid <see langword="String" /> expression or variable name. If <paramref name="Expression" /> is of type <see langword="Object" />, the <see langword="Len" /> function returns the size as it will be written to the file by the <see langword="FilePut" /> function.</param>
5152       <returns>An integer containing either the number of characters in a string or the nominal number of bytes required to store a variable.</returns>
5153     </member>
5154     <member name="M:Microsoft.VisualBasic.Strings.Len(System.Char)">
5155       <summary>Returns an integer containing either the number of characters in a string or the nominal number of bytes required to store a variable.</summary>
5156       <param name="Expression">Any valid <see langword="String" /> expression or variable name. If <paramref name="Expression" /> is of type <see langword="Object" />, the <see langword="Len" /> function returns the size as it will be written to the file by the <see langword="FilePut" /> function.</param>
5157       <returns>An integer containing either the number of characters in a string or the nominal number of bytes required to store a variable.</returns>
5158     </member>
5159     <member name="M:Microsoft.VisualBasic.Strings.Len(System.DateTime)">
5160       <summary>Returns an integer containing either the number of characters in a string or the nominal number of bytes required to store a variable.</summary>
5161       <param name="Expression">Any valid <see langword="String" /> expression or variable name. If <paramref name="Expression" /> is of type <see langword="Object" />, the <see langword="Len" /> function returns the size as it will be written to the file by the <see langword="FilePut" /> function.</param>
5162       <returns>An integer containing either the number of characters in a string or the nominal number of bytes required to store a variable.</returns>
5163     </member>
5164     <member name="M:Microsoft.VisualBasic.Strings.Len(System.Decimal)">
5165       <summary>Returns an integer containing either the number of characters in a string or the nominal number of bytes required to store a variable.</summary>
5166       <param name="Expression">Any valid <see langword="String" /> expression or variable name. If <paramref name="Expression" /> is of type <see langword="Object" />, the <see langword="Len" /> function returns the size as it will be written to the file by the <see langword="FilePut" /> function.</param>
5167       <returns>An integer containing either the number of characters in a string or the nominal number of bytes required to store a variable.</returns>
5168     </member>
5169     <member name="M:Microsoft.VisualBasic.Strings.Len(System.Double)">
5170       <summary>Returns an integer containing either the number of characters in a string or the nominal number of bytes required to store a variable.</summary>
5171       <param name="Expression">Any valid <see langword="String" /> expression or variable name. If <paramref name="Expression" /> is of type <see langword="Object" />, the <see langword="Len" /> function returns the size as it will be written to the file by the <see langword="FilePut" /> function.</param>
5172       <returns>An integer containing either the number of characters in a string or the nominal number of bytes required to store a variable.</returns>
5173     </member>
5174     <member name="M:Microsoft.VisualBasic.Strings.Len(System.Int16)">
5175       <summary>Returns an integer containing either the number of characters in a string or the nominal number of bytes required to store a variable.</summary>
5176       <param name="Expression">Any valid <see langword="String" /> expression or variable name. If <paramref name="Expression" /> is of type <see langword="Object" />, the <see langword="Len" /> function returns the size as it will be written to the file by the <see langword="FilePut" /> function.</param>
5177       <returns>An integer containing either the number of characters in a string or the nominal number of bytes required to store a variable.</returns>
5178     </member>
5179     <member name="M:Microsoft.VisualBasic.Strings.Len(System.Int32)">
5180       <summary>Returns an integer containing either the number of characters in a string or the nominal number of bytes required to store a variable.</summary>
5181       <param name="Expression">Any valid <see langword="String" /> expression or variable name. If <paramref name="Expression" /> is of type <see langword="Object" />, the <see langword="Len" /> function returns the size as it will be written to the file by the <see langword="FilePut" /> function.</param>
5182       <returns>An integer containing either the number of characters in a string or the nominal number of bytes required to store a variable.</returns>
5183     </member>
5184     <member name="M:Microsoft.VisualBasic.Strings.Len(System.Int64)">
5185       <summary>Returns an integer containing either the number of characters in a string or the nominal number of bytes required to store a variable.</summary>
5186       <param name="Expression">Any valid <see langword="String" /> expression or variable name. If <paramref name="Expression" /> is of type <see langword="Object" />, the <see langword="Len" /> function returns the size as it will be written to the file by the <see langword="FilePut" /> function.</param>
5187       <returns>An integer containing either the number of characters in a string or the nominal number of bytes required to store a variable.</returns>
5188     </member>
5189     <member name="M:Microsoft.VisualBasic.Strings.Len(System.Object)">
5190       <summary>Returns an integer containing either the number of characters in a string or the nominal number of bytes required to store a variable.</summary>
5191       <param name="Expression">Any valid <see langword="String" /> expression or variable name. If <paramref name="Expression" /> is of type <see langword="Object" />, the <see langword="Len" /> function returns the size as it will be written to the file by the <see langword="FilePut" /> function.</param>
5192       <returns>An integer containing either the number of characters in a string or the nominal number of bytes required to store a variable.</returns>
5193     </member>
5194     <member name="M:Microsoft.VisualBasic.Strings.Len(System.SByte)">
5195       <summary>Returns an integer containing either the number of characters in a string or the nominal number of bytes required to store a variable.</summary>
5196       <param name="Expression">Any valid <see langword="String" /> expression or variable name. If <paramref name="Expression" /> is of type <see langword="Object" />, the <see langword="Len" /> function returns the size as it will be written to the file by the <see langword="FilePut" /> function.</param>
5197       <returns>An integer containing either the number of characters in a string or the nominal number of bytes required to store a variable.</returns>
5198     </member>
5199     <member name="M:Microsoft.VisualBasic.Strings.Len(System.Single)">
5200       <summary>Returns an integer containing either the number of characters in a string or the nominal number of bytes required to store a variable.</summary>
5201       <param name="Expression">Any valid <see langword="String" /> expression or variable name. If <paramref name="Expression" /> is of type <see langword="Object" />, the <see langword="Len" /> function returns the size as it will be written to the file by the <see langword="FilePut" /> function.</param>
5202       <returns>An integer containing either the number of characters in a string or the nominal number of bytes required to store a variable.</returns>
5203     </member>
5204     <member name="M:Microsoft.VisualBasic.Strings.Len(System.String)">
5205       <summary>Returns an integer containing either the number of characters in a string or the nominal number of bytes required to store a variable.</summary>
5206       <param name="Expression">Any valid <see langword="String" /> expression or variable name. If <paramref name="Expression" /> is of type <see langword="Object" />, the <see langword="Len" /> function returns the size as it will be written to the file by the <see langword="FilePut" /> function.</param>
5207       <returns>An integer containing either the number of characters in a string or the nominal number of bytes required to store a variable.</returns>
5208     </member>
5209     <member name="M:Microsoft.VisualBasic.Strings.Len(System.UInt16)">
5210       <summary>Returns an integer containing either the number of characters in a string or the nominal number of bytes required to store a variable.</summary>
5211       <param name="Expression">Any valid <see langword="String" /> expression or variable name. If <paramref name="Expression" /> is of type <see langword="Object" />, the <see langword="Len" /> function returns the size as it will be written to the file by the <see langword="FilePut" /> function.</param>
5212       <returns>An integer containing either the number of characters in a string or the nominal number of bytes required to store a variable.</returns>
5213     </member>
5214     <member name="M:Microsoft.VisualBasic.Strings.Len(System.UInt32)">
5215       <summary>Returns an integer containing either the number of characters in a string or the nominal number of bytes required to store a variable.</summary>
5216       <param name="Expression">Any valid <see langword="String" /> expression or variable name. If <paramref name="Expression" /> is of type <see langword="Object" />, the <see langword="Len" /> function returns the size as it will be written to the file by the <see langword="FilePut" /> function.</param>
5217       <returns>An integer containing either the number of characters in a string or the nominal number of bytes required to store a variable.</returns>
5218     </member>
5219     <member name="M:Microsoft.VisualBasic.Strings.Len(System.UInt64)">
5220       <summary>Returns an integer containing either the number of characters in a string or the nominal number of bytes required to store a variable.</summary>
5221       <param name="Expression">Any valid <see langword="String" /> expression or variable name. If <paramref name="Expression" /> is of type <see langword="Object" />, the <see langword="Len" /> function returns the size as it will be written to the file by the <see langword="FilePut" /> function.</param>
5222       <returns>An integer containing either the number of characters in a string or the nominal number of bytes required to store a variable.</returns>
5223     </member>
5224     <member name="M:Microsoft.VisualBasic.Strings.LSet(System.String,System.Int32)">
5225       <summary>Returns a left-aligned string containing the specified string adjusted to the specified length.</summary>
5226       <param name="Source">Required. <see langword="String" /> expression. Name of string variable.</param>
5227       <param name="Length">Required. <see langword="Integer" /> expression. Length of returned string.</param>
5228       <returns>A left-aligned string containing the specified string adjusted to the specified length.</returns>
5229     </member>
5230     <member name="M:Microsoft.VisualBasic.Strings.LTrim(System.String)">
5231       <summary>Returns a string containing a copy of a specified string with no leading spaces (<see langword="LTrim" />), no trailing spaces (<see langword="RTrim" />), or no leading or trailing spaces (<see langword="Trim" />).</summary>
5232       <param name="str">Required. Any valid <see langword="String" /> expression.</param>
5233       <returns>A string containing a copy of a specified string with no leading spaces (<see langword="LTrim" />), no trailing spaces (<see langword="RTrim" />), or no leading or trailing spaces (<see langword="Trim" />).</returns>
5234     </member>
5235     <member name="M:Microsoft.VisualBasic.Strings.Mid(System.String,System.Int32)">
5236       <summary>Returns a string that contains all the characters starting from a specified position in a string.</summary>
5237       <param name="str">Required. <see langword="String" /> expression from which characters are returned.</param>
5238       <param name="Start">Required. <see langword="Integer" /> expression. Starting position of the characters to return. If <paramref name="Start" /> is greater than the number of characters in <paramref name="str" />, the <see langword="Mid" /> function returns a zero-length string (""). <paramref name="Start" /> is one-based.</param>
5239       <exception cref="T:System.ArgumentException">
5240         <paramref name="Start" /> &lt;= 0 or <paramref name="Length" /> &lt; 0.</exception>
5241       <returns>A string that consists of all the characters starting from the specified position in the string.</returns>
5242     </member>
5243     <member name="M:Microsoft.VisualBasic.Strings.Mid(System.String,System.Int32,System.Int32)">
5244       <summary>Returns a string that contains a specified number of characters starting from a specified position in a string.</summary>
5245       <param name="str">Required. <see langword="String" /> expression from which characters are returned.</param>
5246       <param name="Start">Required. <see langword="Integer" /> expression. Starting position of the characters to return. If <paramref name="Start" /> is greater than the number of characters in <paramref name="str" />, the <see langword="Mid" /> function returns a zero-length string (""). <paramref name="Start" /> is one based.</param>
5247       <param name="Length">Optional. <see langword="Integer" /> expression. Number of characters to return. If omitted or if there are fewer than <paramref name="Length" /> characters in the text (including the character at position <paramref name="Start" />), all characters from the start position to the end of the string are returned.</param>
5248       <exception cref="T:System.ArgumentException">
5249         <paramref name="Start" /> &lt;= 0 or <paramref name="Length" /> &lt; 0.</exception>
5250       <returns>A string that consists of the specified number of characters starting from the specified position in the string.</returns>
5251     </member>
5252     <member name="M:Microsoft.VisualBasic.Strings.Replace(System.String,System.String,System.String,System.Int32,System.Int32,Microsoft.VisualBasic.CompareMethod)">
5253       <summary>Returns a string in which a specified substring has been replaced with another substring a specified number of times.</summary>
5254       <param name="Expression">Required. String expression containing substring to replace.</param>
5255       <param name="Find">Required. Substring being searched for.</param>
5256       <param name="Replacement">Required. Replacement substring.</param>
5257       <param name="Start">Optional. Position within <paramref name="Expression" /> that starts a substring used for replacement. The return value of <see langword="Replace" /> is a string that begins at <paramref name="Start" />, with appropriate substitutions. If omitted, 1 is assumed.</param>
5258       <param name="Count">Optional. Number of substring substitutions to perform. If omitted, the default value is -1, which means "make all possible substitutions."</param>
5259       <param name="Compare">Optional. Numeric value indicating the kind of comparison to use when evaluating substrings. See Settings for values.</param>
5260       <exception cref="T:System.ArgumentException">
5261         <paramref name="Count" /> &lt; -1 or <paramref name="Start" /> &lt;= 0.</exception>
5262       <returns>One of the following values.
5263           <list type="table"><listheader><term>If</term><description>Replace returns</description></listheader><item><term><paramref name="Find" /> is zero-length or <see langword="Nothing" /></term><description> Copy of <paramref name="Expression" /></description></item><item><term><paramref name="Replace" /> is zero-length</term><description> Copy of <paramref name="Expression" /> with no occurrences of <paramref name="Find" /></description></item><item><term><paramref name="Expression" /> is zero-length or <see langword="Nothing" />, or <paramref name="Start" /> is greater than length of <paramref name="Expression" /></term><description><see langword="Nothing" /></description></item><item><term><paramref name="Count" /> is 0</term><description> Copy of <paramref name="Expression" /></description></item></list></returns>
5264     </member>
5265     <member name="M:Microsoft.VisualBasic.Strings.Right(System.String,System.Int32)">
5266       <summary>Returns a string containing a specified number of characters from the right side of a string.</summary>
5267       <param name="str">Required. <see langword="String" /> expression from which the rightmost characters are returned.</param>
5268       <param name="Length">Required. <see langword="Integer" />. Numeric expression indicating how many characters to return. If 0, a zero-length string ("") is returned. If greater than or equal to the number of characters in <paramref name="str" />, the entire string is returned.</param>
5269       <exception cref="T:System.ArgumentException">
5270         <paramref name="Length" /> &lt; 0.</exception>
5271       <returns>A string containing a specified number of characters from the right side of a string.</returns>
5272     </member>
5273     <member name="M:Microsoft.VisualBasic.Strings.RSet(System.String,System.Int32)">
5274       <summary>Returns a right-aligned string containing the specified string adjusted to the specified length.</summary>
5275       <param name="Source">Required. <see langword="String" /> expression. Name of string variable.</param>
5276       <param name="Length">Required. <see langword="Integer" /> expression. Length of returned string.</param>
5277       <returns>A right-aligned string containing the specified string adjusted to the specified length.</returns>
5278     </member>
5279     <member name="M:Microsoft.VisualBasic.Strings.RTrim(System.String)">
5280       <summary>Returns a string containing a copy of a specified string with no leading spaces (<see langword="LTrim" />), no trailing spaces (<see langword="RTrim" />), or no leading or trailing spaces (<see langword="Trim" />).</summary>
5281       <param name="str">Required. Any valid <see langword="String" /> expression.</param>
5282       <returns>A string containing a copy of a specified string with no leading spaces (<see langword="LTrim" />), no trailing spaces (<see langword="RTrim" />), or no leading or trailing spaces (<see langword="Trim" />).</returns>
5283     </member>
5284     <member name="M:Microsoft.VisualBasic.Strings.Space(System.Int32)">
5285       <summary>Returns a string consisting of the specified number of spaces.</summary>
5286       <param name="Number">Required. <see langword="Integer" /> expression. The number of spaces you want in the string.</param>
5287       <exception cref="T:System.ArgumentException">
5288         <paramref name="Number" /> &lt; 0.</exception>
5289       <returns>A string consisting of the specified number of spaces.</returns>
5290     </member>
5291     <member name="M:Microsoft.VisualBasic.Strings.Split(System.String,System.String,System.Int32,Microsoft.VisualBasic.CompareMethod)">
5292       <summary>Returns a zero-based, one-dimensional array containing a specified number of substrings.</summary>
5293       <param name="Expression">Required. <see langword="String" /> expression containing substrings and delimiters.</param>
5294       <param name="Delimiter">Optional. Any single character used to identify substring limits. If <paramref name="Delimiter" /> is omitted, the space character (" ") is assumed to be the delimiter.</param>
5295       <param name="Limit">Optional. Maximum number of substrings into which the input string should be split. The default, -1, indicates that the input string should be split at every occurrence of the <paramref name="Delimiter" /> string.</param>
5296       <param name="Compare">Optional. Numeric value indicating the comparison to use when evaluating substrings. See "Settings" for values.</param>
5297       <returns>
5298         <see langword="String" /> array. If <paramref name="Expression" /> is a zero-length string (""), <see langword="Split" /> returns a single-element array containing a zero-length string. If <paramref name="Delimiter" /> is a zero-length string, or if it does not appear anywhere in <paramref name="Expression" />, <see langword="Split" /> returns a single-element array containing the entire <paramref name="Expression" /> string.</returns>
5299     </member>
5300     <member name="M:Microsoft.VisualBasic.Strings.StrComp(System.String,System.String,Microsoft.VisualBasic.CompareMethod)">
5301       <summary>Returns -1, 0, or 1, based on the result of a string comparison.</summary>
5302       <param name="String1">Required. Any valid <see langword="String" /> expression.</param>
5303       <param name="String2">Required. Any valid <see langword="String" /> expression.</param>
5304       <param name="Compare">Optional. Specifies the type of string comparison. If <paramref name="Compare" /> is omitted, the <see langword="Option Compare" /> setting determines the type of comparison.</param>
5305       <exception cref="T:System.ArgumentException">
5306         <paramref name="Compare" /> value is not valid.</exception>
5307       <returns>One of the following values:
5308           <list type="table"><listheader><term>If</term><description>StrComp returns</description></listheader><item><term><paramref name="String1" /> sorts ahead of <paramref name="String2" /></term><description>-1</description></item><item><term><paramref name="String1" /> is equal to <paramref name="String2" /></term><description>0</description></item><item><term><paramref name="String1" /> sorts after <paramref name="String2" /></term><description>1</description></item></list></returns>
5309     </member>
5310     <member name="M:Microsoft.VisualBasic.Strings.StrConv(System.String,Microsoft.VisualBasic.VbStrConv,System.Int32)">
5311       <summary>Returns a string converted as specified.</summary>
5312       <param name="str">Required. <see langword="String" /> expression to be converted.</param>
5313       <param name="Conversion">Required. <see cref="T:Microsoft.VisualBasic.VbStrConv" /> member. The enumeration value specifying the type of conversion to perform.</param>
5314       <param name="LocaleID">Optional. The <see langword="LocaleID" /> value, if different from the system <see langword="LocaleID" /> value. (The system <see langword="LocaleID" /> value is the default.)</param>
5315       <exception cref="T:System.ArgumentException">Unsupported <paramref name="LocaleID" />, <paramref name="Conversion" /> &lt; 0 or &gt; 2048, or unsupported conversion for specified locale.</exception>
5316       <returns>A string converted as specified.</returns>
5317     </member>
5318     <member name="M:Microsoft.VisualBasic.Strings.StrDup(System.Int32,System.Char)">
5319       <summary>Returns a string or object consisting of the specified character repeated the specified number of times.</summary>
5320       <param name="Number">Required. <see langword="Integer" /> expression. The length to the string to be returned.</param>
5321       <param name="Character">Required. Any valid <see langword="Char" />, <see langword="String" />, or <see langword="Object" /> expression. Only the first character of the expression will be used. If Character is of type <see langword="Object" />, it must contain either a <see langword="Char" /> or a <see langword="String" /> value.</param>
5322       <exception cref="T:System.ArgumentException">
5323         <paramref name="Number" /> is less than 0 or <paramref name="Character" /> type is not valid.</exception>
5324       <exception cref="T:System.ArgumentNullException">
5325         <paramref name="Character" /> is <see langword="Nothing" />.</exception>
5326       <returns>A string or object consisting of the specified character repeated the specified number of times.</returns>
5327     </member>
5328     <member name="M:Microsoft.VisualBasic.Strings.StrDup(System.Int32,System.Object)">
5329       <summary>Returns a string or object consisting of the specified character repeated the specified number of times.</summary>
5330       <param name="Number">Required. <see langword="Integer" /> expression. The length to the string to be returned.</param>
5331       <param name="Character">Required. Any valid <see langword="Char" />, <see langword="String" />, or <see langword="Object" /> expression. Only the first character of the expression will be used. If Character is of type <see langword="Object" />, it must contain either a <see langword="Char" /> or a <see langword="String" /> value.</param>
5332       <exception cref="T:System.ArgumentException">
5333         <paramref name="Number" /> is less than 0 or <paramref name="Character" /> type is not valid.</exception>
5334       <exception cref="T:System.ArgumentNullException">
5335         <paramref name="Character" /> is <see langword="Nothing" />.</exception>
5336       <returns>A string or object consisting of the specified character repeated the specified number of times.</returns>
5337     </member>
5338     <member name="M:Microsoft.VisualBasic.Strings.StrDup(System.Int32,System.String)">
5339       <summary>Returns a string or object consisting of the specified character repeated the specified number of times.</summary>
5340       <param name="Number">Required. <see langword="Integer" /> expression. The length to the string to be returned.</param>
5341       <param name="Character">Required. Any valid <see langword="Char" />, <see langword="String" />, or <see langword="Object" /> expression. Only the first character of the expression will be used. If Character is of type <see langword="Object" />, it must contain either a <see langword="Char" /> or a <see langword="String" /> value.</param>
5342       <exception cref="T:System.ArgumentException">
5343         <paramref name="Number" /> is less than 0 or <paramref name="Character" /> type is not valid.</exception>
5344       <exception cref="T:System.ArgumentNullException">
5345         <paramref name="Character" /> is <see langword="Nothing" />.</exception>
5346       <returns>A string or object consisting of the specified character repeated the specified number of times.</returns>
5347     </member>
5348     <member name="M:Microsoft.VisualBasic.Strings.StrReverse(System.String)">
5349       <summary>Returns a string in which the character order of a specified string is reversed.</summary>
5350       <param name="Expression">Required. String expression whose characters are to be reversed. If <paramref name="Expression" /> is a zero-length string (""), a zero-length string is returned.</param>
5351       <returns>A string in which the character order of a specified string is reversed.</returns>
5352     </member>
5353     <member name="M:Microsoft.VisualBasic.Strings.Trim(System.String)">
5354       <summary>Returns a string containing a copy of a specified string with no leading spaces (<see langword="LTrim" />), no trailing spaces (<see langword="RTrim" />), or no leading or trailing spaces (<see langword="Trim" />).</summary>
5355       <param name="str">Required. Any valid <see langword="String" /> expression.</param>
5356       <returns>A string containing a copy of a specified string with no leading spaces (<see langword="LTrim" />), no trailing spaces (<see langword="RTrim" />), or no leading or trailing spaces (<see langword="Trim" />).</returns>
5357     </member>
5358     <member name="M:Microsoft.VisualBasic.Strings.UCase(System.Char)">
5359       <summary>Returns a string or character containing the specified string converted to uppercase.</summary>
5360       <param name="Value">Required. Any valid <see langword="String" /> or <see langword="Char" /> expression.</param>
5361       <returns>A string or character containing the specified string converted to uppercase.</returns>
5362     </member>
5363     <member name="M:Microsoft.VisualBasic.Strings.UCase(System.String)">
5364       <summary>Returns a string or character containing the specified string converted to uppercase.</summary>
5365       <param name="Value">Required. Any valid <see langword="String" /> or <see langword="Char" /> expression.</param>
5366       <returns>A string or character containing the specified string converted to uppercase.</returns>
5367     </member>
5368     <member name="T:Microsoft.VisualBasic.TabInfo">
5369       <summary>This class supports the Visual Basic <see langword="Print" /> and <see langword="PrintLine" /> functions.</summary>
5370     </member>
5371     <member name="F:Microsoft.VisualBasic.TabInfo.Column">
5372       <summary>This field supports the Visual Basic <see langword="Print" /> and <see langword="PrintLine" /> functions.</summary>
5373     </member>
5374     <member name="T:Microsoft.VisualBasic.TriState">
5375       <summary>Indicates a Boolean value or whether the default should be used when calling number-formatting functions.</summary>
5376     </member>
5377     <member name="F:Microsoft.VisualBasic.TriState.False">
5378       <summary>False. The numeric value of this member is 0.</summary>
5379     </member>
5380     <member name="F:Microsoft.VisualBasic.TriState.True">
5381       <summary>True. The numeric value of this member is -1.</summary>
5382     </member>
5383     <member name="F:Microsoft.VisualBasic.TriState.UseDefault">
5384       <summary>Default setting. The numeric value of this member is -2.</summary>
5385     </member>
5386     <member name="T:Microsoft.VisualBasic.VariantType">
5387       <summary>Indicates the type of a variant object, returned by the <see langword="VarType" /> function.</summary>
5388     </member>
5389     <member name="F:Microsoft.VisualBasic.VariantType.Array">
5390       <summary>Array. This member is equivalent to the Visual Basic constant <see langword="vbArray" />.</summary>
5391     </member>
5392     <member name="F:Microsoft.VisualBasic.VariantType.Boolean">
5393       <summary>
5394         <see langword="Boolean" />. (<see langword="True" /> or <see langword="False" />.) This member is equivalent to the Visual Basic constant <see langword="vbBoolean" />.</summary>
5395     </member>
5396     <member name="F:Microsoft.VisualBasic.VariantType.Byte">
5397       <summary>
5398         <see langword="Byte" />. (0 through 255.) This member is equivalent to the Visual Basic constant <see langword="vbByte" />.</summary>
5399     </member>
5400     <member name="F:Microsoft.VisualBasic.VariantType.Char">
5401       <summary>
5402         <see langword="Char" />. (0 through 65535.) This member is equivalent to the Visual Basic constant <see langword="vbChar" />.</summary>
5403     </member>
5404     <member name="F:Microsoft.VisualBasic.VariantType.Currency">
5405       <summary>Currency. This member is equivalent to the Visual Basic constant <see langword="vbCurrency" />.</summary>
5406     </member>
5407     <member name="F:Microsoft.VisualBasic.VariantType.DataObject">
5408       <summary>DataObject.</summary>
5409     </member>
5410     <member name="F:Microsoft.VisualBasic.VariantType.Date">
5411       <summary>
5412         <see langword="Date" />. (0:00:00 on January 1, 0001 through 11:59:59 PM on December 31, 9999.) This member is equivalent to the Visual Basic constant <see langword="vbDate" />.</summary>
5413     </member>
5414     <member name="F:Microsoft.VisualBasic.VariantType.Decimal">
5415       <summary>
5416         <see langword="Decimal" />. (0 through +/-79,228,162,514,264,337,593,543,950,335 with no decimal point; 0 through +/-7.9228162514264337593543950335 with 28 places to the right of the decimal; smallest non-zero number is +/-0.0000000000000000000000000001.) This member is equivalent to the Visual Basic constant <see langword="vbDecimal" />.</summary>
5417     </member>
5418     <member name="F:Microsoft.VisualBasic.VariantType.Double">
5419       <summary>
5420         <see langword="Double" />. (-1.79769313486231E+308 through -4.94065645841247E-324 for negative values; 4.94065645841247E-324 through 1.79769313486231E+308 for positive values.) This member is equivalent to the Visual Basic constant <see langword="vbDouble" />.</summary>
5421     </member>
5422     <member name="F:Microsoft.VisualBasic.VariantType.Empty">
5423       <summary>Null reference. This member is equivalent to the Visual Basic constant <see langword="vbEmpty" />.</summary>
5424     </member>
5425     <member name="F:Microsoft.VisualBasic.VariantType.Error">
5426       <summary>
5427         <see cref="T:System.Exception" />
5428       </summary>
5429     </member>
5430     <member name="F:Microsoft.VisualBasic.VariantType.Integer">
5431       <summary>
5432         <see langword="Integer" />. (-2,147,483,648 through 2,147,483,647.) This member is equivalent to the Visual Basic constant <see langword="vbInteger" />.</summary>
5433     </member>
5434     <member name="F:Microsoft.VisualBasic.VariantType.Long">
5435       <summary>
5436         <see langword="Long" />. (-9,223,372,036,854,775,808 through 9,223,372,036,854,775,807.) This member is equivalent to the Visual Basic constant <see langword="vbLong" />.</summary>
5437     </member>
5438     <member name="F:Microsoft.VisualBasic.VariantType.Null">
5439       <summary>Null object. This member is equivalent to the Visual Basic constant <see langword="vbNull" />.</summary>
5440     </member>
5441     <member name="F:Microsoft.VisualBasic.VariantType.Object">
5442       <summary>Any type can be stored in a variable of type <see langword="Object" />. This member is equivalent to the Visual Basic constant <see langword="vbObject" />.</summary>
5443     </member>
5444     <member name="F:Microsoft.VisualBasic.VariantType.Short">
5445       <summary>
5446         <see langword="Short" />. (-32,768 through 32,767.)</summary>
5447     </member>
5448     <member name="F:Microsoft.VisualBasic.VariantType.Single">
5449       <summary>
5450         <see langword="Single" />. (-3.402823E+38 through -1.401298E-45 for negative values; 1.401298E-45 through 3.402823E+38 for positive values.) This member is equivalent to the Visual Basic constant <see langword="vbSingle" />.</summary>
5451     </member>
5452     <member name="F:Microsoft.VisualBasic.VariantType.String">
5453       <summary>
5454         <see langword="String" />. (0 to approximately 2 billion Unicode characters.) This member is equivalent to the Visual Basic constant <see langword="vbString" />.</summary>
5455     </member>
5456     <member name="F:Microsoft.VisualBasic.VariantType.UserDefinedType">
5457       <summary>User-defined type. Each member of the structure has a range determined by its data type and independent of the ranges of the other members. This member is equivalent to the Visual Basic constant <see langword="vbUserDefinedType" />.</summary>
5458     </member>
5459     <member name="F:Microsoft.VisualBasic.VariantType.Variant">
5460       <summary>
5461         <see langword="Variant" />. This member is equivalent to the Visual Basic constant <see langword="vbVariant" />.</summary>
5462     </member>
5463     <member name="T:Microsoft.VisualBasic.VBFixedArrayAttribute">
5464       <summary>Indicates that an array in a structure or non-local variable should be treated as a fixed-length array.</summary>
5465     </member>
5466     <member name="M:Microsoft.VisualBasic.VBFixedArrayAttribute.#ctor(System.Int32)">
5467       <summary>Initializes the value of the <see langword="Bounds" /> property.</summary>
5468       <param name="UpperBound1">Initializes the value of upper field, which represents the size of the first dimension of the array.</param>
5469     </member>
5470     <member name="M:Microsoft.VisualBasic.VBFixedArrayAttribute.#ctor(System.Int32,System.Int32)">
5471       <summary>Initializes the value of the <see langword="Bounds" /> property.</summary>
5472       <param name="UpperBound1">Initializes the value of upper field, which represents the size of the first dimension of the array.</param>
5473       <param name="UpperBound2">Initializes the value of upper field, which represents the size of the second dimension of the array.</param>
5474     </member>
5475     <member name="P:Microsoft.VisualBasic.VBFixedArrayAttribute.Bounds">
5476       <summary>Returns the bounds of the array.</summary>
5477       <returns>Contains an integer array that represents the bounds of the array.</returns>
5478     </member>
5479     <member name="P:Microsoft.VisualBasic.VBFixedArrayAttribute.Length">
5480       <summary>Returns the size of the array.</summary>
5481       <returns>Contains an integer that represents the number of elements in the array.</returns>
5482     </member>
5483     <member name="T:Microsoft.VisualBasic.VBFixedStringAttribute">
5484       <summary>Indicates that a string should be treated as if it were fixed length.</summary>
5485     </member>
5486     <member name="M:Microsoft.VisualBasic.VBFixedStringAttribute.#ctor(System.Int32)">
5487       <summary>Initializes the value of the <see langword="SizeConst" /> field.</summary>
5488       <param name="Length">The length of the fixed string.</param>
5489     </member>
5490     <member name="P:Microsoft.VisualBasic.VBFixedStringAttribute.Length">
5491       <summary>Gets the length of the string.</summary>
5492       <returns>The length of the string.</returns>
5493     </member>
5494     <member name="T:Microsoft.VisualBasic.VBMath">
5495       <summary>The <see langword="VbMath" /> module contains procedures used to perform mathematical operations.</summary>
5496     </member>
5497     <member name="M:Microsoft.VisualBasic.VBMath.Randomize">
5498       <summary>Initializes the random-number generator.</summary>
5499     </member>
5500     <member name="M:Microsoft.VisualBasic.VBMath.Randomize(System.Double)">
5501       <summary>Initializes the random-number generator.</summary>
5502       <param name="Number">Optional. An <see langword="Object" /> or any valid numeric expression.</param>
5503     </member>
5504     <member name="M:Microsoft.VisualBasic.VBMath.Rnd">
5505       <summary>Returns a random number of type <see cref="T:System.Single" />.</summary>
5506       <returns>The next random number in the sequence.</returns>
5507     </member>
5508     <member name="M:Microsoft.VisualBasic.VBMath.Rnd(System.Single)">
5509       <summary>Returns a random number of type <see cref="T:System.Single" />.</summary>
5510       <param name="Number">Optional. A <see cref="T:System.Single" /> value or any valid <see cref="T:System.Single" /> expression.</param>
5511       <returns>If number is less than zero, Rnd generates the same number every time, using <paramref name="Number" /> as the seed. If number is greater than zero, Rnd generates the next random number in the sequence. If number is equal to zero, Rnd generates the most recently generated number. If number is not supplied, Rnd generates the next random number in the sequence.</returns>
5512     </member>
5513     <member name="T:Microsoft.VisualBasic.VbStrConv">
5514       <summary>Indicates which type of conversion to perform when calling the <see langword="StrConv" /> function.</summary>
5515     </member>
5516     <member name="F:Microsoft.VisualBasic.VbStrConv.Hiragana">
5517       <summary>Converts Katakana characters in the string to Hiragana characters. Applies to Japanese locale only. This member is equivalent to the Visual Basic constant <see langword="vbHiragana" />.</summary>
5518     </member>
5519     <member name="F:Microsoft.VisualBasic.VbStrConv.Katakana">
5520       <summary>Converts Hiragana characters in the string to Katakana characters. Applies to Japanese locale only. This member is equivalent to the Visual Basic constant <see langword="vbKatakana" />.</summary>
5521     </member>
5522     <member name="F:Microsoft.VisualBasic.VbStrConv.LinguisticCasing">
5523       <summary>Converts the string from file system rules for casing to linguistic rules. This member is equivalent to the Visual Basic constant <see langword="vbLinguisticCasing" />.</summary>
5524     </member>
5525     <member name="F:Microsoft.VisualBasic.VbStrConv.Lowercase">
5526       <summary>Converts the string to lowercase characters. This member is equivalent to the Visual Basic constant <see langword="vbLowerCase" />.</summary>
5527     </member>
5528     <member name="F:Microsoft.VisualBasic.VbStrConv.Narrow">
5529       <summary>Converts wide (double-byte) characters in the string to narrow (single-byte) characters. Applies to Asian locales. This member is equivalent to the Visual Basic constant <see langword="vbNarrow" />.</summary>
5530     </member>
5531     <member name="F:Microsoft.VisualBasic.VbStrConv.None">
5532       <summary>Performs no conversion.</summary>
5533     </member>
5534     <member name="F:Microsoft.VisualBasic.VbStrConv.ProperCase">
5535       <summary>Converts the first letter of every word in the string to uppercase. This member is equivalent to the Visual Basic constant <see langword="vbProperCase" />.</summary>
5536     </member>
5537     <member name="F:Microsoft.VisualBasic.VbStrConv.SimplifiedChinese">
5538       <summary>Converts the string to Simplified Chinese characters. This member is equivalent to the Visual Basic constant <see langword="vbSimplifiedChinese" />.</summary>
5539     </member>
5540     <member name="F:Microsoft.VisualBasic.VbStrConv.TraditionalChinese">
5541       <summary>Converts the string to Traditional Chinese characters. This member is equivalent to the Visual Basic constant <see langword="vbTraditionalChinese" />.</summary>
5542     </member>
5543     <member name="F:Microsoft.VisualBasic.VbStrConv.Uppercase">
5544       <summary>Converts the string to uppercase characters. This member is equivalent to the Visual Basic constant <see langword="vbUpperCase" />.</summary>
5545     </member>
5546     <member name="F:Microsoft.VisualBasic.VbStrConv.Wide">
5547       <summary>Converts narrow (single-byte) characters in the string to wide (double-byte) characters. Applies to Asian locales. This member is equivalent to the Visual Basic constant <see langword="vbWide" />. The conversion may use Normalization Form C even if an input character is already full-width. For example, the string "は゛" (which is already full-width) is normalized to "ば". See Unicode normalization forms.</summary>
5548     </member>
5549   </members>
5550 </doc>