forked from dotnet/docs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathFlowControl.xml
335 lines (315 loc) · 17.8 KB
/
FlowControl.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
<Type Name="FlowControl" FullName="Microsoft.VisualBasic.CompilerServices.FlowControl">
<TypeSignature Language="C#" Value="public sealed class FlowControl" />
<TypeSignature Language="ILAsm" Value=".class public auto ansi sealed FlowControl extends System.Object" />
<TypeSignature Language="DocId" Value="T:Microsoft.VisualBasic.CompilerServices.FlowControl" />
<AssemblyInfo>
<AssemblyName>Microsoft.VisualBasic</AssemblyName>
<AssemblyVersion>10.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Base>
<BaseTypeName>System.Object</BaseTypeName>
</Base>
<Interfaces />
<Attributes>
<Attribute>
<AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)</AttributeName>
</Attribute>
</Attributes>
<Docs>
<summary>Provides services to the Visual Basic compiler for compiling <see langword="For...Next" /> and <see langword="For Each" /> loops.</summary>
<remarks>
<format type="text/markdown"><![CDATA[
## Remarks
This class supports the Visual Basic compiler and is not intended to be used directly from your code.
]]></format>
</remarks>
<forInternalUseOnly />
</Docs>
<Members>
<Member MemberName="CheckForSyncLockOnValueType">
<MemberSignature Language="C#" Value="public static void CheckForSyncLockOnValueType (object obj);" />
<MemberSignature Language="ILAsm" Value=".method public static void CheckForSyncLockOnValueType(object obj) cil managed" />
<MemberSignature Language="DocId" Value="M:Microsoft.VisualBasic.CompilerServices.FlowControl.CheckForSyncLockOnValueType(System.Object)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.VisualBasic</AssemblyName>
<AssemblyVersion>10.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Void</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="obj" Type="System.Object" />
</Parameters>
<Docs>
<param name="obj">The data type for which to check for synchronization lock.</param>
<summary>Checks for a synchronization lock on the specified type.</summary>
<remarks>
<format type="text/markdown"><![CDATA[
## Remarks
This class supports the Visual Basic compiler and is not intended to be used directly from your code.
]]></format>
</remarks>
<forInternalUseOnly />
</Docs>
</Member>
<Member MemberName="ForEachInArr">
<MemberSignature Language="C#" Value="public static System.Collections.IEnumerator ForEachInArr (Array ary);" />
<MemberSignature Language="ILAsm" Value=".method public static class System.Collections.IEnumerator ForEachInArr(class System.Array ary) cil managed" />
<MemberSignature Language="DocId" Value="M:Microsoft.VisualBasic.CompilerServices.FlowControl.ForEachInArr(System.Array)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.VisualBasic</AssemblyName>
<AssemblyVersion>10.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Collections.IEnumerator</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="ary" Type="System.Array" />
</Parameters>
<Docs>
<param name="ary">An array being iterated over in a <see langword="For Each" /> loop.</param>
<summary>Gets the enumerator for an array being iterated over in a <see langword="For Each" /> loop.</summary>
<returns>The enumerator for <paramref name="ary" />.</returns>
<remarks>
<format type="text/markdown"><![CDATA[
## Remarks
This class supports the Visual Basic compiler and is not intended to be used directly from your code.
]]></format>
</remarks>
<forInternalUseOnly />
</Docs>
</Member>
<Member MemberName="ForEachInObj">
<MemberSignature Language="C#" Value="public static System.Collections.IEnumerator ForEachInObj (object obj);" />
<MemberSignature Language="ILAsm" Value=".method public static class System.Collections.IEnumerator ForEachInObj(object obj) cil managed" />
<MemberSignature Language="DocId" Value="M:Microsoft.VisualBasic.CompilerServices.FlowControl.ForEachInObj(System.Object)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.VisualBasic</AssemblyName>
<AssemblyVersion>10.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Collections.IEnumerator</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="obj" Type="System.Object" />
</Parameters>
<Docs>
<param name="obj">An object being iterated over in a <see langword="For Each" /> loop.</param>
<summary>Gets the enumerator for an object being iterated over in a <see langword="For Each" /> loop.</summary>
<returns>The enumerator for <paramref name="obj" />.</returns>
<remarks>
<format type="text/markdown"><![CDATA[
## Remarks
This class supports the Visual Basic compiler and is not intended to be used directly from your code.
]]></format>
</remarks>
<forInternalUseOnly />
</Docs>
</Member>
<Member MemberName="ForEachNextObj">
<MemberSignature Language="C#" Value="public static bool ForEachNextObj (ref object obj, System.Collections.IEnumerator enumerator);" />
<MemberSignature Language="ILAsm" Value=".method public static bool ForEachNextObj(object obj, class System.Collections.IEnumerator enumerator) cil managed" />
<MemberSignature Language="DocId" Value="M:Microsoft.VisualBasic.CompilerServices.FlowControl.ForEachNextObj(System.Object@,System.Collections.IEnumerator)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.VisualBasic</AssemblyName>
<AssemblyVersion>10.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Boolean</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="obj" Type="System.Object&" RefType="ref" />
<Parameter Name="enumerator" Type="System.Collections.IEnumerator" />
</Parameters>
<Docs>
<param name="obj">The range variable of the <see langword="For Each" /> loop.</param>
<param name="enumerator">The <see cref="T:System.Collections.IEnumerator" /> of the object being iterated over in the <see langword="For Each" /> loop.</param>
<summary>Sets a reference to the next object in a <see langword="For Each" /> loop.</summary>
<returns>
<see langword="True" /> if <paramref name="obj" /> refers to the next object; <see langword="False" /> if there are no more objects and <paramref name="obj" /> is <see langword="Nothing" />.</returns>
<remarks>
<format type="text/markdown"><![CDATA[
## Remarks
This class supports the Visual Basic compiler and is not intended to be used directly from your code.
]]></format>
</remarks>
<forInternalUseOnly />
</Docs>
</Member>
<Member MemberName="ForLoopInitObj">
<MemberSignature Language="C#" Value="public static bool ForLoopInitObj (object Counter, object Start, object Limit, object StepValue, ref object LoopForResult, ref object CounterResult);" />
<MemberSignature Language="ILAsm" Value=".method public static bool ForLoopInitObj(object Counter, object Start, object Limit, object StepValue, object LoopForResult, object CounterResult) cil managed" />
<MemberSignature Language="DocId" Value="M:Microsoft.VisualBasic.CompilerServices.FlowControl.ForLoopInitObj(System.Object,System.Object,System.Object,System.Object,System.Object@,System.Object@)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.VisualBasic</AssemblyName>
<AssemblyVersion>10.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Boolean</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="Counter" Type="System.Object" />
<Parameter Name="Start" Type="System.Object" />
<Parameter Name="Limit" Type="System.Object" />
<Parameter Name="StepValue" Type="System.Object" />
<Parameter Name="LoopForResult" Type="System.Object&" RefType="ref" />
<Parameter Name="CounterResult" Type="System.Object&" RefType="ref" />
</Parameters>
<Docs>
<param name="Counter">The loop counter variable.</param>
<param name="Start">The initial value of the loop counter.</param>
<param name="Limit">The value of the <see langword="To" /> option.</param>
<param name="StepValue">The value of the <see langword="Step" /> option.</param>
<param name="LoopForResult">An object that contains verified values for loop values.</param>
<param name="CounterResult">The counter value for the next loop iteration.</param>
<summary>Initializes a <see langword="For...Next" /> loop.</summary>
<returns>
<see langword="False" /> if the loop has terminated; otherwise, <see langword="True" />.</returns>
<remarks>
<format type="text/markdown"><![CDATA[
## Remarks
This class supports the Visual Basic compiler and is not intended to be used directly from your code.
]]></format>
</remarks>
<forInternalUseOnly />
</Docs>
</Member>
<Member MemberName="ForNextCheckDec">
<MemberSignature Language="C#" Value="public static bool ForNextCheckDec (decimal count, decimal limit, decimal StepValue);" />
<MemberSignature Language="ILAsm" Value=".method public static bool ForNextCheckDec(valuetype System.Decimal count, valuetype System.Decimal limit, valuetype System.Decimal StepValue) cil managed" />
<MemberSignature Language="DocId" Value="M:Microsoft.VisualBasic.CompilerServices.FlowControl.ForNextCheckDec(System.Decimal,System.Decimal,System.Decimal)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.VisualBasic</AssemblyName>
<AssemblyVersion>10.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Boolean</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="count" Type="System.Decimal" />
<Parameter Name="limit" Type="System.Decimal" />
<Parameter Name="StepValue" Type="System.Decimal" />
</Parameters>
<Docs>
<param name="count">Required. A <see langword="Decimal" /> value that represents the initial value passed for the loop counter variable.</param>
<param name="limit">Required. A <see langword="Decimal" /> value that represents the value passed by using the <see langword="To" /> keyword.</param>
<param name="StepValue">Required. A <see langword="Decimal" /> value that represents the value passed by using the <see langword="Step" /> keyword.</param>
<summary>Checks for valid values for the loop counter, <see langword="Step" />, and <see langword="To" /> values.</summary>
<returns>
<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>
<remarks>
<format type="text/markdown"><![CDATA[
## Remarks
This class supports the Visual Basic compiler and is not intended to be used directly from your code.
]]></format>
</remarks>
<forInternalUseOnly />
</Docs>
</Member>
<Member MemberName="ForNextCheckObj">
<MemberSignature Language="C#" Value="public static bool ForNextCheckObj (object Counter, object LoopObj, ref object CounterResult);" />
<MemberSignature Language="ILAsm" Value=".method public static bool ForNextCheckObj(object Counter, object LoopObj, object CounterResult) cil managed" />
<MemberSignature Language="DocId" Value="M:Microsoft.VisualBasic.CompilerServices.FlowControl.ForNextCheckObj(System.Object,System.Object,System.Object@)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.VisualBasic</AssemblyName>
<AssemblyVersion>10.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Boolean</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="Counter" Type="System.Object" />
<Parameter Name="LoopObj" Type="System.Object" />
<Parameter Name="CounterResult" Type="System.Object&" RefType="ref" />
</Parameters>
<Docs>
<param name="Counter">The loop counter variable.</param>
<param name="LoopObj">An object that contains verified values for loop values.</param>
<param name="CounterResult">The counter value for the next loop iteration.</param>
<summary>Increments a <see langword="For...Next" /> loop.</summary>
<returns>
<see langword="False" /> if the loop has terminated; otherwise, <see langword="True" />.</returns>
<remarks>
<format type="text/markdown"><![CDATA[
## Remarks
This class supports the Visual Basic compiler and is not intended to be used directly from your code.
]]></format>
</remarks>
<forInternalUseOnly />
</Docs>
</Member>
<Member MemberName="ForNextCheckR4">
<MemberSignature Language="C#" Value="public static bool ForNextCheckR4 (float count, float limit, float StepValue);" />
<MemberSignature Language="ILAsm" Value=".method public static bool ForNextCheckR4(float32 count, float32 limit, float32 StepValue) cil managed" />
<MemberSignature Language="DocId" Value="M:Microsoft.VisualBasic.CompilerServices.FlowControl.ForNextCheckR4(System.Single,System.Single,System.Single)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.VisualBasic</AssemblyName>
<AssemblyVersion>10.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Boolean</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="count" Type="System.Single" />
<Parameter Name="limit" Type="System.Single" />
<Parameter Name="StepValue" Type="System.Single" />
</Parameters>
<Docs>
<param name="count">Required. A <see langword="Single" /> value that represents the initial value passed for the loop counter variable.</param>
<param name="limit">Required. A <see langword="Single" /> value that represents the value passed by using the <see langword="To" /> keyword.</param>
<param name="StepValue">Required. A <see langword="Single" /> value that represents the value passed by using the <see langword="Step" /> keyword.</param>
<summary>Checks for valid values for the loop counter, <see langword="Step" />, and <see langword="To" /> values.</summary>
<returns>
<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>
<remarks>
<format type="text/markdown"><![CDATA[
## Remarks
This class supports the Visual Basic compiler and is not intended to be used directly from your code.
]]></format>
</remarks>
<forInternalUseOnly />
</Docs>
</Member>
<Member MemberName="ForNextCheckR8">
<MemberSignature Language="C#" Value="public static bool ForNextCheckR8 (double count, double limit, double StepValue);" />
<MemberSignature Language="ILAsm" Value=".method public static bool ForNextCheckR8(float64 count, float64 limit, float64 StepValue) cil managed" />
<MemberSignature Language="DocId" Value="M:Microsoft.VisualBasic.CompilerServices.FlowControl.ForNextCheckR8(System.Double,System.Double,System.Double)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.VisualBasic</AssemblyName>
<AssemblyVersion>10.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Boolean</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="count" Type="System.Double" />
<Parameter Name="limit" Type="System.Double" />
<Parameter Name="StepValue" Type="System.Double" />
</Parameters>
<Docs>
<param name="count">Required. A <see langword="Double" /> value that represents the initial value passed for the loop counter variable.</param>
<param name="limit">Required. A <see langword="Double" /> value that represents the value passed by using the <see langword="To" /> keyword.</param>
<param name="StepValue">Required. A <see langword="Double" /> value that represents the value passed by using the <see langword="Step" /> keyword.</param>
<summary>Checks for valid values for the loop counter, <see langword="Step" />, and <see langword="To" /> values.</summary>
<returns>
<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>
<remarks>
<format type="text/markdown"><![CDATA[
## Remarks
This class supports the Visual Basic compiler and is not intended to be used directly from your code.
]]></format>
</remarks>
<forInternalUseOnly />
</Docs>
</Member>
</Members>
</Type>