[Tizen] Add BuildTools 2.1.0-rc1-02804-05
[platform/upstream/coreclr.git] / Tools / dotnetcli / sdk / NuGetFallbackFolder / system.runtime.extensions / 4.1.0 / ref / netcore50 / System.Runtime.Extensions.xml
1 <?xml version="1.0" encoding="utf-8"?>
2 <doc>
3   <assembly>
4     <name>System.Runtime.Extensions</name>
5   </assembly>
6   <members>
7     <member name="T:System.BitConverter">
8       <summary>Converts base data types to an array of bytes, and an array of bytes to base data types.</summary>
9       <filterpriority>2</filterpriority>
10     </member>
11     <member name="M:System.BitConverter.DoubleToInt64Bits(System.Double)">
12       <summary>Converts the specified double-precision floating point number to a 64-bit signed integer.</summary>
13       <returns>A 64-bit signed integer whose value is equivalent to <paramref name="value" />.</returns>
14       <param name="value">The number to convert. </param>
15       <filterpriority>1</filterpriority>
16     </member>
17     <member name="M:System.BitConverter.GetBytes(System.Boolean)">
18       <summary>Returns the specified Boolean value as an array of bytes.</summary>
19       <returns>An array of bytes with length 1.</returns>
20       <param name="value">A Boolean value. </param>
21       <filterpriority>1</filterpriority>
22     </member>
23     <member name="M:System.BitConverter.GetBytes(System.Char)">
24       <summary>Returns the specified Unicode character value as an array of bytes.</summary>
25       <returns>An array of bytes with length 2.</returns>
26       <param name="value">A character to convert. </param>
27       <filterpriority>1</filterpriority>
28     </member>
29     <member name="M:System.BitConverter.GetBytes(System.Double)">
30       <summary>Returns the specified double-precision floating point value as an array of bytes.</summary>
31       <returns>An array of bytes with length 8.</returns>
32       <param name="value">The number to convert. </param>
33       <filterpriority>1</filterpriority>
34     </member>
35     <member name="M:System.BitConverter.GetBytes(System.Int16)">
36       <summary>Returns the specified 16-bit signed integer value as an array of bytes.</summary>
37       <returns>An array of bytes with length 2.</returns>
38       <param name="value">The number to convert. </param>
39       <filterpriority>1</filterpriority>
40     </member>
41     <member name="M:System.BitConverter.GetBytes(System.Int32)">
42       <summary>Returns the specified 32-bit signed integer value as an array of bytes.</summary>
43       <returns>An array of bytes with length 4.</returns>
44       <param name="value">The number to convert. </param>
45       <filterpriority>1</filterpriority>
46     </member>
47     <member name="M:System.BitConverter.GetBytes(System.Int64)">
48       <summary>Returns the specified 64-bit signed integer value as an array of bytes.</summary>
49       <returns>An array of bytes with length 8.</returns>
50       <param name="value">The number to convert. </param>
51       <filterpriority>1</filterpriority>
52     </member>
53     <member name="M:System.BitConverter.GetBytes(System.Single)">
54       <summary>Returns the specified single-precision floating point value as an array of bytes.</summary>
55       <returns>An array of bytes with length 4.</returns>
56       <param name="value">The number to convert. </param>
57       <filterpriority>1</filterpriority>
58     </member>
59     <member name="M:System.BitConverter.GetBytes(System.UInt16)">
60       <summary>Returns the specified 16-bit unsigned integer value as an array of bytes.</summary>
61       <returns>An array of bytes with length 2.</returns>
62       <param name="value">The number to convert. </param>
63       <filterpriority>1</filterpriority>
64     </member>
65     <member name="M:System.BitConverter.GetBytes(System.UInt32)">
66       <summary>Returns the specified 32-bit unsigned integer value as an array of bytes.</summary>
67       <returns>An array of bytes with length 4.</returns>
68       <param name="value">The number to convert. </param>
69       <filterpriority>1</filterpriority>
70     </member>
71     <member name="M:System.BitConverter.GetBytes(System.UInt64)">
72       <summary>Returns the specified 64-bit unsigned integer value as an array of bytes.</summary>
73       <returns>An array of bytes with length 8.</returns>
74       <param name="value">The number to convert. </param>
75       <filterpriority>1</filterpriority>
76     </member>
77     <member name="M:System.BitConverter.Int64BitsToDouble(System.Int64)">
78       <summary>Converts the specified 64-bit signed integer to a double-precision floating point number.</summary>
79       <returns>A double-precision floating point number whose value is equivalent to <paramref name="value" />.</returns>
80       <param name="value">The number to convert. </param>
81       <filterpriority>1</filterpriority>
82     </member>
83     <member name="F:System.BitConverter.IsLittleEndian">
84       <summary>Indicates the byte order ("endianness") in which data is stored in this computer architecture.</summary>
85       <filterpriority>1</filterpriority>
86     </member>
87     <member name="M:System.BitConverter.ToBoolean(System.Byte[],System.Int32)">
88       <summary>Returns a Boolean value converted from one byte at a specified position in a byte array.</summary>
89       <returns>true if the byte at <paramref name="startIndex" /> in <paramref name="value" /> is nonzero; otherwise, false.</returns>
90       <param name="value">An array of bytes. </param>
91       <param name="startIndex">The starting position within <paramref name="value" />. </param>
92       <exception cref="T:System.ArgumentNullException">
93         <paramref name="value" /> is null. </exception>
94       <exception cref="T:System.ArgumentOutOfRangeException">
95         <paramref name="startIndex" /> is less than zero or greater than the length of <paramref name="value" /> minus 1. </exception>
96       <filterpriority>1</filterpriority>
97     </member>
98     <member name="M:System.BitConverter.ToChar(System.Byte[],System.Int32)">
99       <summary>Returns a Unicode character converted from two bytes at a specified position in a byte array.</summary>
100       <returns>A character formed by two bytes beginning at <paramref name="startIndex" />.</returns>
101       <param name="value">An array. </param>
102       <param name="startIndex">The starting position within <paramref name="value" />. </param>
103       <exception cref="T:System.ArgumentException">
104         <paramref name="startIndex" /> equals the length of <paramref name="value" /> minus 1.</exception>
105       <exception cref="T:System.ArgumentNullException">
106         <paramref name="value" /> is null. </exception>
107       <exception cref="T:System.ArgumentOutOfRangeException">
108         <paramref name="startIndex" /> is less than zero or greater than the length of <paramref name="value" /> minus 1. </exception>
109       <filterpriority>1</filterpriority>
110     </member>
111     <member name="M:System.BitConverter.ToDouble(System.Byte[],System.Int32)">
112       <summary>Returns a double-precision floating point number converted from eight bytes at a specified position in a byte array.</summary>
113       <returns>A double precision floating point number formed by eight bytes beginning at <paramref name="startIndex" />.</returns>
114       <param name="value">An array of bytes. </param>
115       <param name="startIndex">The starting position within <paramref name="value" />. </param>
116       <exception cref="T:System.ArgumentException">
117         <paramref name="startIndex" /> is greater than or equal to the length of <paramref name="value" /> minus 7, and is less than or equal to the length of <paramref name="value" /> minus 1.</exception>
118       <exception cref="T:System.ArgumentNullException">
119         <paramref name="value" /> is null. </exception>
120       <exception cref="T:System.ArgumentOutOfRangeException">
121         <paramref name="startIndex" /> is less than zero or greater than the length of <paramref name="value" /> minus 1. </exception>
122       <filterpriority>1</filterpriority>
123     </member>
124     <member name="M:System.BitConverter.ToInt16(System.Byte[],System.Int32)">
125       <summary>Returns a 16-bit signed integer converted from two bytes at a specified position in a byte array.</summary>
126       <returns>A 16-bit signed integer formed by two bytes beginning at <paramref name="startIndex" />.</returns>
127       <param name="value">An array of bytes. </param>
128       <param name="startIndex">The starting position within <paramref name="value" />. </param>
129       <exception cref="T:System.ArgumentException">
130         <paramref name="startIndex" /> equals the length of <paramref name="value" /> minus 1.</exception>
131       <exception cref="T:System.ArgumentNullException">
132         <paramref name="value" /> is null. </exception>
133       <exception cref="T:System.ArgumentOutOfRangeException">
134         <paramref name="startIndex" /> is less than zero or greater than the length of <paramref name="value" /> minus 1. </exception>
135       <filterpriority>1</filterpriority>
136     </member>
137     <member name="M:System.BitConverter.ToInt32(System.Byte[],System.Int32)">
138       <summary>Returns a 32-bit signed integer converted from four bytes at a specified position in a byte array.</summary>
139       <returns>A 32-bit signed integer formed by four bytes beginning at <paramref name="startIndex" />.</returns>
140       <param name="value">An array of bytes. </param>
141       <param name="startIndex">The starting position within <paramref name="value" />. </param>
142       <exception cref="T:System.ArgumentException">
143         <paramref name="startIndex" /> is greater than or equal to the length of <paramref name="value" /> minus 3, and is less than or equal to the length of <paramref name="value" /> minus 1.</exception>
144       <exception cref="T:System.ArgumentNullException">
145         <paramref name="value" /> is null. </exception>
146       <exception cref="T:System.ArgumentOutOfRangeException">
147         <paramref name="startIndex" /> is less than zero or greater than the length of <paramref name="value" /> minus 1. </exception>
148       <filterpriority>1</filterpriority>
149     </member>
150     <member name="M:System.BitConverter.ToInt64(System.Byte[],System.Int32)">
151       <summary>Returns a 64-bit signed integer converted from eight bytes at a specified position in a byte array.</summary>
152       <returns>A 64-bit signed integer formed by eight bytes beginning at <paramref name="startIndex" />.</returns>
153       <param name="value">An array of bytes. </param>
154       <param name="startIndex">The starting position within <paramref name="value" />. </param>
155       <exception cref="T:System.ArgumentException">
156         <paramref name="startIndex" /> is greater than or equal to the length of <paramref name="value" /> minus 7, and is less than or equal to the length of <paramref name="value" /> minus 1.</exception>
157       <exception cref="T:System.ArgumentNullException">
158         <paramref name="value" /> is null. </exception>
159       <exception cref="T:System.ArgumentOutOfRangeException">
160         <paramref name="startIndex" /> is less than zero or greater than the length of <paramref name="value" /> minus 1. </exception>
161       <filterpriority>1</filterpriority>
162     </member>
163     <member name="M:System.BitConverter.ToSingle(System.Byte[],System.Int32)">
164       <summary>Returns a single-precision floating point number converted from four bytes at a specified position in a byte array.</summary>
165       <returns>A single-precision floating point number formed by four bytes beginning at <paramref name="startIndex" />.</returns>
166       <param name="value">An array of bytes. </param>
167       <param name="startIndex">The starting position within <paramref name="value" />. </param>
168       <exception cref="T:System.ArgumentException">
169         <paramref name="startIndex" /> is greater than or equal to the length of <paramref name="value" /> minus 3, and is less than or equal to the length of <paramref name="value" /> minus 1.</exception>
170       <exception cref="T:System.ArgumentNullException">
171         <paramref name="value" /> is null. </exception>
172       <exception cref="T:System.ArgumentOutOfRangeException">
173         <paramref name="startIndex" /> is less than zero or greater than the length of <paramref name="value" /> minus 1. </exception>
174       <filterpriority>1</filterpriority>
175     </member>
176     <member name="M:System.BitConverter.ToString(System.Byte[])">
177       <summary>Converts the numeric value of each element of a specified array of bytes to its equivalent hexadecimal string representation.</summary>
178       <returns>A string of hexadecimal pairs separated by hyphens, where each pair represents the corresponding element in <paramref name="value" />; for example, "7F-2C-4A-00".</returns>
179       <param name="value">An array of bytes. </param>
180       <exception cref="T:System.ArgumentNullException">
181         <paramref name="value" /> is null. </exception>
182       <filterpriority>1</filterpriority>
183     </member>
184     <member name="M:System.BitConverter.ToString(System.Byte[],System.Int32)">
185       <summary>Converts the numeric value of each element of a specified subarray of bytes to its equivalent hexadecimal string representation.</summary>
186       <returns>A string of hexadecimal pairs separated by hyphens, where each pair represents the corresponding element in a subarray of <paramref name="value" />; for example, "7F-2C-4A-00".</returns>
187       <param name="value">An array of bytes. </param>
188       <param name="startIndex">The starting position within <paramref name="value" />. </param>
189       <exception cref="T:System.ArgumentNullException">
190         <paramref name="value" /> is null. </exception>
191       <exception cref="T:System.ArgumentOutOfRangeException">
192         <paramref name="startIndex" /> is less than zero or greater than the length of <paramref name="value" /> minus 1. </exception>
193       <filterpriority>1</filterpriority>
194     </member>
195     <member name="M:System.BitConverter.ToString(System.Byte[],System.Int32,System.Int32)">
196       <summary>Converts the numeric value of each element of a specified subarray of bytes to its equivalent hexadecimal string representation.</summary>
197       <returns>A string of hexadecimal pairs separated by hyphens, where each pair represents the corresponding element in a subarray of <paramref name="value" />; for example, "7F-2C-4A-00".</returns>
198       <param name="value">An array of bytes. </param>
199       <param name="startIndex">The starting position within <paramref name="value" />. </param>
200       <param name="length">The number of array elements in <paramref name="value" /> to convert. </param>
201       <exception cref="T:System.ArgumentNullException">
202         <paramref name="value" /> is null. </exception>
203       <exception cref="T:System.ArgumentOutOfRangeException">
204         <paramref name="startIndex" /> or <paramref name="length" /> is less than zero.-or-<paramref name="startIndex" /> is greater than zero and is greater than or equal to the length of <paramref name="value" />.</exception>
205       <exception cref="T:System.ArgumentException">The combination of <paramref name="startIndex" /> and <paramref name="length" /> does not specify a position within <paramref name="value" />; that is, the <paramref name="startIndex" /> parameter is greater than the length of <paramref name="value" /> minus the <paramref name="length" /> parameter.</exception>
206       <filterpriority>1</filterpriority>
207     </member>
208     <member name="M:System.BitConverter.ToUInt16(System.Byte[],System.Int32)">
209       <summary>Returns a 16-bit unsigned integer converted from two bytes at a specified position in a byte array.</summary>
210       <returns>A 16-bit unsigned integer formed by two bytes beginning at <paramref name="startIndex" />.</returns>
211       <param name="value">The array of bytes. </param>
212       <param name="startIndex">The starting position within <paramref name="value" />. </param>
213       <exception cref="T:System.ArgumentException">
214         <paramref name="startIndex" /> equals the length of <paramref name="value" /> minus 1.</exception>
215       <exception cref="T:System.ArgumentNullException">
216         <paramref name="value" /> is null. </exception>
217       <exception cref="T:System.ArgumentOutOfRangeException">
218         <paramref name="startIndex" /> is less than zero or greater than the length of <paramref name="value" /> minus 1. </exception>
219       <filterpriority>1</filterpriority>
220     </member>
221     <member name="M:System.BitConverter.ToUInt32(System.Byte[],System.Int32)">
222       <summary>Returns a 32-bit unsigned integer converted from four bytes at a specified position in a byte array.</summary>
223       <returns>A 32-bit unsigned integer formed by four bytes beginning at <paramref name="startIndex" />.</returns>
224       <param name="value">An array of bytes. </param>
225       <param name="startIndex">The starting position within <paramref name="value" />. </param>
226       <exception cref="T:System.ArgumentException">
227         <paramref name="startIndex" /> is greater than or equal to the length of <paramref name="value" /> minus 3, and is less than or equal to the length of <paramref name="value" /> minus 1.</exception>
228       <exception cref="T:System.ArgumentNullException">
229         <paramref name="value" /> is null. </exception>
230       <exception cref="T:System.ArgumentOutOfRangeException">
231         <paramref name="startIndex" /> is less than zero or greater than the length of <paramref name="value" /> minus 1. </exception>
232       <filterpriority>1</filterpriority>
233     </member>
234     <member name="M:System.BitConverter.ToUInt64(System.Byte[],System.Int32)">
235       <summary>Returns a 64-bit unsigned integer converted from eight bytes at a specified position in a byte array.</summary>
236       <returns>A 64-bit unsigned integer formed by the eight bytes beginning at <paramref name="startIndex" />.</returns>
237       <param name="value">An array of bytes. </param>
238       <param name="startIndex">The starting position within <paramref name="value" />. </param>
239       <exception cref="T:System.ArgumentException">
240         <paramref name="startIndex" /> is greater than or equal to the length of <paramref name="value" /> minus 7, and is less than or equal to the length of <paramref name="value" /> minus 1.</exception>
241       <exception cref="T:System.ArgumentNullException">
242         <paramref name="value" /> is null. </exception>
243       <exception cref="T:System.ArgumentOutOfRangeException">
244         <paramref name="startIndex" /> is less than zero or greater than the length of <paramref name="value" /> minus 1. </exception>
245       <filterpriority>1</filterpriority>
246     </member>
247     <member name="T:System.Convert">
248       <summary>Converts a base data type to another base data type.</summary>
249       <filterpriority>1</filterpriority>
250     </member>
251     <member name="M:System.Convert.ChangeType(System.Object,System.Type)">
252       <summary>Returns an object of the specified type and whose value is equivalent to the specified object.</summary>
253       <returns>An object whose type is <paramref name="conversionType" /> and whose value is equivalent to <paramref name="value" />.-or-A null reference (Nothing in Visual Basic), if <paramref name="value" /> is null and <paramref name="conversionType" /> is not a value type. </returns>
254       <param name="value">An object that implements the <see cref="T:System.IConvertible" /> interface. </param>
255       <param name="conversionType">The type of object to return. </param>
256       <exception cref="T:System.InvalidCastException">This conversion is not supported.  -or-<paramref name="value" /> is null and <paramref name="conversionType" /> is a value type.-or-<paramref name="value" /> does not implement the <see cref="T:System.IConvertible" /> interface.</exception>
257       <exception cref="T:System.FormatException">
258         <paramref name="value" /> is not in a format recognized by <paramref name="conversionType" />.</exception>
259       <exception cref="T:System.OverflowException">
260         <paramref name="value" /> represents a number that is out of the range of <paramref name="conversionType" />.</exception>
261       <exception cref="T:System.ArgumentNullException">
262         <paramref name="conversionType" /> is null.</exception>
263       <filterpriority>1</filterpriority>
264     </member>
265     <member name="M:System.Convert.ChangeType(System.Object,System.Type,System.IFormatProvider)">
266       <summary>Returns an object of the specified type whose value is equivalent to the specified object. A parameter supplies culture-specific formatting information.</summary>
267       <returns>An object whose type is <paramref name="conversionType" /> and whose value is equivalent to <paramref name="value" />.-or- <paramref name="value" />, if the <see cref="T:System.Type" /> of <paramref name="value" /> and <paramref name="conversionType" /> are equal.-or- A null reference (Nothing in Visual Basic), if <paramref name="value" /> is null and <paramref name="conversionType" /> is not a value type.</returns>
268       <param name="value">An object that implements the <see cref="T:System.IConvertible" /> interface. </param>
269       <param name="conversionType">The type of object to return. </param>
270       <param name="provider">An object that supplies culture-specific formatting information. </param>
271       <exception cref="T:System.InvalidCastException">This conversion is not supported. -or-<paramref name="value" /> is null and <paramref name="conversionType" /> is a value type.-or-<paramref name="value" /> does not implement the <see cref="T:System.IConvertible" /> interface.</exception>
272       <exception cref="T:System.FormatException">
273         <paramref name="value" /> is not in a format for <paramref name="conversionType" /> recognized by <paramref name="provider" />.</exception>
274       <exception cref="T:System.OverflowException">
275         <paramref name="value" /> represents a number that is out of the range of <paramref name="conversionType" />.</exception>
276       <exception cref="T:System.ArgumentNullException">
277         <paramref name="conversionType" /> is null.</exception>
278       <filterpriority>1</filterpriority>
279     </member>
280     <member name="M:System.Convert.ChangeType(System.Object,System.TypeCode,System.IFormatProvider)">
281       <summary>Returns an object of the specified type whose value is equivalent to the specified object. A parameter supplies culture-specific formatting information.</summary>
282       <returns>An object whose underlying type is <paramref name="typeCode" /> and whose value is equivalent to <paramref name="value" />.-or- A null reference (Nothing in Visual Basic), if <paramref name="value" /> is null and <paramref name="typeCode" /> is <see cref="F:System.TypeCode.Empty" />, <see cref="F:System.TypeCode.String" />, or <see cref="F:System.TypeCode.Object" />.</returns>
283       <param name="value">An object that implements the <see cref="T:System.IConvertible" /> interface. </param>
284       <param name="typeCode">The type of object to return. </param>
285       <param name="provider">An object that supplies culture-specific formatting information. </param>
286       <exception cref="T:System.InvalidCastException">This conversion is not supported.  -or-<paramref name="value" /> is null and <paramref name="typeCode" /> specifies a value type.-or-<paramref name="value" /> does not implement the <see cref="T:System.IConvertible" /> interface.</exception>
287       <exception cref="T:System.FormatException">
288         <paramref name="value" /> is not in a format for the <paramref name="typeCode" /> type recognized by <paramref name="provider" />.</exception>
289       <exception cref="T:System.OverflowException">
290         <paramref name="value" /> represents a number that is out of the range of the <paramref name="typeCode" /> type.</exception>
291       <exception cref="T:System.ArgumentException">
292         <paramref name="typeCode" /> is invalid. </exception>
293       <filterpriority>1</filterpriority>
294     </member>
295     <member name="M:System.Convert.FromBase64CharArray(System.Char[],System.Int32,System.Int32)">
296       <summary>Converts a subset of a Unicode character array, which encodes binary data as base-64 digits, to an equivalent 8-bit unsigned integer array. Parameters specify the subset in the input array and the number of elements to convert.</summary>
297       <returns>An array of 8-bit unsigned integers equivalent to <paramref name="length" /> elements at position <paramref name="offset" /> in <paramref name="inArray" />.</returns>
298       <param name="inArray">A Unicode character array. </param>
299       <param name="offset">A position within <paramref name="inArray" />. </param>
300       <param name="length">The number of elements in <paramref name="inArray" /> to convert. </param>
301       <exception cref="T:System.ArgumentNullException">
302         <paramref name="inArray" /> is null. </exception>
303       <exception cref="T:System.ArgumentOutOfRangeException">
304         <paramref name="offset" /> or <paramref name="length" /> is less than 0.-or- <paramref name="offset" /> plus <paramref name="length" /> indicates a position not within <paramref name="inArray" />. </exception>
305       <exception cref="T:System.FormatException">The length of <paramref name="inArray" />, ignoring white-space characters, is not zero or a multiple of 4. -or-The format of <paramref name="inArray" /> is invalid. <paramref name="inArray" /> contains a non-base-64 character, more than two padding characters, or a non-white-space character among the padding characters. </exception>
306       <filterpriority>1</filterpriority>
307     </member>
308     <member name="M:System.Convert.FromBase64String(System.String)">
309       <summary>Converts the specified string, which encodes binary data as base-64 digits, to an equivalent 8-bit unsigned integer array.</summary>
310       <returns>An array of 8-bit unsigned integers that is equivalent to <paramref name="s" />.</returns>
311       <param name="s">The string to convert. </param>
312       <exception cref="T:System.ArgumentNullException">
313         <paramref name="s" /> is null. </exception>
314       <exception cref="T:System.FormatException">The length of <paramref name="s" />, ignoring white-space characters, is not zero or a multiple of 4. -or-The format of <paramref name="s" /> is invalid. <paramref name="s" /> contains a non-base-64 character, more than two padding characters, or a non-white space-character among the padding characters.</exception>
315       <filterpriority>1</filterpriority>
316     </member>
317     <member name="M:System.Convert.GetTypeCode(System.Object)">
318       <summary>Returns the <see cref="T:System.TypeCode" /> for the specified object.</summary>
319       <returns>The <see cref="T:System.TypeCode" /> for <paramref name="value" />, or <see cref="F:System.TypeCode.Empty" /> if <paramref name="value" /> is null.</returns>
320       <param name="value">An object that implements the <see cref="T:System.IConvertible" /> interface. </param>
321       <filterpriority>1</filterpriority>
322     </member>
323     <member name="M:System.Convert.ToBase64CharArray(System.Byte[],System.Int32,System.Int32,System.Char[],System.Int32)">
324       <summary>Converts a subset of an 8-bit unsigned integer array to an equivalent subset of a Unicode character array encoded with base-64 digits. Parameters specify the subsets as offsets in the input and output arrays, and the number of elements in the input array to convert.</summary>
325       <returns>A 32-bit signed integer containing the number of bytes in <paramref name="outArray" />.</returns>
326       <param name="inArray">An input array of 8-bit unsigned integers. </param>
327       <param name="offsetIn">A position within <paramref name="inArray" />. </param>
328       <param name="length">The number of elements of <paramref name="inArray" /> to convert. </param>
329       <param name="outArray">An output array of Unicode characters. </param>
330       <param name="offsetOut">A position within <paramref name="outArray" />. </param>
331       <exception cref="T:System.ArgumentNullException">
332         <paramref name="inArray" /> or <paramref name="outArray" /> is null. </exception>
333       <exception cref="T:System.ArgumentOutOfRangeException">
334         <paramref name="offsetIn" />, <paramref name="offsetOut" />, or <paramref name="length" /> is negative.-or- <paramref name="offsetIn" /> plus <paramref name="length" /> is greater than the length of <paramref name="inArray" />.-or- <paramref name="offsetOut" /> plus the number of elements to return is greater than the length of <paramref name="outArray" />. </exception>
335       <filterpriority>1</filterpriority>
336     </member>
337     <member name="M:System.Convert.ToBase64String(System.Byte[])">
338       <summary>Converts an array of 8-bit unsigned integers to its equivalent string representation that is encoded with base-64 digits.</summary>
339       <returns>The string representation, in base 64, of the contents of <paramref name="inArray" />.</returns>
340       <param name="inArray">An array of 8-bit unsigned integers. </param>
341       <exception cref="T:System.ArgumentNullException">
342         <paramref name="inArray" /> is null. </exception>
343       <filterpriority>1</filterpriority>
344     </member>
345     <member name="M:System.Convert.ToBase64String(System.Byte[],System.Int32,System.Int32)">
346       <summary>Converts a subset of an array of 8-bit unsigned integers to its equivalent string representation that is encoded with base-64 digits. Parameters specify the subset as an offset in the input array, and the number of elements in the array to convert.</summary>
347       <returns>The string representation in base 64 of <paramref name="length" /> elements of <paramref name="inArray" />, starting at position <paramref name="offset" />.</returns>
348       <param name="inArray">An array of 8-bit unsigned integers. </param>
349       <param name="offset">An offset in <paramref name="inArray" />. </param>
350       <param name="length">The number of elements of <paramref name="inArray" /> to convert. </param>
351       <exception cref="T:System.ArgumentNullException">
352         <paramref name="inArray" /> is null. </exception>
353       <exception cref="T:System.ArgumentOutOfRangeException">
354         <paramref name="offset" /> or <paramref name="length" /> is negative.-or- <paramref name="offset" /> plus <paramref name="length" /> is greater than the length of <paramref name="inArray" />. </exception>
355       <filterpriority>1</filterpriority>
356     </member>
357     <member name="M:System.Convert.ToBoolean(System.Boolean)">
358       <summary>Returns the specified Boolean value; no actual conversion is performed.</summary>
359       <returns>
360         <paramref name="value" /> is returned unchanged.</returns>
361       <param name="value">The Boolean value to return. </param>
362       <filterpriority>1</filterpriority>
363     </member>
364     <member name="M:System.Convert.ToBoolean(System.Byte)">
365       <summary>Converts the value of the specified 8-bit unsigned integer to an equivalent Boolean value.</summary>
366       <returns>true if <paramref name="value" /> is not zero; otherwise, false.</returns>
367       <param name="value">The 8-bit unsigned integer to convert. </param>
368       <filterpriority>1</filterpriority>
369     </member>
370     <member name="M:System.Convert.ToBoolean(System.Decimal)">
371       <summary>Converts the value of the specified decimal number to an equivalent Boolean value.</summary>
372       <returns>true if <paramref name="value" /> is not zero; otherwise, false.</returns>
373       <param name="value">The number to convert. </param>
374       <filterpriority>1</filterpriority>
375     </member>
376     <member name="M:System.Convert.ToBoolean(System.Double)">
377       <summary>Converts the value of the specified double-precision floating-point number to an equivalent Boolean value.</summary>
378       <returns>true if <paramref name="value" /> is not zero; otherwise, false.</returns>
379       <param name="value">The double-precision floating-point number to convert. </param>
380       <filterpriority>1</filterpriority>
381     </member>
382     <member name="M:System.Convert.ToBoolean(System.Int16)">
383       <summary>Converts the value of the specified 16-bit signed integer to an equivalent Boolean value.</summary>
384       <returns>true if <paramref name="value" /> is not zero; otherwise, false.</returns>
385       <param name="value">The 16-bit signed integer to convert. </param>
386       <filterpriority>1</filterpriority>
387     </member>
388     <member name="M:System.Convert.ToBoolean(System.Int32)">
389       <summary>Converts the value of the specified 32-bit signed integer to an equivalent Boolean value.</summary>
390       <returns>true if <paramref name="value" /> is not zero; otherwise, false.</returns>
391       <param name="value">The 32-bit signed integer to convert. </param>
392       <filterpriority>1</filterpriority>
393     </member>
394     <member name="M:System.Convert.ToBoolean(System.Int64)">
395       <summary>Converts the value of the specified 64-bit signed integer to an equivalent Boolean value.</summary>
396       <returns>true if <paramref name="value" /> is not zero; otherwise, false.</returns>
397       <param name="value">The 64-bit signed integer to convert. </param>
398       <filterpriority>1</filterpriority>
399     </member>
400     <member name="M:System.Convert.ToBoolean(System.Object)">
401       <summary>Converts the value of a specified object to an equivalent Boolean value.</summary>
402       <returns>true or false, which reflects the value returned by invoking the <see cref="M:System.IConvertible.ToBoolean(System.IFormatProvider)" /> method for the underlying type of <paramref name="value" />. If <paramref name="value" /> is null, the method returns false. </returns>
403       <param name="value">An object that implements the <see cref="T:System.IConvertible" /> interface, or null. </param>
404       <exception cref="T:System.FormatException">
405         <paramref name="value" /> is a string that does not equal <see cref="F:System.Boolean.TrueString" /> or <see cref="F:System.Boolean.FalseString" />.</exception>
406       <exception cref="T:System.InvalidCastException">
407         <paramref name="value" /> does not implement the <see cref="T:System.IConvertible" /> interface.-or-The conversion of <paramref name="value" /> to a <see cref="T:System.Boolean" /> is not supported.</exception>
408       <filterpriority>1</filterpriority>
409     </member>
410     <member name="M:System.Convert.ToBoolean(System.Object,System.IFormatProvider)">
411       <summary>Converts the value of the specified object to an equivalent Boolean value, using the specified culture-specific formatting information.</summary>
412       <returns>true or false, which reflects the value returned by invoking the <see cref="M:System.IConvertible.ToBoolean(System.IFormatProvider)" /> method for the underlying type of <paramref name="value" />. If <paramref name="value" /> is null, the method returns false.</returns>
413       <param name="value">An object that implements the <see cref="T:System.IConvertible" /> interface, or null. </param>
414       <param name="provider">An object that supplies culture-specific formatting information. </param>
415       <exception cref="T:System.FormatException">
416         <paramref name="value" /> is a string that does not equal <see cref="F:System.Boolean.TrueString" /> or <see cref="F:System.Boolean.FalseString" />.</exception>
417       <exception cref="T:System.InvalidCastException">
418         <paramref name="value" /> does not implement the <see cref="T:System.IConvertible" /> interface.-or-The conversion of <paramref name="value" /> to a <see cref="T:System.Boolean" /> is not supported. </exception>
419       <filterpriority>1</filterpriority>
420     </member>
421     <member name="M:System.Convert.ToBoolean(System.SByte)">
422       <summary>Converts the value of the specified 8-bit signed integer to an equivalent Boolean value.</summary>
423       <returns>true if <paramref name="value" /> is not zero; otherwise, false.</returns>
424       <param name="value">The 8-bit signed integer to convert. </param>
425       <filterpriority>1</filterpriority>
426     </member>
427     <member name="M:System.Convert.ToBoolean(System.Single)">
428       <summary>Converts the value of the specified single-precision floating-point number to an equivalent Boolean value.</summary>
429       <returns>true if <paramref name="value" /> is not zero; otherwise, false.</returns>
430       <param name="value">The single-precision floating-point number to convert. </param>
431       <filterpriority>1</filterpriority>
432     </member>
433     <member name="M:System.Convert.ToBoolean(System.String)">
434       <summary>Converts the specified string representation of a logical value to its Boolean equivalent.</summary>
435       <returns>true if <paramref name="value" /> equals <see cref="F:System.Boolean.TrueString" />, or false if <paramref name="value" /> equals <see cref="F:System.Boolean.FalseString" /> or null.</returns>
436       <param name="value">A string that contains the value of either <see cref="F:System.Boolean.TrueString" /> or <see cref="F:System.Boolean.FalseString" />. </param>
437       <exception cref="T:System.FormatException">
438         <paramref name="value" /> is not equal to <see cref="F:System.Boolean.TrueString" /> or <see cref="F:System.Boolean.FalseString" />. </exception>
439       <filterpriority>1</filterpriority>
440     </member>
441     <member name="M:System.Convert.ToBoolean(System.String,System.IFormatProvider)">
442       <summary>Converts the specified string representation of a logical value to its Boolean equivalent, using the specified culture-specific formatting information.</summary>
443       <returns>true if <paramref name="value" /> equals <see cref="F:System.Boolean.TrueString" />, or false if <paramref name="value" /> equals <see cref="F:System.Boolean.FalseString" /> or null.</returns>
444       <param name="value">A string that contains the value of either <see cref="F:System.Boolean.TrueString" /> or <see cref="F:System.Boolean.FalseString" />. </param>
445       <param name="provider">An object that supplies culture-specific formatting information. This parameter is ignored.</param>
446       <exception cref="T:System.FormatException">
447         <paramref name="value" /> is not equal to <see cref="F:System.Boolean.TrueString" /> or <see cref="F:System.Boolean.FalseString" />. </exception>
448       <filterpriority>1</filterpriority>
449     </member>
450     <member name="M:System.Convert.ToBoolean(System.UInt16)">
451       <summary>Converts the value of the specified 16-bit unsigned integer to an equivalent Boolean value.</summary>
452       <returns>true if <paramref name="value" /> is not zero; otherwise, false.</returns>
453       <param name="value">The 16-bit unsigned integer to convert. </param>
454       <filterpriority>1</filterpriority>
455     </member>
456     <member name="M:System.Convert.ToBoolean(System.UInt32)">
457       <summary>Converts the value of the specified 32-bit unsigned integer to an equivalent Boolean value.</summary>
458       <returns>true if <paramref name="value" /> is not zero; otherwise, false.</returns>
459       <param name="value">The 32-bit unsigned integer to convert. </param>
460       <filterpriority>1</filterpriority>
461     </member>
462     <member name="M:System.Convert.ToBoolean(System.UInt64)">
463       <summary>Converts the value of the specified 64-bit unsigned integer to an equivalent Boolean value.</summary>
464       <returns>true if <paramref name="value" /> is not zero; otherwise, false.</returns>
465       <param name="value">The 64-bit unsigned integer to convert. </param>
466       <filterpriority>1</filterpriority>
467     </member>
468     <member name="M:System.Convert.ToByte(System.Boolean)">
469       <summary>Converts the specified Boolean value to the equivalent 8-bit unsigned integer.</summary>
470       <returns>The number 1 if <paramref name="value" /> is true; otherwise, 0.</returns>
471       <param name="value">The Boolean value to convert. </param>
472       <filterpriority>1</filterpriority>
473     </member>
474     <member name="M:System.Convert.ToByte(System.Byte)">
475       <summary>Returns the specified 8-bit unsigned integer; no actual conversion is performed.</summary>
476       <returns>
477         <paramref name="value" /> is returned unchanged.</returns>
478       <param name="value">The 8-bit unsigned integer to return. </param>
479       <filterpriority>1</filterpriority>
480     </member>
481     <member name="M:System.Convert.ToByte(System.Char)">
482       <summary>Converts the value of the specified Unicode character to the equivalent 8-bit unsigned integer.</summary>
483       <returns>An 8-bit unsigned integer that is equivalent to <paramref name="value" />.</returns>
484       <param name="value">The Unicode character to convert. </param>
485       <exception cref="T:System.OverflowException">
486         <paramref name="value" /> represents a number that is greater than <see cref="F:System.Byte.MaxValue" />. </exception>
487       <filterpriority>1</filterpriority>
488     </member>
489     <member name="M:System.Convert.ToByte(System.Decimal)">
490       <summary>Converts the value of the specified decimal number to an equivalent 8-bit unsigned integer.</summary>
491       <returns>
492         <paramref name="value" />, rounded to the nearest 8-bit unsigned integer. If <paramref name="value" /> is halfway between two whole numbers, the even number is returned; that is, 4.5 is converted to 4, and 5.5 is converted to 6.</returns>
493       <param name="value">The number to convert. </param>
494       <exception cref="T:System.OverflowException">
495         <paramref name="value" /> is greater than <see cref="F:System.Byte.MaxValue" /> or less than <see cref="F:System.Byte.MinValue" />. </exception>
496       <filterpriority>1</filterpriority>
497     </member>
498     <member name="M:System.Convert.ToByte(System.Double)">
499       <summary>Converts the value of the specified double-precision floating-point number to an equivalent 8-bit unsigned integer.</summary>
500       <returns>
501         <paramref name="value" />, rounded to the nearest 8-bit unsigned integer. If <paramref name="value" /> is halfway between two whole numbers, the even number is returned; that is, 4.5 is converted to 4, and 5.5 is converted to 6.</returns>
502       <param name="value">The double-precision floating-point number to convert. </param>
503       <exception cref="T:System.OverflowException">
504         <paramref name="value" /> is greater than <see cref="F:System.Byte.MaxValue" /> or less than <see cref="F:System.Byte.MinValue" />. </exception>
505       <filterpriority>1</filterpriority>
506     </member>
507     <member name="M:System.Convert.ToByte(System.Int16)">
508       <summary>Converts the value of the specified 16-bit signed integer to an equivalent 8-bit unsigned integer.</summary>
509       <returns>An 8-bit unsigned integer that is equivalent to <paramref name="value" />.</returns>
510       <param name="value">The 16-bit signed integer to convert. </param>
511       <exception cref="T:System.OverflowException">
512         <paramref name="value" /> is less than <see cref="F:System.Byte.MinValue" /> or greater than <see cref="F:System.Byte.MaxValue" />. </exception>
513       <filterpriority>1</filterpriority>
514     </member>
515     <member name="M:System.Convert.ToByte(System.Int32)">
516       <summary>Converts the value of the specified 32-bit signed integer to an equivalent 8-bit unsigned integer.</summary>
517       <returns>An 8-bit unsigned integer that is equivalent to <paramref name="value" />.</returns>
518       <param name="value">The 32-bit signed integer to convert. </param>
519       <exception cref="T:System.OverflowException">
520         <paramref name="value" /> is less than <see cref="F:System.Byte.MinValue" /> or greater than <see cref="F:System.Byte.MaxValue" />. </exception>
521       <filterpriority>1</filterpriority>
522     </member>
523     <member name="M:System.Convert.ToByte(System.Int64)">
524       <summary>Converts the value of the specified 64-bit signed integer to an equivalent 8-bit unsigned integer.</summary>
525       <returns>An 8-bit unsigned integer that is equivalent to <paramref name="value" />.</returns>
526       <param name="value">The 64-bit signed integer to convert. </param>
527       <exception cref="T:System.OverflowException">
528         <paramref name="value" /> is less than <see cref="F:System.Byte.MinValue" /> or greater than <see cref="F:System.Byte.MaxValue" />. </exception>
529       <filterpriority>1</filterpriority>
530     </member>
531     <member name="M:System.Convert.ToByte(System.Object)">
532       <summary>Converts the value of the specified object to an 8-bit unsigned integer.</summary>
533       <returns>An 8-bit unsigned integer that is equivalent to <paramref name="value" />, or zero if <paramref name="value" /> is null.</returns>
534       <param name="value">An object that implements the <see cref="T:System.IConvertible" /> interface, or null. </param>
535       <exception cref="T:System.FormatException">
536         <paramref name="value" /> is not in the property format for a <see cref="T:System.Byte" /> value.</exception>
537       <exception cref="T:System.InvalidCastException">
538         <paramref name="value" /> does not implement <see cref="T:System.IConvertible" />. -or-Conversion from <paramref name="value" /> to the <see cref="T:System.Byte" /> type is not supported.</exception>
539       <exception cref="T:System.OverflowException">
540         <paramref name="value" /> represents a number that is less than <see cref="F:System.Byte.MinValue" /> or greater than <see cref="F:System.Byte.MaxValue" />.</exception>
541       <filterpriority>1</filterpriority>
542     </member>
543     <member name="M:System.Convert.ToByte(System.Object,System.IFormatProvider)">
544       <summary>Converts the value of the specified object to an 8-bit unsigned integer, using the specified culture-specific formatting information.</summary>
545       <returns>An 8-bit unsigned integer that is equivalent to <paramref name="value" />, or zero if <paramref name="value" /> is null.</returns>
546       <param name="value">An object that implements the <see cref="T:System.IConvertible" /> interface. </param>
547       <param name="provider">An object that supplies culture-specific formatting information. </param>
548       <exception cref="T:System.FormatException">
549         <paramref name="value" /> is not in the property format for a <see cref="T:System.Byte" /> value.</exception>
550       <exception cref="T:System.InvalidCastException">
551         <paramref name="value" /> does not implement <see cref="T:System.IConvertible" />. -or-Conversion from <paramref name="value" /> to the <see cref="T:System.Byte" /> type is not supported.</exception>
552       <exception cref="T:System.OverflowException">
553         <paramref name="value" /> represents a number that is less than <see cref="F:System.Byte.MinValue" /> or greater than <see cref="F:System.Byte.MaxValue" />.</exception>
554       <filterpriority>1</filterpriority>
555     </member>
556     <member name="M:System.Convert.ToByte(System.SByte)">
557       <summary>Converts the value of the specified 8-bit signed integer to an equivalent 8-bit unsigned integer.</summary>
558       <returns>An 8-bit unsigned integer that is equivalent to <paramref name="value" />.</returns>
559       <param name="value">The 8-bit signed integer to be converted. </param>
560       <exception cref="T:System.OverflowException">
561         <paramref name="value" /> is less than <see cref="F:System.Byte.MinValue" />. </exception>
562       <filterpriority>1</filterpriority>
563     </member>
564     <member name="M:System.Convert.ToByte(System.Single)">
565       <summary>Converts the value of the specified single-precision floating-point number to an equivalent 8-bit unsigned integer.</summary>
566       <returns>
567         <paramref name="value" />, rounded to the nearest 8-bit unsigned integer. If <paramref name="value" /> is halfway between two whole numbers, the even number is returned; that is, 4.5 is converted to 4, and 5.5 is converted to 6.</returns>
568       <param name="value">A single-precision floating-point number. </param>
569       <exception cref="T:System.OverflowException">
570         <paramref name="value" /> is greater than <see cref="F:System.Byte.MaxValue" /> or less than <see cref="F:System.Byte.MinValue" />. </exception>
571       <filterpriority>1</filterpriority>
572     </member>
573     <member name="M:System.Convert.ToByte(System.String)">
574       <summary>Converts the specified string representation of a number to an equivalent 8-bit unsigned integer.</summary>
575       <returns>An 8-bit unsigned integer that is equivalent to <paramref name="value" />, or zero if <paramref name="value" /> is null.</returns>
576       <param name="value">A string that contains the number to convert. </param>
577       <exception cref="T:System.FormatException">
578         <paramref name="value" /> does not consist of an optional sign followed by a sequence of digits (0 through 9). </exception>
579       <exception cref="T:System.OverflowException">
580         <paramref name="value" /> represents a number that is less than <see cref="F:System.Byte.MinValue" /> or greater than <see cref="F:System.Byte.MaxValue" />. </exception>
581       <filterpriority>1</filterpriority>
582     </member>
583     <member name="M:System.Convert.ToByte(System.String,System.IFormatProvider)">
584       <summary>Converts the specified string representation of a number to an equivalent 8-bit unsigned integer, using specified culture-specific formatting information.</summary>
585       <returns>An 8-bit unsigned integer that is equivalent to <paramref name="value" />, or zero if <paramref name="value" /> is null.</returns>
586       <param name="value">A string that contains the number to convert. </param>
587       <param name="provider">An object that supplies culture-specific formatting information. </param>
588       <exception cref="T:System.FormatException">
589         <paramref name="value" /> does not consist of an optional sign followed by a sequence of digits (0 through 9). </exception>
590       <exception cref="T:System.OverflowException">
591         <paramref name="value" /> represents a number that is less than <see cref="F:System.Byte.MinValue" /> or greater than <see cref="F:System.Byte.MaxValue" />. </exception>
592       <filterpriority>1</filterpriority>
593     </member>
594     <member name="M:System.Convert.ToByte(System.String,System.Int32)">
595       <summary>Converts the string representation of a number in a specified base to an equivalent 8-bit unsigned integer.</summary>
596       <returns>An 8-bit unsigned integer that is equivalent to the number in <paramref name="value" />, or 0 (zero) if <paramref name="value" /> is null.</returns>
597       <param name="value">A string that contains the number to convert. </param>
598       <param name="fromBase">The base of the number in <paramref name="value" />, which must be 2, 8, 10, or 16. </param>
599       <exception cref="T:System.ArgumentException">
600         <paramref name="fromBase" /> is not 2, 8, 10, or 16. -or-<paramref name="value" />, which represents a non-base 10 unsigned number, is prefixed with a negative sign. </exception>
601       <exception cref="T:System.ArgumentOutOfRangeException">
602         <paramref name="value" /> is <see cref="F:System.String.Empty" />. </exception>
603       <exception cref="T:System.FormatException">
604         <paramref name="value" /> contains a character that is not a valid digit in the base specified by <paramref name="fromBase" />. The exception message indicates that there are no digits to convert if the first character in <paramref name="value" /> is invalid; otherwise, the message indicates that <paramref name="value" /> contains invalid trailing characters.</exception>
605       <exception cref="T:System.OverflowException">
606         <paramref name="value" />, which represents a base 10 unsigned number, is prefixed with a negative sign.-or-<paramref name="value" /> represents a number that is less than <see cref="F:System.Byte.MinValue" /> or greater than <see cref="F:System.Byte.MaxValue" />.</exception>
607       <filterpriority>1</filterpriority>
608     </member>
609     <member name="M:System.Convert.ToByte(System.UInt16)">
610       <summary>Converts the value of the specified 16-bit unsigned integer to an equivalent 8-bit unsigned integer.</summary>
611       <returns>An 8-bit unsigned integer that is equivalent to <paramref name="value" />.</returns>
612       <param name="value">The 16-bit unsigned integer to convert. </param>
613       <exception cref="T:System.OverflowException">
614         <paramref name="value" /> is greater than <see cref="F:System.Byte.MaxValue" />. </exception>
615       <filterpriority>1</filterpriority>
616     </member>
617     <member name="M:System.Convert.ToByte(System.UInt32)">
618       <summary>Converts the value of the specified 32-bit unsigned integer to an equivalent 8-bit unsigned integer.</summary>
619       <returns>An 8-bit unsigned integer that is equivalent to <paramref name="value" />.</returns>
620       <param name="value">The 32-bit unsigned integer to convert. </param>
621       <exception cref="T:System.OverflowException">
622         <paramref name="value" /> is greater than <see cref="F:System.Byte.MaxValue" />. </exception>
623       <filterpriority>1</filterpriority>
624     </member>
625     <member name="M:System.Convert.ToByte(System.UInt64)">
626       <summary>Converts the value of the specified 64-bit unsigned integer to an equivalent 8-bit unsigned integer.</summary>
627       <returns>An 8-bit unsigned integer that is equivalent to <paramref name="value" />.</returns>
628       <param name="value">The 64-bit unsigned integer to convert. </param>
629       <exception cref="T:System.OverflowException">
630         <paramref name="value" /> is greater than <see cref="F:System.Byte.MaxValue" />. </exception>
631       <filterpriority>1</filterpriority>
632     </member>
633     <member name="M:System.Convert.ToChar(System.Byte)">
634       <summary>Converts the value of the specified 8-bit unsigned integer to its equivalent Unicode character.</summary>
635       <returns>A Unicode character that is equivalent to <paramref name="value" />.</returns>
636       <param name="value">The 8-bit unsigned integer to convert. </param>
637       <filterpriority>1</filterpriority>
638     </member>
639     <member name="M:System.Convert.ToChar(System.Int16)">
640       <summary>Converts the value of the specified 16-bit signed integer to its equivalent Unicode character.</summary>
641       <returns>A Unicode character that is equivalent to <paramref name="value" />.</returns>
642       <param name="value">The 16-bit signed integer to convert. </param>
643       <exception cref="T:System.OverflowException">
644         <paramref name="value" /> is less than <see cref="F:System.Char.MinValue" />. </exception>
645       <filterpriority>1</filterpriority>
646     </member>
647     <member name="M:System.Convert.ToChar(System.Int32)">
648       <summary>Converts the value of the specified 32-bit signed integer to its equivalent Unicode character.</summary>
649       <returns>A Unicode character that is equivalent to <paramref name="value" />.</returns>
650       <param name="value">The 32-bit signed integer to convert. </param>
651       <exception cref="T:System.OverflowException">
652         <paramref name="value" /> is less than <see cref="F:System.Char.MinValue" /> or greater than <see cref="F:System.Char.MaxValue" />. </exception>
653       <filterpriority>1</filterpriority>
654     </member>
655     <member name="M:System.Convert.ToChar(System.Int64)">
656       <summary>Converts the value of the specified 64-bit signed integer to its equivalent Unicode character.</summary>
657       <returns>A Unicode character that is equivalent to <paramref name="value" />.</returns>
658       <param name="value">The 64-bit signed integer to convert. </param>
659       <exception cref="T:System.OverflowException">
660         <paramref name="value" /> is less than <see cref="F:System.Char.MinValue" /> or greater than <see cref="F:System.Char.MaxValue" />. </exception>
661       <filterpriority>1</filterpriority>
662     </member>
663     <member name="M:System.Convert.ToChar(System.Object)">
664       <summary>Converts the value of the specified object to a Unicode character.</summary>
665       <returns>A Unicode character that is equivalent to value, or <see cref="F:System.Char.MinValue" /> if <paramref name="value" /> is null.</returns>
666       <param name="value">An object that implements the <see cref="T:System.IConvertible" /> interface. </param>
667       <exception cref="T:System.ArgumentNullException">
668         <paramref name="value" /> is a null string.</exception>
669       <exception cref="T:System.InvalidCastException">
670         <paramref name="value" /> does not implement the <see cref="T:System.IConvertible" /> interface.-or-The conversion of <paramref name="value" /> to a <see cref="T:System.Char" /> is not supported. </exception>
671       <exception cref="T:System.OverflowException">
672         <paramref name="value" /> is less than <see cref="F:System.Char.MinValue" /> or greater than <see cref="F:System.Char.MaxValue" />.</exception>
673       <filterpriority>1</filterpriority>
674     </member>
675     <member name="M:System.Convert.ToChar(System.Object,System.IFormatProvider)">
676       <summary>Converts the value of the specified object to its equivalent Unicode character, using the specified culture-specific formatting information.</summary>
677       <returns>A Unicode character that is equivalent to <paramref name="value" />, or <see cref="F:System.Char.MinValue" /> if <paramref name="value" /> is null.</returns>
678       <param name="value">An object that implements the <see cref="T:System.IConvertible" /> interface. </param>
679       <param name="provider">An object that supplies culture-specific formatting information. </param>
680       <exception cref="T:System.ArgumentNullException">
681         <paramref name="value" /> is a null string.</exception>
682       <exception cref="T:System.InvalidCastException">
683         <paramref name="value" /> does not implement the <see cref="T:System.IConvertible" /> interface. -or-The conversion of <paramref name="value" /> to a <see cref="T:System.Char" /> is not supported.</exception>
684       <exception cref="T:System.OverflowException">
685         <paramref name="value" /> is less than <see cref="F:System.Char.MinValue" /> or greater than <see cref="F:System.Char.MaxValue" />.</exception>
686       <filterpriority>1</filterpriority>
687     </member>
688     <member name="M:System.Convert.ToChar(System.SByte)">
689       <summary>Converts the value of the specified 8-bit signed integer to its equivalent Unicode character.</summary>
690       <returns>A Unicode character that is equivalent to <paramref name="value" />.</returns>
691       <param name="value">The 8-bit signed integer to convert. </param>
692       <exception cref="T:System.OverflowException">
693         <paramref name="value" /> is less than <see cref="F:System.Char.MinValue" />. </exception>
694       <filterpriority>1</filterpriority>
695     </member>
696     <member name="M:System.Convert.ToChar(System.String)">
697       <summary>Converts the first character of a specified string to a Unicode character.</summary>
698       <returns>A Unicode character that is equivalent to the first and only character in <paramref name="value" />.</returns>
699       <param name="value">A string of length 1. </param>
700       <exception cref="T:System.ArgumentNullException">
701         <paramref name="value" /> is null. </exception>
702       <exception cref="T:System.FormatException">The length of <paramref name="value" /> is not 1. </exception>
703       <filterpriority>1</filterpriority>
704     </member>
705     <member name="M:System.Convert.ToChar(System.String,System.IFormatProvider)">
706       <summary>Converts the first character of a specified string to a Unicode character, using specified culture-specific formatting information.</summary>
707       <returns>A Unicode character that is equivalent to the first and only character in <paramref name="value" />.</returns>
708       <param name="value">A string of length 1 or null. </param>
709       <param name="provider">An object that supplies culture-specific formatting information. This parameter is ignored.</param>
710       <exception cref="T:System.ArgumentNullException">
711         <paramref name="value" /> is null. </exception>
712       <exception cref="T:System.FormatException">The length of <paramref name="value" /> is not 1. </exception>
713       <filterpriority>1</filterpriority>
714     </member>
715     <member name="M:System.Convert.ToChar(System.UInt16)">
716       <summary>Converts the value of the specified 16-bit unsigned integer to its equivalent Unicode character.</summary>
717       <returns>A Unicode character that is equivalent to <paramref name="value" />.</returns>
718       <param name="value">The 16-bit unsigned integer to convert. </param>
719       <filterpriority>1</filterpriority>
720     </member>
721     <member name="M:System.Convert.ToChar(System.UInt32)">
722       <summary>Converts the value of the specified 32-bit unsigned integer to its equivalent Unicode character.</summary>
723       <returns>A Unicode character that is equivalent to <paramref name="value" />.</returns>
724       <param name="value">The 32-bit unsigned integer to convert. </param>
725       <exception cref="T:System.OverflowException">
726         <paramref name="value" /> is greater than <see cref="F:System.Char.MaxValue" />. </exception>
727       <filterpriority>1</filterpriority>
728     </member>
729     <member name="M:System.Convert.ToChar(System.UInt64)">
730       <summary>Converts the value of the specified 64-bit unsigned integer to its equivalent Unicode character.</summary>
731       <returns>A Unicode character that is equivalent to <paramref name="value" />.</returns>
732       <param name="value">The 64-bit unsigned integer to convert. </param>
733       <exception cref="T:System.OverflowException">
734         <paramref name="value" /> is greater than <see cref="F:System.Char.MaxValue" />. </exception>
735       <filterpriority>1</filterpriority>
736     </member>
737     <member name="M:System.Convert.ToDateTime(System.Object)">
738       <summary>Converts the value of the specified object to a <see cref="T:System.DateTime" /> object.</summary>
739       <returns>The date and time equivalent of the value of <paramref name="value" />, or a date and time equivalent of <see cref="F:System.DateTime.MinValue" /> if <paramref name="value" /> is null.</returns>
740       <param name="value">An object that implements the <see cref="T:System.IConvertible" /> interface, or null. </param>
741       <exception cref="T:System.FormatException">
742         <paramref name="value" /> is not a valid date and time value.</exception>
743       <exception cref="T:System.InvalidCastException">
744         <paramref name="value" /> does not implement the <see cref="T:System.IConvertible" /> interface. -or-The conversion is not supported.</exception>
745       <filterpriority>1</filterpriority>
746     </member>
747     <member name="M:System.Convert.ToDateTime(System.Object,System.IFormatProvider)">
748       <summary>Converts the value of the specified object to a <see cref="T:System.DateTime" /> object, using the specified culture-specific formatting information.</summary>
749       <returns>The date and time equivalent of the value of <paramref name="value" />, or the date and time equivalent of <see cref="F:System.DateTime.MinValue" /> if <paramref name="value" /> is null.</returns>
750       <param name="value">An object that implements the <see cref="T:System.IConvertible" /> interface. </param>
751       <param name="provider">An object that supplies culture-specific formatting information. </param>
752       <exception cref="T:System.FormatException">
753         <paramref name="value" /> is not a valid date and time value.</exception>
754       <exception cref="T:System.InvalidCastException">
755         <paramref name="value" /> does not implement the <see cref="T:System.IConvertible" /> interface. -or-The conversion is not supported.</exception>
756       <filterpriority>1</filterpriority>
757     </member>
758     <member name="M:System.Convert.ToDateTime(System.String)">
759       <summary>Converts the specified string representation of a date and time to an equivalent date and time value.</summary>
760       <returns>The date and time equivalent of the value of <paramref name="value" />, or the date and time equivalent of <see cref="F:System.DateTime.MinValue" /> if <paramref name="value" /> is null.</returns>
761       <param name="value">The string representation of a date and time.</param>
762       <exception cref="T:System.FormatException">
763         <paramref name="value" /> is not a properly formatted date and time string. </exception>
764       <filterpriority>1</filterpriority>
765     </member>
766     <member name="M:System.Convert.ToDateTime(System.String,System.IFormatProvider)">
767       <summary>Converts the specified string representation of a number to an equivalent date and time, using the specified culture-specific formatting information.</summary>
768       <returns>The date and time equivalent of the value of <paramref name="value" />, or the date and time equivalent of <see cref="F:System.DateTime.MinValue" /> if <paramref name="value" /> is null.</returns>
769       <param name="value">A string that contains a date and time to convert. </param>
770       <param name="provider">An object that supplies culture-specific formatting information. </param>
771       <exception cref="T:System.FormatException">
772         <paramref name="value" /> is not a properly formatted date and time string. </exception>
773       <filterpriority>1</filterpriority>
774     </member>
775     <member name="M:System.Convert.ToDecimal(System.Boolean)">
776       <summary>Converts the specified Boolean value to the equivalent decimal number.</summary>
777       <returns>The number 1 if <paramref name="value" /> is true; otherwise, 0.</returns>
778       <param name="value">The Boolean value to convert. </param>
779       <filterpriority>1</filterpriority>
780     </member>
781     <member name="M:System.Convert.ToDecimal(System.Byte)">
782       <summary>Converts the value of the specified 8-bit unsigned integer to the equivalent decimal number.</summary>
783       <returns>The decimal number that is equivalent to <paramref name="value" />.</returns>
784       <param name="value">The 8-bit unsigned integer to convert. </param>
785       <filterpriority>1</filterpriority>
786     </member>
787     <member name="M:System.Convert.ToDecimal(System.Decimal)">
788       <summary>Returns the specified decimal number; no actual conversion is performed.</summary>
789       <returns>
790         <paramref name="value" /> is returned unchanged.</returns>
791       <param name="value">A decimal number. </param>
792       <filterpriority>1</filterpriority>
793     </member>
794     <member name="M:System.Convert.ToDecimal(System.Double)">
795       <summary>Converts the value of the specified double-precision floating-point number to an equivalent decimal number.</summary>
796       <returns>A decimal number that is equivalent to <paramref name="value" />. </returns>
797       <param name="value">The double-precision floating-point number to convert. </param>
798       <exception cref="T:System.OverflowException">
799         <paramref name="value" /> is greater than <see cref="F:System.Decimal.MaxValue" /> or less than <see cref="F:System.Decimal.MinValue" />. </exception>
800       <filterpriority>1</filterpriority>
801     </member>
802     <member name="M:System.Convert.ToDecimal(System.Int16)">
803       <summary>Converts the value of the specified 16-bit signed integer to an equivalent decimal number.</summary>
804       <returns>A decimal number that is equivalent to <paramref name="value" />.</returns>
805       <param name="value">The 16-bit signed integer to convert. </param>
806       <filterpriority>1</filterpriority>
807     </member>
808     <member name="M:System.Convert.ToDecimal(System.Int32)">
809       <summary>Converts the value of the specified 32-bit signed integer to an equivalent decimal number.</summary>
810       <returns>A decimal number that is equivalent to <paramref name="value" />.</returns>
811       <param name="value">The 32-bit signed integer to convert. </param>
812       <filterpriority>1</filterpriority>
813     </member>
814     <member name="M:System.Convert.ToDecimal(System.Int64)">
815       <summary>Converts the value of the specified 64-bit signed integer to an equivalent decimal number.</summary>
816       <returns>A decimal number that is equivalent to <paramref name="value" />.</returns>
817       <param name="value">The 64-bit signed integer to convert. </param>
818       <filterpriority>1</filterpriority>
819     </member>
820     <member name="M:System.Convert.ToDecimal(System.Object)">
821       <summary>Converts the value of the specified object to an equivalent decimal number.</summary>
822       <returns>A decimal number that is equivalent to <paramref name="value" />, or 0 (zero) if <paramref name="value" /> is null.</returns>
823       <param name="value">An object that implements the <see cref="T:System.IConvertible" /> interface, or null. </param>
824       <exception cref="T:System.FormatException">
825         <paramref name="value" /> is not in an appropriate format for a <see cref="T:System.Decimal" /> type.</exception>
826       <exception cref="T:System.InvalidCastException">
827         <paramref name="value" /> does not implement the <see cref="T:System.IConvertible" /> interface. -or-The conversion is not supported.</exception>
828       <exception cref="T:System.OverflowException">
829         <paramref name="value" /> represents a number that is less than <see cref="F:System.Decimal.MinValue" /> or greater than <see cref="F:System.Decimal.MaxValue" />.</exception>
830       <filterpriority>1</filterpriority>
831     </member>
832     <member name="M:System.Convert.ToDecimal(System.Object,System.IFormatProvider)">
833       <summary>Converts the value of the specified object to an equivalent decimal number, using the specified culture-specific formatting information.</summary>
834       <returns>A decimal number that is equivalent to <paramref name="value" />, or 0 (zero) if <paramref name="value" /> is null.</returns>
835       <param name="value">An object that implements the <see cref="T:System.IConvertible" /> interface. </param>
836       <param name="provider">An object that supplies culture-specific formatting information. </param>
837       <exception cref="T:System.FormatException">
838         <paramref name="value" /> is not in an appropriate format for a <see cref="T:System.Decimal" /> type.</exception>
839       <exception cref="T:System.InvalidCastException">
840         <paramref name="value" /> does not implement the <see cref="T:System.IConvertible" /> interface.-or-The conversion is not supported. </exception>
841       <exception cref="T:System.OverflowException">
842         <paramref name="value" /> represents a number that is less than <see cref="F:System.Decimal.MinValue" /> or greater than <see cref="F:System.Decimal.MaxValue" />.</exception>
843       <filterpriority>1</filterpriority>
844     </member>
845     <member name="M:System.Convert.ToDecimal(System.SByte)">
846       <summary>Converts the value of the specified 8-bit signed integer to the equivalent decimal number.</summary>
847       <returns>A decimal number that is equivalent to <paramref name="value" />.</returns>
848       <param name="value">The 8-bit signed integer to convert. </param>
849       <filterpriority>1</filterpriority>
850     </member>
851     <member name="M:System.Convert.ToDecimal(System.Single)">
852       <summary>Converts the value of the specified single-precision floating-point number to the equivalent decimal number.</summary>
853       <returns>A decimal number that is equivalent to <paramref name="value" />. </returns>
854       <param name="value">The single-precision floating-point number to convert. </param>
855       <exception cref="T:System.OverflowException">
856         <paramref name="value" /> is greater than <see cref="F:System.Decimal.MaxValue" /> or less than <see cref="F:System.Decimal.MinValue" />.</exception>
857       <filterpriority>1</filterpriority>
858     </member>
859     <member name="M:System.Convert.ToDecimal(System.String)">
860       <summary>Converts the specified string representation of a number to an equivalent decimal number.</summary>
861       <returns>A decimal number that is equivalent to the number in <paramref name="value" />, or 0 (zero) if <paramref name="value" /> is null.</returns>
862       <param name="value">A string that contains a number to convert. </param>
863       <exception cref="T:System.FormatException">
864         <paramref name="value" /> is not a number in a valid format.</exception>
865       <exception cref="T:System.OverflowException">
866         <paramref name="value" /> represents a number that is less than <see cref="F:System.Decimal.MinValue" /> or greater than <see cref="F:System.Decimal.MaxValue" />. </exception>
867       <filterpriority>1</filterpriority>
868     </member>
869     <member name="M:System.Convert.ToDecimal(System.String,System.IFormatProvider)">
870       <summary>Converts the specified string representation of a number to an equivalent decimal number, using the specified culture-specific formatting information.</summary>
871       <returns>A decimal number that is equivalent to the number in <paramref name="value" />, or 0 (zero) if <paramref name="value" /> is null.</returns>
872       <param name="value">A string that contains a number to convert. </param>
873       <param name="provider">An object that supplies culture-specific formatting information. </param>
874       <exception cref="T:System.FormatException">
875         <paramref name="value" /> is not a number in a valid format.</exception>
876       <exception cref="T:System.OverflowException">
877         <paramref name="value" /> represents a number that is less than <see cref="F:System.Decimal.MinValue" /> or greater than <see cref="F:System.Decimal.MaxValue" />. </exception>
878       <filterpriority>1</filterpriority>
879     </member>
880     <member name="M:System.Convert.ToDecimal(System.UInt16)">
881       <summary>Converts the value of the specified 16-bit unsigned integer to an equivalent decimal number.</summary>
882       <returns>The decimal number that is equivalent to <paramref name="value" />.</returns>
883       <param name="value">The 16-bit unsigned integer to convert. </param>
884       <filterpriority>1</filterpriority>
885     </member>
886     <member name="M:System.Convert.ToDecimal(System.UInt32)">
887       <summary>Converts the value of the specified 32-bit unsigned integer to an equivalent decimal number.</summary>
888       <returns>A decimal number that is equivalent to <paramref name="value" />.</returns>
889       <param name="value">The 32-bit unsigned integer to convert. </param>
890       <filterpriority>1</filterpriority>
891     </member>
892     <member name="M:System.Convert.ToDecimal(System.UInt64)">
893       <summary>Converts the value of the specified 64-bit unsigned integer to an equivalent decimal number.</summary>
894       <returns>A decimal number that is equivalent to <paramref name="value" />.</returns>
895       <param name="value">The 64-bit unsigned integer to convert. </param>
896       <filterpriority>1</filterpriority>
897     </member>
898     <member name="M:System.Convert.ToDouble(System.Boolean)">
899       <summary>Converts the specified Boolean value to the equivalent double-precision floating-point number.</summary>
900       <returns>The number 1 if <paramref name="value" /> is true; otherwise, 0.</returns>
901       <param name="value">The Boolean value to convert. </param>
902       <filterpriority>1</filterpriority>
903     </member>
904     <member name="M:System.Convert.ToDouble(System.Byte)">
905       <summary>Converts the value of the specified 8-bit unsigned integer to the equivalent double-precision floating-point number.</summary>
906       <returns>The double-precision floating-point number that is equivalent to <paramref name="value" />.</returns>
907       <param name="value">The 8-bit unsigned integer to convert. </param>
908       <filterpriority>1</filterpriority>
909     </member>
910     <member name="M:System.Convert.ToDouble(System.Decimal)">
911       <summary>Converts the value of the specified decimal number to an equivalent double-precision floating-point number.</summary>
912       <returns>A double-precision floating-point number that is equivalent to <paramref name="value" />.</returns>
913       <param name="value">The decimal number to convert. </param>
914       <filterpriority>1</filterpriority>
915     </member>
916     <member name="M:System.Convert.ToDouble(System.Double)">
917       <summary>Returns the specified double-precision floating-point number; no actual conversion is performed.</summary>
918       <returns>
919         <paramref name="value" /> is returned unchanged.</returns>
920       <param name="value">The double-precision floating-point number to return. </param>
921       <filterpriority>1</filterpriority>
922     </member>
923     <member name="M:System.Convert.ToDouble(System.Int16)">
924       <summary>Converts the value of the specified 16-bit signed integer to an equivalent double-precision floating-point number.</summary>
925       <returns>A double-precision floating-point number equivalent to <paramref name="value" />.</returns>
926       <param name="value">The 16-bit signed integer to convert. </param>
927       <filterpriority>1</filterpriority>
928     </member>
929     <member name="M:System.Convert.ToDouble(System.Int32)">
930       <summary>Converts the value of the specified 32-bit signed integer to an equivalent double-precision floating-point number.</summary>
931       <returns>A double-precision floating-point number that is equivalent to <paramref name="value" />.</returns>
932       <param name="value">The 32-bit signed integer to convert. </param>
933       <filterpriority>1</filterpriority>
934     </member>
935     <member name="M:System.Convert.ToDouble(System.Int64)">
936       <summary>Converts the value of the specified 64-bit signed integer to an equivalent double-precision floating-point number.</summary>
937       <returns>A double-precision floating-point number that is equivalent to <paramref name="value" />.</returns>
938       <param name="value">The 64-bit signed integer to convert. </param>
939       <filterpriority>1</filterpriority>
940     </member>
941     <member name="M:System.Convert.ToDouble(System.Object)">
942       <summary>Converts the value of the specified object to a double-precision floating-point number.</summary>
943       <returns>A double-precision floating-point number that is equivalent to <paramref name="value" />, or zero if <paramref name="value" /> is null.</returns>
944       <param name="value">An object that implements the <see cref="T:System.IConvertible" /> interface, or null. </param>
945       <exception cref="T:System.FormatException">
946         <paramref name="value" /> is not in an appropriate format for a <see cref="T:System.Double" /> type.</exception>
947       <exception cref="T:System.InvalidCastException">
948         <paramref name="value" /> does not implement the <see cref="T:System.IConvertible" /> interface. -or-The conversion is not supported.</exception>
949       <exception cref="T:System.OverflowException">
950         <paramref name="value" /> represents a number that is less than <see cref="F:System.Double.MinValue" /> or greater than <see cref="F:System.Double.MaxValue" />. </exception>
951       <filterpriority>1</filterpriority>
952     </member>
953     <member name="M:System.Convert.ToDouble(System.Object,System.IFormatProvider)">
954       <summary>Converts the value of the specified object to an double-precision floating-point number, using the specified culture-specific formatting information.</summary>
955       <returns>A double-precision floating-point number that is equivalent to <paramref name="value" />, or zero if <paramref name="value" /> is null.</returns>
956       <param name="value">An object that implements the <see cref="T:System.IConvertible" /> interface. </param>
957       <param name="provider">An object that supplies culture-specific formatting information. </param>
958       <exception cref="T:System.FormatException">
959         <paramref name="value" /> is not in an appropriate format for a <see cref="T:System.Double" /> type.</exception>
960       <exception cref="T:System.InvalidCastException">
961         <paramref name="value" /> does not implement the <see cref="T:System.IConvertible" /> interface. </exception>
962       <exception cref="T:System.OverflowException">
963         <paramref name="value" /> represents a number that is less than <see cref="F:System.Double.MinValue" /> or greater than <see cref="F:System.Double.MaxValue" />. </exception>
964       <filterpriority>1</filterpriority>
965     </member>
966     <member name="M:System.Convert.ToDouble(System.SByte)">
967       <summary>Converts the value of the specified 8-bit signed integer to the equivalent double-precision floating-point number.</summary>
968       <returns>The 8-bit signed integer that is equivalent to <paramref name="value" />.</returns>
969       <param name="value">The 8-bit signed integer to convert. </param>
970       <filterpriority>1</filterpriority>
971     </member>
972     <member name="M:System.Convert.ToDouble(System.Single)">
973       <summary>Converts the value of the specified single-precision floating-point number to an equivalent double-precision floating-point number.</summary>
974       <returns>A double-precision floating-point number that is equivalent to <paramref name="value" />.</returns>
975       <param name="value">The single-precision floating-point number. </param>
976       <filterpriority>1</filterpriority>
977     </member>
978     <member name="M:System.Convert.ToDouble(System.String)">
979       <summary>Converts the specified string representation of a number to an equivalent double-precision floating-point number.</summary>
980       <returns>A double-precision floating-point number that is equivalent to the number in <paramref name="value" />, or 0 (zero) if <paramref name="value" /> is null.</returns>
981       <param name="value">A string that contains the number to convert. </param>
982       <exception cref="T:System.FormatException">
983         <paramref name="value" /> is not a number in a valid format.</exception>
984       <exception cref="T:System.OverflowException">
985         <paramref name="value" /> represents a number that is less than <see cref="F:System.Double.MinValue" /> or greater than <see cref="F:System.Double.MaxValue" />. </exception>
986       <filterpriority>1</filterpriority>
987     </member>
988     <member name="M:System.Convert.ToDouble(System.String,System.IFormatProvider)">
989       <summary>Converts the specified string representation of a number to an equivalent double-precision floating-point number, using the specified culture-specific formatting information.</summary>
990       <returns>A double-precision floating-point number that is equivalent to the number in <paramref name="value" />, or 0 (zero) if <paramref name="value" /> is null.</returns>
991       <param name="value">A string that contains the number to convert. </param>
992       <param name="provider">An object that supplies culture-specific formatting information. </param>
993       <exception cref="T:System.FormatException">
994         <paramref name="value" /> is not a number in a valid format.</exception>
995       <exception cref="T:System.OverflowException">
996         <paramref name="value" /> represents a number that is less than <see cref="F:System.Double.MinValue" /> or greater than <see cref="F:System.Double.MaxValue" />. </exception>
997       <filterpriority>1</filterpriority>
998     </member>
999     <member name="M:System.Convert.ToDouble(System.UInt16)">
1000       <summary>Converts the value of the specified 16-bit unsigned integer to the equivalent double-precision floating-point number.</summary>
1001       <returns>A double-precision floating-point number that is equivalent to <paramref name="value" />.</returns>
1002       <param name="value">The 16-bit unsigned integer to convert. </param>
1003       <filterpriority>1</filterpriority>
1004     </member>
1005     <member name="M:System.Convert.ToDouble(System.UInt32)">
1006       <summary>Converts the value of the specified 32-bit unsigned integer to an equivalent double-precision floating-point number.</summary>
1007       <returns>A double-precision floating-point number that is equivalent to <paramref name="value" />.</returns>
1008       <param name="value">The 32-bit unsigned integer to convert. </param>
1009       <filterpriority>1</filterpriority>
1010     </member>
1011     <member name="M:System.Convert.ToDouble(System.UInt64)">
1012       <summary>Converts the value of the specified 64-bit unsigned integer to an equivalent double-precision floating-point number.</summary>
1013       <returns>A double-precision floating-point number that is equivalent to <paramref name="value" />.</returns>
1014       <param name="value">The 64-bit unsigned integer to convert. </param>
1015       <filterpriority>1</filterpriority>
1016     </member>
1017     <member name="M:System.Convert.ToInt16(System.Boolean)">
1018       <summary>Converts the specified Boolean value to the equivalent 16-bit signed integer.</summary>
1019       <returns>The number 1 if <paramref name="value" /> is true; otherwise, 0.</returns>
1020       <param name="value">The Boolean value to convert. </param>
1021       <filterpriority>1</filterpriority>
1022     </member>
1023     <member name="M:System.Convert.ToInt16(System.Byte)">
1024       <summary>Converts the value of the specified 8-bit unsigned integer to the equivalent 16-bit signed integer.</summary>
1025       <returns>A 16-bit signed integer that is equivalent to <paramref name="value" />.</returns>
1026       <param name="value">The 8-bit unsigned integer to convert. </param>
1027       <filterpriority>1</filterpriority>
1028     </member>
1029     <member name="M:System.Convert.ToInt16(System.Char)">
1030       <summary>Converts the value of the specified Unicode character to the equivalent 16-bit signed integer.</summary>
1031       <returns>A 16-bit signed integer that is equivalent to <paramref name="value" />. </returns>
1032       <param name="value">The Unicode character to convert. </param>
1033       <exception cref="T:System.OverflowException">
1034         <paramref name="value" /> is greater than <see cref="F:System.Int16.MaxValue" />. </exception>
1035       <filterpriority>1</filterpriority>
1036     </member>
1037     <member name="M:System.Convert.ToInt16(System.Decimal)">
1038       <summary>Converts the value of the specified decimal number to an equivalent 16-bit signed integer.</summary>
1039       <returns>
1040         <paramref name="value" />, rounded to the nearest 16-bit signed integer. If <paramref name="value" /> is halfway between two whole numbers, the even number is returned; that is, 4.5 is converted to 4, and 5.5 is converted to 6.</returns>
1041       <param name="value">The decimal number to convert. </param>
1042       <exception cref="T:System.OverflowException">
1043         <paramref name="value" /> is greater than <see cref="F:System.Int16.MaxValue" /> or less than <see cref="F:System.Int16.MinValue" />. </exception>
1044       <filterpriority>1</filterpriority>
1045     </member>
1046     <member name="M:System.Convert.ToInt16(System.Double)">
1047       <summary>Converts the value of the specified double-precision floating-point number to an equivalent 16-bit signed integer.</summary>
1048       <returns>
1049         <paramref name="value" />, rounded to the nearest 16-bit signed integer. If <paramref name="value" /> is halfway between two whole numbers, the even number is returned; that is, 4.5 is converted to 4, and 5.5 is converted to 6.</returns>
1050       <param name="value">The double-precision floating-point number to convert. </param>
1051       <exception cref="T:System.OverflowException">
1052         <paramref name="value" /> is greater than <see cref="F:System.Int16.MaxValue" /> or less than <see cref="F:System.Int16.MinValue" />. </exception>
1053       <filterpriority>1</filterpriority>
1054     </member>
1055     <member name="M:System.Convert.ToInt16(System.Int16)">
1056       <summary>Returns the specified 16-bit signed integer; no actual conversion is performed.</summary>
1057       <returns>
1058         <paramref name="value" /> is returned unchanged.</returns>
1059       <param name="value">The 16-bit signed integer to return. </param>
1060       <filterpriority>1</filterpriority>
1061     </member>
1062     <member name="M:System.Convert.ToInt16(System.Int32)">
1063       <summary>Converts the value of the specified 32-bit signed integer to an equivalent 16-bit signed integer.</summary>
1064       <returns>The 16-bit signed integer equivalent of <paramref name="value" />.</returns>
1065       <param name="value">The 32-bit signed integer to convert. </param>
1066       <exception cref="T:System.OverflowException">
1067         <paramref name="value" /> is greater than <see cref="F:System.Int16.MaxValue" /> or less than <see cref="F:System.Int16.MinValue" />. </exception>
1068       <filterpriority>1</filterpriority>
1069     </member>
1070     <member name="M:System.Convert.ToInt16(System.Int64)">
1071       <summary>Converts the value of the specified 64-bit signed integer to an equivalent 16-bit signed integer.</summary>
1072       <returns>A 16-bit signed integer that is equivalent to <paramref name="value" />.</returns>
1073       <param name="value">The 64-bit signed integer to convert. </param>
1074       <exception cref="T:System.OverflowException">
1075         <paramref name="value" /> is greater than <see cref="F:System.Int16.MaxValue" /> or less than <see cref="F:System.Int16.MinValue" />. </exception>
1076       <filterpriority>1</filterpriority>
1077     </member>
1078     <member name="M:System.Convert.ToInt16(System.Object)">
1079       <summary>Converts the value of the specified object to a 16-bit signed integer.</summary>
1080       <returns>A 16-bit signed integer that is equivalent to <paramref name="value" />, or zero if <paramref name="value" /> is null.</returns>
1081       <param name="value">An object that implements the <see cref="T:System.IConvertible" /> interface, or null. </param>
1082       <exception cref="T:System.FormatException">
1083         <paramref name="value" /> is not in an appropriate format for an <see cref="T:System.Int16" /> type.</exception>
1084       <exception cref="T:System.InvalidCastException">
1085         <paramref name="value" /> does not implement the <see cref="T:System.IConvertible" /> interface. -or-The conversion is not supported.</exception>
1086       <exception cref="T:System.OverflowException">
1087         <paramref name="value" /> represents a number that is less than <see cref="F:System.Int16.MinValue" /> or greater than <see cref="F:System.Int16.MaxValue" />.</exception>
1088       <filterpriority>1</filterpriority>
1089     </member>
1090     <member name="M:System.Convert.ToInt16(System.Object,System.IFormatProvider)">
1091       <summary>Converts the value of the specified object to a 16-bit signed integer, using the specified culture-specific formatting information.</summary>
1092       <returns>A 16-bit signed integer that is equivalent to <paramref name="value" />, or zero if <paramref name="value" /> is null.</returns>
1093       <param name="value">An object that implements the <see cref="T:System.IConvertible" /> interface. </param>
1094       <param name="provider">An object that supplies culture-specific formatting information. </param>
1095       <exception cref="T:System.FormatException">
1096         <paramref name="value" /> is not in an appropriate format for an <see cref="T:System.Int16" /> type.</exception>
1097       <exception cref="T:System.InvalidCastException">
1098         <paramref name="value" /> does not implement <see cref="T:System.IConvertible" />. </exception>
1099       <exception cref="T:System.OverflowException">
1100         <paramref name="value" /> represents a number that is less than <see cref="F:System.Int16.MinValue" /> or greater than <see cref="F:System.Int16.MaxValue" />.</exception>
1101       <filterpriority>1</filterpriority>
1102     </member>
1103     <member name="M:System.Convert.ToInt16(System.SByte)">
1104       <summary>Converts the value of the specified 8-bit signed integer to the equivalent 16-bit signed integer.</summary>
1105       <returns>A 8-bit signed integer that is equivalent to <paramref name="value" />.</returns>
1106       <param name="value">The 8-bit signed integer to convert. </param>
1107       <filterpriority>1</filterpriority>
1108     </member>
1109     <member name="M:System.Convert.ToInt16(System.Single)">
1110       <summary>Converts the value of the specified single-precision floating-point number to an equivalent 16-bit signed integer.</summary>
1111       <returns>
1112         <paramref name="value" />, rounded to the nearest 16-bit signed integer. If <paramref name="value" /> is halfway between two whole numbers, the even number is returned; that is, 4.5 is converted to 4, and 5.5 is converted to 6.</returns>
1113       <param name="value">The single-precision floating-point number to convert. </param>
1114       <exception cref="T:System.OverflowException">
1115         <paramref name="value" /> is greater than <see cref="F:System.Int16.MaxValue" /> or less than <see cref="F:System.Int16.MinValue" />. </exception>
1116       <filterpriority>1</filterpriority>
1117     </member>
1118     <member name="M:System.Convert.ToInt16(System.String)">
1119       <summary>Converts the specified string representation of a number to an equivalent 16-bit signed integer.</summary>
1120       <returns>A 16-bit signed integer that is equivalent to the number in <paramref name="value" />, or 0 (zero) if <paramref name="value" /> is null.</returns>
1121       <param name="value">A string that contains the number to convert. </param>
1122       <exception cref="T:System.FormatException">
1123         <paramref name="value" /> does not consist of an optional sign followed by a sequence of digits (0 through 9). </exception>
1124       <exception cref="T:System.OverflowException">
1125         <paramref name="value" /> represents a number that is less than <see cref="F:System.Int16.MinValue" /> or greater than <see cref="F:System.Int16.MaxValue" />. </exception>
1126       <filterpriority>1</filterpriority>
1127     </member>
1128     <member name="M:System.Convert.ToInt16(System.String,System.IFormatProvider)">
1129       <summary>Converts the specified string representation of a number to an equivalent 16-bit signed integer, using the specified culture-specific formatting information.</summary>
1130       <returns>A 16-bit signed integer that is equivalent to the number in <paramref name="value" />, or 0 (zero) if <paramref name="value" /> is null.</returns>
1131       <param name="value">A string that contains the number to convert. </param>
1132       <param name="provider">An object that supplies culture-specific formatting information. </param>
1133       <exception cref="T:System.FormatException">
1134         <paramref name="value" /> does not consist of an optional sign followed by a sequence of digits (0 through 9). </exception>
1135       <exception cref="T:System.OverflowException">
1136         <paramref name="value" /> represents a number that is less than <see cref="F:System.Int16.MinValue" /> or greater than <see cref="F:System.Int16.MaxValue" />. </exception>
1137       <filterpriority>1</filterpriority>
1138     </member>
1139     <member name="M:System.Convert.ToInt16(System.String,System.Int32)">
1140       <summary>Converts the string representation of a number in a specified base to an equivalent 16-bit signed integer.</summary>
1141       <returns>A 16-bit signed integer that is equivalent to the number in <paramref name="value" />, or 0 (zero) if <paramref name="value" /> is null.</returns>
1142       <param name="value">A string that contains the number to convert. </param>
1143       <param name="fromBase">The base of the number in <paramref name="value" />, which must be 2, 8, 10, or 16. </param>
1144       <exception cref="T:System.ArgumentException">
1145         <paramref name="fromBase" /> is not 2, 8, 10, or 16. -or-<paramref name="value" />, which represents a non-base 10 signed number, is prefixed with a negative sign. </exception>
1146       <exception cref="T:System.ArgumentOutOfRangeException">
1147         <paramref name="value" /> is <see cref="F:System.String.Empty" />. </exception>
1148       <exception cref="T:System.FormatException">
1149         <paramref name="value" /> contains a character that is not a valid digit in the base specified by <paramref name="fromBase" />. The exception message indicates that there are no digits to convert if the first character in <paramref name="value" /> is invalid; otherwise, the message indicates that <paramref name="value" /> contains invalid trailing characters.</exception>
1150       <exception cref="T:System.OverflowException">
1151         <paramref name="value" />, which represents a non-base 10 signed number, is prefixed with a negative sign.-or-<paramref name="value" /> represents a number that is less than <see cref="F:System.Int16.MinValue" /> or greater than <see cref="F:System.Int16.MaxValue" />.</exception>
1152       <filterpriority>1</filterpriority>
1153     </member>
1154     <member name="M:System.Convert.ToInt16(System.UInt16)">
1155       <summary>Converts the value of the specified 16-bit unsigned integer to the equivalent 16-bit signed integer.</summary>
1156       <returns>A 16-bit signed integer that is equivalent to <paramref name="value" />.</returns>
1157       <param name="value">The 16-bit unsigned integer to convert. </param>
1158       <exception cref="T:System.OverflowException">
1159         <paramref name="value" /> is greater than <see cref="F:System.Int16.MaxValue" />. </exception>
1160       <filterpriority>1</filterpriority>
1161     </member>
1162     <member name="M:System.Convert.ToInt16(System.UInt32)">
1163       <summary>Converts the value of the specified 32-bit unsigned integer to an equivalent 16-bit signed integer.</summary>
1164       <returns>A 16-bit signed integer that is equivalent to <paramref name="value" />.</returns>
1165       <param name="value">The 32-bit unsigned integer to convert. </param>
1166       <exception cref="T:System.OverflowException">
1167         <paramref name="value" /> is greater than <see cref="F:System.Int16.MaxValue" />. </exception>
1168       <filterpriority>1</filterpriority>
1169     </member>
1170     <member name="M:System.Convert.ToInt16(System.UInt64)">
1171       <summary>Converts the value of the specified 64-bit unsigned integer to an equivalent 16-bit signed integer.</summary>
1172       <returns>A 16-bit signed integer that is equivalent to <paramref name="value" />.</returns>
1173       <param name="value">The 64-bit unsigned integer to convert. </param>
1174       <exception cref="T:System.OverflowException">
1175         <paramref name="value" /> is greater than <see cref="F:System.Int16.MaxValue" />. </exception>
1176       <filterpriority>1</filterpriority>
1177     </member>
1178     <member name="M:System.Convert.ToInt32(System.Boolean)">
1179       <summary>Converts the specified Boolean value to the equivalent 32-bit signed integer.</summary>
1180       <returns>The number 1 if <paramref name="value" /> is true; otherwise, 0.</returns>
1181       <param name="value">The Boolean value to convert. </param>
1182       <filterpriority>1</filterpriority>
1183     </member>
1184     <member name="M:System.Convert.ToInt32(System.Byte)">
1185       <summary>Converts the value of the specified 8-bit unsigned integer to the equivalent 32-bit signed integer.</summary>
1186       <returns>A 32-bit signed integer that is equivalent to <paramref name="value" />.</returns>
1187       <param name="value">The 8-bit unsigned integer to convert. </param>
1188       <filterpriority>1</filterpriority>
1189     </member>
1190     <member name="M:System.Convert.ToInt32(System.Char)">
1191       <summary>Converts the value of the specified Unicode character to the equivalent 32-bit signed integer.</summary>
1192       <returns>A 32-bit signed integer that is equivalent to <paramref name="value" />.</returns>
1193       <param name="value">The Unicode character to convert. </param>
1194       <filterpriority>1</filterpriority>
1195     </member>
1196     <member name="M:System.Convert.ToInt32(System.Decimal)">
1197       <summary>Converts the value of the specified decimal number to an equivalent 32-bit signed integer.</summary>
1198       <returns>
1199         <paramref name="value" />, rounded to the nearest 32-bit signed integer. If <paramref name="value" /> is halfway between two whole numbers, the even number is returned; that is, 4.5 is converted to 4, and 5.5 is converted to 6.</returns>
1200       <param name="value">The decimal number to convert. </param>
1201       <exception cref="T:System.OverflowException">
1202         <paramref name="value" /> is greater than <see cref="F:System.Int32.MaxValue" /> or less than <see cref="F:System.Int32.MinValue" />. </exception>
1203       <filterpriority>1</filterpriority>
1204     </member>
1205     <member name="M:System.Convert.ToInt32(System.Double)">
1206       <summary>Converts the value of the specified double-precision floating-point number to an equivalent 32-bit signed integer.</summary>
1207       <returns>
1208         <paramref name="value" />, rounded to the nearest 32-bit signed integer. If <paramref name="value" /> is halfway between two whole numbers, the even number is returned; that is, 4.5 is converted to 4, and 5.5 is converted to 6.</returns>
1209       <param name="value">The double-precision floating-point number to convert. </param>
1210       <exception cref="T:System.OverflowException">
1211         <paramref name="value" /> is greater than <see cref="F:System.Int32.MaxValue" /> or less than <see cref="F:System.Int32.MinValue" />. </exception>
1212       <filterpriority>1</filterpriority>
1213     </member>
1214     <member name="M:System.Convert.ToInt32(System.Int16)">
1215       <summary>Converts the value of the specified 16-bit signed integer to an equivalent 32-bit signed integer.</summary>
1216       <returns>A 32-bit signed integer that is equivalent to <paramref name="value" />.</returns>
1217       <param name="value">The 16-bit signed integer to convert. </param>
1218       <filterpriority>1</filterpriority>
1219     </member>
1220     <member name="M:System.Convert.ToInt32(System.Int32)">
1221       <summary>Returns the specified 32-bit signed integer; no actual conversion is performed.</summary>
1222       <returns>
1223         <paramref name="value" /> is returned unchanged.</returns>
1224       <param name="value">The 32-bit signed integer to return. </param>
1225       <filterpriority>1</filterpriority>
1226     </member>
1227     <member name="M:System.Convert.ToInt32(System.Int64)">
1228       <summary>Converts the value of the specified 64-bit signed integer to an equivalent 32-bit signed integer.</summary>
1229       <returns>A 32-bit signed integer that is equivalent to <paramref name="value" />.</returns>
1230       <param name="value">The 64-bit signed integer to convert. </param>
1231       <exception cref="T:System.OverflowException">
1232         <paramref name="value" /> is greater than <see cref="F:System.Int32.MaxValue" /> or less than <see cref="F:System.Int32.MinValue" />. </exception>
1233       <filterpriority>1</filterpriority>
1234     </member>
1235     <member name="M:System.Convert.ToInt32(System.Object)">
1236       <summary>Converts the value of the specified object to a 32-bit signed integer.</summary>
1237       <returns>A 32-bit signed integer equivalent to <paramref name="value" />, or zero if <paramref name="value" /> is null.</returns>
1238       <param name="value">An object that implements the <see cref="T:System.IConvertible" /> interface, or null. </param>
1239       <exception cref="T:System.FormatException">
1240         <paramref name="value" /> is not in an appropriate format.</exception>
1241       <exception cref="T:System.InvalidCastException">
1242         <paramref name="value" /> does not implement the  <see cref="T:System.IConvertible" /> interface. -or-The conversion is not supported.</exception>
1243       <exception cref="T:System.OverflowException">
1244         <paramref name="value" /> represents a number that is less than <see cref="F:System.Int32.MinValue" /> or greater than <see cref="F:System.Int32.MaxValue" />.</exception>
1245       <filterpriority>1</filterpriority>
1246     </member>
1247     <member name="M:System.Convert.ToInt32(System.Object,System.IFormatProvider)">
1248       <summary>Converts the value of the specified object to a 32-bit signed integer, using the specified culture-specific formatting information.</summary>
1249       <returns>A 32-bit signed integer that is equivalent to <paramref name="value" />, or zero if <paramref name="value" /> is null.</returns>
1250       <param name="value">An object that implements the <see cref="T:System.IConvertible" /> interface. </param>
1251       <param name="provider">An object that supplies culture-specific formatting information. </param>
1252       <exception cref="T:System.FormatException">
1253         <paramref name="value" /> is not in an appropriate format.</exception>
1254       <exception cref="T:System.InvalidCastException">
1255         <paramref name="value" /> does not implement <see cref="T:System.IConvertible" />. </exception>
1256       <exception cref="T:System.OverflowException">
1257         <paramref name="value" /> represents a number that is less than <see cref="F:System.Int32.MinValue" /> or greater than <see cref="F:System.Int32.MaxValue" />.</exception>
1258       <filterpriority>1</filterpriority>
1259     </member>
1260     <member name="M:System.Convert.ToInt32(System.SByte)">
1261       <summary>Converts the value of the specified 8-bit signed integer to the equivalent 32-bit signed integer.</summary>
1262       <returns>A 8-bit signed integer that is equivalent to <paramref name="value" />.</returns>
1263       <param name="value">The 8-bit signed integer to convert. </param>
1264       <filterpriority>1</filterpriority>
1265     </member>
1266     <member name="M:System.Convert.ToInt32(System.Single)">
1267       <summary>Converts the value of the specified single-precision floating-point number to an equivalent 32-bit signed integer.</summary>
1268       <returns>
1269         <paramref name="value" />, rounded to the nearest 32-bit signed integer. If <paramref name="value" /> is halfway between two whole numbers, the even number is returned; that is, 4.5 is converted to 4, and 5.5 is converted to 6.</returns>
1270       <param name="value">The single-precision floating-point number to convert. </param>
1271       <exception cref="T:System.OverflowException">
1272         <paramref name="value" /> is greater than <see cref="F:System.Int32.MaxValue" /> or less than <see cref="F:System.Int32.MinValue" />. </exception>
1273       <filterpriority>1</filterpriority>
1274     </member>
1275     <member name="M:System.Convert.ToInt32(System.String)">
1276       <summary>Converts the specified string representation of a number to an equivalent 32-bit signed integer.</summary>
1277       <returns>A 32-bit signed integer that is equivalent to the number in <paramref name="value" />, or 0 (zero) if <paramref name="value" /> is null.</returns>
1278       <param name="value">A string that contains the number to convert. </param>
1279       <exception cref="T:System.FormatException">
1280         <paramref name="value" /> does not consist of an optional sign followed by a sequence of digits (0 through 9). </exception>
1281       <exception cref="T:System.OverflowException">
1282         <paramref name="value" /> represents a number that is less than <see cref="F:System.Int32.MinValue" /> or greater than <see cref="F:System.Int32.MaxValue" />. </exception>
1283       <filterpriority>1</filterpriority>
1284     </member>
1285     <member name="M:System.Convert.ToInt32(System.String,System.IFormatProvider)">
1286       <summary>Converts the specified string representation of a number to an equivalent 32-bit signed integer, using the specified culture-specific formatting information.</summary>
1287       <returns>A 32-bit signed integer that is equivalent to the number in <paramref name="value" />, or 0 (zero) if <paramref name="value" /> is null.</returns>
1288       <param name="value">A string that contains the number to convert. </param>
1289       <param name="provider">An object that supplies culture-specific formatting information. </param>
1290       <exception cref="T:System.FormatException">
1291         <paramref name="value" /> does not consist of an optional sign followed by a sequence of digits (0 through 9). </exception>
1292       <exception cref="T:System.OverflowException">
1293         <paramref name="value" /> represents a number that is less than <see cref="F:System.Int32.MinValue" /> or greater than <see cref="F:System.Int32.MaxValue" />. </exception>
1294       <filterpriority>1</filterpriority>
1295     </member>
1296     <member name="M:System.Convert.ToInt32(System.String,System.Int32)">
1297       <summary>Converts the string representation of a number in a specified base to an equivalent 32-bit signed integer.</summary>
1298       <returns>A 32-bit signed integer that is equivalent to the number in <paramref name="value" />, or 0 (zero) if <paramref name="value" /> is null.</returns>
1299       <param name="value">A string that contains the number to convert. </param>
1300       <param name="fromBase">The base of the number in <paramref name="value" />, which must be 2, 8, 10, or 16. </param>
1301       <exception cref="T:System.ArgumentException">
1302         <paramref name="fromBase" /> is not 2, 8, 10, or 16. -or-<paramref name="value" />, which represents a non-base 10 signed number, is prefixed with a negative sign. </exception>
1303       <exception cref="T:System.ArgumentOutOfRangeException">
1304         <paramref name="value" /> is <see cref="F:System.String.Empty" />. </exception>
1305       <exception cref="T:System.FormatException">
1306         <paramref name="value" /> contains a character that is not a valid digit in the base specified by <paramref name="fromBase" />. The exception message indicates that there are no digits to convert if the first character in <paramref name="value" /> is invalid; otherwise, the message indicates that <paramref name="value" /> contains invalid trailing characters.</exception>
1307       <exception cref="T:System.OverflowException">
1308         <paramref name="value" />, which represents a non-base 10 signed number, is prefixed with a negative sign.-or-<paramref name="value" /> represents a number that is less than <see cref="F:System.Int32.MinValue" /> or greater than <see cref="F:System.Int32.MaxValue" />.</exception>
1309       <filterpriority>1</filterpriority>
1310     </member>
1311     <member name="M:System.Convert.ToInt32(System.UInt16)">
1312       <summary>Converts the value of the specified 16-bit unsigned integer to the equivalent 32-bit signed integer.</summary>
1313       <returns>A 32-bit signed integer that is equivalent to <paramref name="value" />.</returns>
1314       <param name="value">The 16-bit unsigned integer to convert. </param>
1315       <filterpriority>1</filterpriority>
1316     </member>
1317     <member name="M:System.Convert.ToInt32(System.UInt32)">
1318       <summary>Converts the value of the specified 32-bit unsigned integer to an equivalent 32-bit signed integer.</summary>
1319       <returns>A 32-bit signed integer that is equivalent to <paramref name="value" />.</returns>
1320       <param name="value">The 32-bit unsigned integer to convert. </param>
1321       <exception cref="T:System.OverflowException">
1322         <paramref name="value" /> is greater than <see cref="F:System.Int32.MaxValue" />. </exception>
1323       <filterpriority>1</filterpriority>
1324     </member>
1325     <member name="M:System.Convert.ToInt32(System.UInt64)">
1326       <summary>Converts the value of the specified 64-bit unsigned integer to an equivalent 32-bit signed integer.</summary>
1327       <returns>A 32-bit signed integer that is equivalent to <paramref name="value" />.</returns>
1328       <param name="value">The 64-bit unsigned integer to convert. </param>
1329       <exception cref="T:System.OverflowException">
1330         <paramref name="value" /> is greater than <see cref="F:System.Int32.MaxValue" />. </exception>
1331       <filterpriority>1</filterpriority>
1332     </member>
1333     <member name="M:System.Convert.ToInt64(System.Boolean)">
1334       <summary>Converts the specified Boolean value to the equivalent 64-bit signed integer.</summary>
1335       <returns>The number 1 if <paramref name="value" /> is true; otherwise, 0.</returns>
1336       <param name="value">The Boolean value to convert. </param>
1337       <filterpriority>1</filterpriority>
1338     </member>
1339     <member name="M:System.Convert.ToInt64(System.Byte)">
1340       <summary>Converts the value of the specified 8-bit unsigned integer to the equivalent 64-bit signed integer.</summary>
1341       <returns>A 64-bit signed integer that is equivalent to <paramref name="value" />.</returns>
1342       <param name="value">The 8-bit unsigned integer to convert. </param>
1343       <filterpriority>1</filterpriority>
1344     </member>
1345     <member name="M:System.Convert.ToInt64(System.Char)">
1346       <summary>Converts the value of the specified Unicode character to the equivalent 64-bit signed integer.</summary>
1347       <returns>A 64-bit signed integer that is equivalent to <paramref name="value" />.</returns>
1348       <param name="value">The Unicode character to convert. </param>
1349       <filterpriority>1</filterpriority>
1350     </member>
1351     <member name="M:System.Convert.ToInt64(System.Decimal)">
1352       <summary>Converts the value of the specified decimal number to an equivalent 64-bit signed integer.</summary>
1353       <returns>
1354         <paramref name="value" />, rounded to the nearest 64-bit signed integer. If <paramref name="value" /> is halfway between two whole numbers, the even number is returned; that is, 4.5 is converted to 4, and 5.5 is converted to 6.</returns>
1355       <param name="value">The decimal number to convert. </param>
1356       <exception cref="T:System.OverflowException">
1357         <paramref name="value" /> is greater than <see cref="F:System.Int64.MaxValue" /> or less than <see cref="F:System.Int64.MinValue" />. </exception>
1358       <filterpriority>1</filterpriority>
1359     </member>
1360     <member name="M:System.Convert.ToInt64(System.Double)">
1361       <summary>Converts the value of the specified double-precision floating-point number to an equivalent 64-bit signed integer.</summary>
1362       <returns>
1363         <paramref name="value" />, rounded to the nearest 64-bit signed integer. If <paramref name="value" /> is halfway between two whole numbers, the even number is returned; that is, 4.5 is converted to 4, and 5.5 is converted to 6.</returns>
1364       <param name="value">The double-precision floating-point number to convert. </param>
1365       <exception cref="T:System.OverflowException">
1366         <paramref name="value" /> is greater than <see cref="F:System.Int64.MaxValue" /> or less than <see cref="F:System.Int64.MinValue" />. </exception>
1367       <filterpriority>1</filterpriority>
1368     </member>
1369     <member name="M:System.Convert.ToInt64(System.Int16)">
1370       <summary>Converts the value of the specified 16-bit signed integer to an equivalent 64-bit signed integer.</summary>
1371       <returns>A 64-bit signed integer that is equivalent to <paramref name="value" />.</returns>
1372       <param name="value">The 16-bit signed integer to convert. </param>
1373       <filterpriority>1</filterpriority>
1374     </member>
1375     <member name="M:System.Convert.ToInt64(System.Int32)">
1376       <summary>Converts the value of the specified 32-bit signed integer to an equivalent 64-bit signed integer.</summary>
1377       <returns>A 64-bit signed integer that is equivalent to <paramref name="value" />.</returns>
1378       <param name="value">The 32-bit signed integer to convert. </param>
1379       <filterpriority>1</filterpriority>
1380     </member>
1381     <member name="M:System.Convert.ToInt64(System.Int64)">
1382       <summary>Returns the specified 64-bit signed integer; no actual conversion is performed.</summary>
1383       <returns>
1384         <paramref name="value" /> is returned unchanged.</returns>
1385       <param name="value">A 64-bit signed integer. </param>
1386       <filterpriority>1</filterpriority>
1387     </member>
1388     <member name="M:System.Convert.ToInt64(System.Object)">
1389       <summary>Converts the value of the specified object to a 64-bit signed integer.</summary>
1390       <returns>A 64-bit signed integer that is equivalent to <paramref name="value" />, or zero if <paramref name="value" /> is null.</returns>
1391       <param name="value">An object that implements the <see cref="T:System.IConvertible" /> interface, or null. </param>
1392       <exception cref="T:System.FormatException">
1393         <paramref name="value" /> is not in an appropriate format.</exception>
1394       <exception cref="T:System.InvalidCastException">
1395         <paramref name="value" /> does not implement the <see cref="T:System.IConvertible" /> interface. -or-The conversion is not supported.</exception>
1396       <exception cref="T:System.OverflowException">
1397         <paramref name="value" /> represents a number that is less than <see cref="F:System.Int64.MinValue" /> or greater than <see cref="F:System.Int64.MaxValue" />.</exception>
1398       <filterpriority>1</filterpriority>
1399     </member>
1400     <member name="M:System.Convert.ToInt64(System.Object,System.IFormatProvider)">
1401       <summary>Converts the value of the specified object to a 64-bit signed integer, using the specified culture-specific formatting information.</summary>
1402       <returns>A 64-bit signed integer that is equivalent to <paramref name="value" />, or zero if <paramref name="value" /> is null.</returns>
1403       <param name="value">An object that implements the <see cref="T:System.IConvertible" /> interface. </param>
1404       <param name="provider">An object that supplies culture-specific formatting information. </param>
1405       <exception cref="T:System.FormatException">
1406         <paramref name="value" /> is not in an appropriate format.</exception>
1407       <exception cref="T:System.InvalidCastException">
1408         <paramref name="value" /> does not implement the <see cref="T:System.IConvertible" /> interface.-or-The conversion is not supported. </exception>
1409       <exception cref="T:System.OverflowException">
1410         <paramref name="value" /> represents a number that is less than <see cref="F:System.Int64.MinValue" /> or greater than <see cref="F:System.Int64.MaxValue" />.</exception>
1411       <filterpriority>1</filterpriority>
1412     </member>
1413     <member name="M:System.Convert.ToInt64(System.SByte)">
1414       <summary>Converts the value of the specified 8-bit signed integer to the equivalent 64-bit signed integer.</summary>
1415       <returns>A 64-bit signed integer that is equivalent to <paramref name="value" />.</returns>
1416       <param name="value">The 8-bit signed integer to convert. </param>
1417       <filterpriority>1</filterpriority>
1418     </member>
1419     <member name="M:System.Convert.ToInt64(System.Single)">
1420       <summary>Converts the value of the specified single-precision floating-point number to an equivalent 64-bit signed integer.</summary>
1421       <returns>
1422         <paramref name="value" />, rounded to the nearest 64-bit signed integer. If <paramref name="value" /> is halfway between two whole numbers, the even number is returned; that is, 4.5 is converted to 4, and 5.5 is converted to 6.</returns>
1423       <param name="value">The single-precision floating-point number to convert. </param>
1424       <exception cref="T:System.OverflowException">
1425         <paramref name="value" /> is greater than <see cref="F:System.Int64.MaxValue" /> or less than <see cref="F:System.Int64.MinValue" />. </exception>
1426       <filterpriority>1</filterpriority>
1427     </member>
1428     <member name="M:System.Convert.ToInt64(System.String)">
1429       <summary>Converts the specified string representation of a number to an equivalent 64-bit signed integer.</summary>
1430       <returns>A 64-bit signed integer that is equivalent to the number in <paramref name="value" />, or 0 (zero) if <paramref name="value" /> is null.</returns>
1431       <param name="value">A string that contains a number to convert. </param>
1432       <exception cref="T:System.FormatException">
1433         <paramref name="value" /> does not consist of an optional sign followed by a sequence of digits (0 through 9). </exception>
1434       <exception cref="T:System.OverflowException">
1435         <paramref name="value" /> represents a number that is less than <see cref="F:System.Int64.MinValue" /> or greater than <see cref="F:System.Int64.MaxValue" />. </exception>
1436       <filterpriority>1</filterpriority>
1437     </member>
1438     <member name="M:System.Convert.ToInt64(System.String,System.IFormatProvider)">
1439       <summary>Converts the specified string representation of a number to an equivalent 64-bit signed integer, using the specified culture-specific formatting information.</summary>
1440       <returns>A 64-bit signed integer that is equivalent to the number in <paramref name="value" />, or 0 (zero) if <paramref name="value" /> is null.</returns>
1441       <param name="value">A string that contains the number to convert. </param>
1442       <param name="provider">An object that supplies culture-specific formatting information. </param>
1443       <exception cref="T:System.FormatException">
1444         <paramref name="value" /> does not consist of an optional sign followed by a sequence of digits (0 through 9). </exception>
1445       <exception cref="T:System.OverflowException">
1446         <paramref name="value" /> represents a number that is less than <see cref="F:System.Int64.MinValue" /> or greater than <see cref="F:System.Int64.MaxValue" />. </exception>
1447       <filterpriority>1</filterpriority>
1448     </member>
1449     <member name="M:System.Convert.ToInt64(System.String,System.Int32)">
1450       <summary>Converts the string representation of a number in a specified base to an equivalent 64-bit signed integer.</summary>
1451       <returns>A 64-bit signed integer that is equivalent to the number in <paramref name="value" />, or 0 (zero) if <paramref name="value" /> is null.</returns>
1452       <param name="value">A string that contains the number to convert. </param>
1453       <param name="fromBase">The base of the number in <paramref name="value" />, which must be 2, 8, 10, or 16. </param>
1454       <exception cref="T:System.ArgumentException">
1455         <paramref name="fromBase" /> is not 2, 8, 10, or 16. -or-<paramref name="value" />, which represents a non-base 10 signed number, is prefixed with a negative sign. </exception>
1456       <exception cref="T:System.ArgumentOutOfRangeException">
1457         <paramref name="value" /> is <see cref="F:System.String.Empty" />. </exception>
1458       <exception cref="T:System.FormatException">
1459         <paramref name="value" /> contains a character that is not a valid digit in the base specified by <paramref name="fromBase" />. The exception message indicates that there are no digits to convert if the first character in <paramref name="value" /> is invalid; otherwise, the message indicates that <paramref name="value" /> contains invalid trailing characters.</exception>
1460       <exception cref="T:System.OverflowException">
1461         <paramref name="value" />, which represents a non-base 10 signed number, is prefixed with a negative sign.-or-<paramref name="value" /> represents a number that is less than <see cref="F:System.Int64.MinValue" /> or greater than <see cref="F:System.Int64.MaxValue" />.</exception>
1462       <filterpriority>1</filterpriority>
1463     </member>
1464     <member name="M:System.Convert.ToInt64(System.UInt16)">
1465       <summary>Converts the value of the specified 16-bit unsigned integer to the equivalent 64-bit signed integer.</summary>
1466       <returns>A 64-bit signed integer that is equivalent to <paramref name="value" />.</returns>
1467       <param name="value">The 16-bit unsigned integer to convert. </param>
1468       <filterpriority>1</filterpriority>
1469     </member>
1470     <member name="M:System.Convert.ToInt64(System.UInt32)">
1471       <summary>Converts the value of the specified 32-bit unsigned integer to an equivalent 64-bit signed integer.</summary>
1472       <returns>A 64-bit signed integer that is equivalent to <paramref name="value" />.</returns>
1473       <param name="value">The 32-bit unsigned integer to convert. </param>
1474       <filterpriority>1</filterpriority>
1475     </member>
1476     <member name="M:System.Convert.ToInt64(System.UInt64)">
1477       <summary>Converts the value of the specified 64-bit unsigned integer to an equivalent 64-bit signed integer.</summary>
1478       <returns>A 64-bit signed integer that is equivalent to <paramref name="value" />.</returns>
1479       <param name="value">The 64-bit unsigned integer to convert. </param>
1480       <exception cref="T:System.OverflowException">
1481         <paramref name="value" /> is greater than <see cref="F:System.Int64.MaxValue" />. </exception>
1482       <filterpriority>1</filterpriority>
1483     </member>
1484     <member name="M:System.Convert.ToSByte(System.Boolean)">
1485       <summary>Converts the specified Boolean value to the equivalent 8-bit signed integer.</summary>
1486       <returns>The number 1 if <paramref name="value" /> is true; otherwise, 0.</returns>
1487       <param name="value">The Boolean value to convert. </param>
1488       <filterpriority>1</filterpriority>
1489     </member>
1490     <member name="M:System.Convert.ToSByte(System.Byte)">
1491       <summary>Converts the value of the specified 8-bit unsigned integer to the equivalent 8-bit signed integer.</summary>
1492       <returns>An 8-bit signed integer that is equivalent to <paramref name="value" />.</returns>
1493       <param name="value">The 8-bit unsigned integer to convert. </param>
1494       <exception cref="T:System.OverflowException">
1495         <paramref name="value" /> is greater than <see cref="F:System.SByte.MaxValue" />. </exception>
1496       <filterpriority>1</filterpriority>
1497     </member>
1498     <member name="M:System.Convert.ToSByte(System.Char)">
1499       <summary>Converts the value of the specified Unicode character to the equivalent 8-bit signed integer.</summary>
1500       <returns>An 8-bit signed integer that is equivalent to <paramref name="value" />.</returns>
1501       <param name="value">The Unicode character to convert. </param>
1502       <exception cref="T:System.OverflowException">
1503         <paramref name="value" /> is greater than <see cref="F:System.SByte.MaxValue" />. </exception>
1504       <filterpriority>1</filterpriority>
1505     </member>
1506     <member name="M:System.Convert.ToSByte(System.Decimal)">
1507       <summary>Converts the value of the specified decimal number to an equivalent 8-bit signed integer.</summary>
1508       <returns>
1509         <paramref name="value" />, rounded to the nearest 8-bit signed integer. If <paramref name="value" /> is halfway between two whole numbers, the even number is returned; that is, 4.5 is converted to 4, and 5.5 is converted to 6.</returns>
1510       <param name="value">The decimal number to convert. </param>
1511       <exception cref="T:System.OverflowException">
1512         <paramref name="value" /> is greater than <see cref="F:System.SByte.MaxValue" /> or less than <see cref="F:System.SByte.MinValue" />. </exception>
1513       <filterpriority>1</filterpriority>
1514     </member>
1515     <member name="M:System.Convert.ToSByte(System.Double)">
1516       <summary>Converts the value of the specified double-precision floating-point number to an equivalent 8-bit signed integer.</summary>
1517       <returns>
1518         <paramref name="value" />, rounded to the nearest 8-bit signed integer. If <paramref name="value" /> is halfway between two whole numbers, the even number is returned; that is, 4.5 is converted to 4, and 5.5 is converted to 6.</returns>
1519       <param name="value">The double-precision floating-point number to convert. </param>
1520       <exception cref="T:System.OverflowException">
1521         <paramref name="value" /> is greater than <see cref="F:System.SByte.MaxValue" /> or less than <see cref="F:System.SByte.MinValue" />. </exception>
1522       <filterpriority>1</filterpriority>
1523     </member>
1524     <member name="M:System.Convert.ToSByte(System.Int16)">
1525       <summary>Converts the value of the specified 16-bit signed integer to the equivalent 8-bit signed integer.</summary>
1526       <returns>An 8-bit signed integer that is equivalent to <paramref name="value" />.</returns>
1527       <param name="value">The 16-bit signed integer to convert. </param>
1528       <exception cref="T:System.OverflowException">
1529         <paramref name="value" /> is greater than <see cref="F:System.SByte.MaxValue" /> or less than <see cref="F:System.SByte.MinValue" />. </exception>
1530       <filterpriority>1</filterpriority>
1531     </member>
1532     <member name="M:System.Convert.ToSByte(System.Int32)">
1533       <summary>Converts the value of the specified 32-bit signed integer to an equivalent 8-bit signed integer.</summary>
1534       <returns>An 8-bit signed integer that is equivalent to <paramref name="value" />.</returns>
1535       <param name="value">The 32-bit signed integer to convert. </param>
1536       <exception cref="T:System.OverflowException">
1537         <paramref name="value" /> is greater than <see cref="F:System.SByte.MaxValue" /> or less than <see cref="F:System.SByte.MinValue" />. </exception>
1538       <filterpriority>1</filterpriority>
1539     </member>
1540     <member name="M:System.Convert.ToSByte(System.Int64)">
1541       <summary>Converts the value of the specified 64-bit signed integer to an equivalent 8-bit signed integer.</summary>
1542       <returns>An 8-bit signed integer that is equivalent to <paramref name="value" />.</returns>
1543       <param name="value">The 64-bit signed integer to convert. </param>
1544       <exception cref="T:System.OverflowException">
1545         <paramref name="value" /> is greater than <see cref="F:System.SByte.MaxValue" /> or less than <see cref="F:System.SByte.MinValue" />. </exception>
1546       <filterpriority>1</filterpriority>
1547     </member>
1548     <member name="M:System.Convert.ToSByte(System.Object)">
1549       <summary>Converts the value of the specified object to an 8-bit signed integer.</summary>
1550       <returns>An 8-bit signed integer that is equivalent to <paramref name="value" />, or zero if <paramref name="value" /> is null.</returns>
1551       <param name="value">An object that implements the <see cref="T:System.IConvertible" /> interface, or null. </param>
1552       <exception cref="T:System.FormatException">
1553         <paramref name="value" /> is not in an appropriate format. </exception>
1554       <exception cref="T:System.InvalidCastException">
1555         <paramref name="value" /> does not implement the <see cref="T:System.IConvertible" /> interface. -or-The conversion is not supported.</exception>
1556       <exception cref="T:System.OverflowException">
1557         <paramref name="value" /> represents a number that is less than <see cref="F:System.SByte.MinValue" /> or greater than <see cref="F:System.SByte.MaxValue" />.</exception>
1558       <filterpriority>1</filterpriority>
1559     </member>
1560     <member name="M:System.Convert.ToSByte(System.Object,System.IFormatProvider)">
1561       <summary>Converts the value of the specified object to an 8-bit signed integer, using the specified culture-specific formatting information.</summary>
1562       <returns>An 8-bit signed integer that is equivalent to <paramref name="value" />, or zero if <paramref name="value" /> is null.</returns>
1563       <param name="value">An object that implements the <see cref="T:System.IConvertible" /> interface. </param>
1564       <param name="provider">An object that supplies culture-specific formatting information. </param>
1565       <exception cref="T:System.FormatException">
1566         <paramref name="value" /> is not in an appropriate format. </exception>
1567       <exception cref="T:System.InvalidCastException">
1568         <paramref name="value" /> does not implement the <see cref="T:System.IConvertible" /> interface. -or-The conversion is not supported.</exception>
1569       <exception cref="T:System.OverflowException">
1570         <paramref name="value" /> represents a number that is less than <see cref="F:System.SByte.MinValue" /> or greater than <see cref="F:System.SByte.MaxValue" />.</exception>
1571       <filterpriority>1</filterpriority>
1572     </member>
1573     <member name="M:System.Convert.ToSByte(System.SByte)">
1574       <summary>Returns the specified 8-bit signed integer; no actual conversion is performed.</summary>
1575       <returns>
1576         <paramref name="value" /> is returned unchanged.</returns>
1577       <param name="value">The 8-bit signed integer to return. </param>
1578       <filterpriority>1</filterpriority>
1579     </member>
1580     <member name="M:System.Convert.ToSByte(System.Single)">
1581       <summary>Converts the value of the specified single-precision floating-point number to an equivalent 8-bit signed integer.</summary>
1582       <returns>
1583         <paramref name="value" />, rounded to the nearest 8-bit signed integer. If <paramref name="value" /> is halfway between two whole numbers, the even number is returned; that is, 4.5 is converted to 4, and 5.5 is converted to 6.</returns>
1584       <param name="value">The single-precision floating-point number to convert. </param>
1585       <exception cref="T:System.OverflowException">
1586         <paramref name="value" /> is greater than <see cref="F:System.SByte.MaxValue" /> or less than <see cref="F:System.SByte.MinValue" />. </exception>
1587       <filterpriority>1</filterpriority>
1588     </member>
1589     <member name="M:System.Convert.ToSByte(System.String)">
1590       <summary>Converts the specified string representation of a number to an equivalent 8-bit signed integer.</summary>
1591       <returns>An 8-bit signed integer that is equivalent to the number in <paramref name="value" />, or 0 (zero) if value is null.</returns>
1592       <param name="value">A string that contains the number to convert. </param>
1593       <exception cref="T:System.FormatException">
1594         <paramref name="value" /> does not consist of an optional sign followed by a sequence of digits (0 through 9). </exception>
1595       <exception cref="T:System.OverflowException">
1596         <paramref name="value" /> represents a number that is less than <see cref="F:System.SByte.MinValue" /> or greater than <see cref="F:System.SByte.MaxValue" />. </exception>
1597       <filterpriority>1</filterpriority>
1598     </member>
1599     <member name="M:System.Convert.ToSByte(System.String,System.IFormatProvider)">
1600       <summary>Converts the specified string representation of a number to an equivalent 8-bit signed integer, using the specified culture-specific formatting information.</summary>
1601       <returns>An 8-bit signed integer that is equivalent to <paramref name="value" />.</returns>
1602       <param name="value">A string that contains the number to convert. </param>
1603       <param name="provider">An object that supplies culture-specific formatting information. </param>
1604       <exception cref="T:System.ArgumentNullException">
1605         <paramref name="value" /> is null. </exception>
1606       <exception cref="T:System.FormatException">
1607         <paramref name="value" /> does not consist of an optional sign followed by a sequence of digits (0 through 9). </exception>
1608       <exception cref="T:System.OverflowException">
1609         <paramref name="value" /> represents a number that is less than <see cref="F:System.SByte.MinValue" /> or greater than <see cref="F:System.SByte.MaxValue" />. </exception>
1610       <filterpriority>1</filterpriority>
1611     </member>
1612     <member name="M:System.Convert.ToSByte(System.String,System.Int32)">
1613       <summary>Converts the string representation of a number in a specified base to an equivalent 8-bit signed integer.</summary>
1614       <returns>An 8-bit signed integer that is equivalent to the number in <paramref name="value" />, or 0 (zero) if <paramref name="value" /> is null.</returns>
1615       <param name="value">A string that contains the number to convert. </param>
1616       <param name="fromBase">The base of the number in <paramref name="value" />, which must be 2, 8, 10, or 16. </param>
1617       <exception cref="T:System.ArgumentException">
1618         <paramref name="fromBase" /> is not 2, 8, 10, or 16. -or-<paramref name="value" />, which represents a non-base 10 signed number, is prefixed with a negative sign. </exception>
1619       <exception cref="T:System.ArgumentOutOfRangeException">
1620         <paramref name="value" /> is <see cref="F:System.String.Empty" />. </exception>
1621       <exception cref="T:System.FormatException">
1622         <paramref name="value" /> contains a character that is not a valid digit in the base specified by <paramref name="fromBase" />. The exception message indicates that there are no digits to convert if the first character in <paramref name="value" /> is invalid; otherwise, the message indicates that <paramref name="value" /> contains invalid trailing characters.</exception>
1623       <exception cref="T:System.OverflowException">
1624         <paramref name="value" />, which represents a non-base 10 signed number, is prefixed with a negative sign.-or-<paramref name="value" /> represents a number that is less than <see cref="F:System.SByte.MinValue" /> or greater than <see cref="F:System.SByte.MaxValue" />.</exception>
1625       <filterpriority>1</filterpriority>
1626     </member>
1627     <member name="M:System.Convert.ToSByte(System.UInt16)">
1628       <summary>Converts the value of the specified 16-bit unsigned integer to the equivalent 8-bit signed integer.</summary>
1629       <returns>An 8-bit signed integer that is equivalent to <paramref name="value" />.</returns>
1630       <param name="value">The 16-bit unsigned integer to convert. </param>
1631       <exception cref="T:System.OverflowException">
1632         <paramref name="value" /> is greater than <see cref="F:System.SByte.MaxValue" />. </exception>
1633       <filterpriority>1</filterpriority>
1634     </member>
1635     <member name="M:System.Convert.ToSByte(System.UInt32)">
1636       <summary>Converts the value of the specified 32-bit unsigned integer to an equivalent 8-bit signed integer.</summary>
1637       <returns>An 8-bit signed integer that is equivalent to <paramref name="value" />.</returns>
1638       <param name="value">The 32-bit unsigned integer to convert. </param>
1639       <exception cref="T:System.OverflowException">
1640         <paramref name="value" /> is greater than <see cref="F:System.SByte.MaxValue" /> or less than <see cref="F:System.SByte.MinValue" />. </exception>
1641       <filterpriority>1</filterpriority>
1642     </member>
1643     <member name="M:System.Convert.ToSByte(System.UInt64)">
1644       <summary>Converts the value of the specified 64-bit unsigned integer to an equivalent 8-bit signed integer.</summary>
1645       <returns>An 8-bit signed integer that is equivalent to <paramref name="value" />.</returns>
1646       <param name="value">The 64-bit unsigned integer to convert. </param>
1647       <exception cref="T:System.OverflowException">
1648         <paramref name="value" /> is greater than <see cref="F:System.SByte.MaxValue" /> or less than <see cref="F:System.SByte.MinValue" />. </exception>
1649       <filterpriority>1</filterpriority>
1650     </member>
1651     <member name="M:System.Convert.ToSingle(System.Boolean)">
1652       <summary>Converts the specified Boolean value to the equivalent single-precision floating-point number.</summary>
1653       <returns>The number 1 if <paramref name="value" /> is true; otherwise, 0.</returns>
1654       <param name="value">The Boolean value to convert. </param>
1655       <filterpriority>1</filterpriority>
1656     </member>
1657     <member name="M:System.Convert.ToSingle(System.Byte)">
1658       <summary>Converts the value of the specified 8-bit unsigned integer to the equivalent single-precision floating-point number.</summary>
1659       <returns>A single-precision floating-point number that is equivalent to <paramref name="value" />.</returns>
1660       <param name="value">The 8-bit unsigned integer to convert. </param>
1661       <filterpriority>1</filterpriority>
1662     </member>
1663     <member name="M:System.Convert.ToSingle(System.Decimal)">
1664       <summary>Converts the value of the specified decimal number to an equivalent single-precision floating-point number.</summary>
1665       <returns>A single-precision floating-point number that is equivalent to <paramref name="value" />.<paramref name="value" /> is rounded using rounding to nearest. For example, when rounded to two decimals, the value 2.345 becomes 2.34 and the value 2.355 becomes 2.36.</returns>
1666       <param name="value">The decimal number to convert. </param>
1667       <filterpriority>1</filterpriority>
1668     </member>
1669     <member name="M:System.Convert.ToSingle(System.Double)">
1670       <summary>Converts the value of the specified double-precision floating-point number to an equivalent single-precision floating-point number.</summary>
1671       <returns>A single-precision floating-point number that is equivalent to <paramref name="value" />.<paramref name="value" /> is rounded using rounding to nearest. For example, when rounded to two decimals, the value 2.345 becomes 2.34 and the value 2.355 becomes 2.36.</returns>
1672       <param name="value">The double-precision floating-point number to convert. </param>
1673       <filterpriority>1</filterpriority>
1674     </member>
1675     <member name="M:System.Convert.ToSingle(System.Int16)">
1676       <summary>Converts the value of the specified 16-bit signed integer to an equivalent single-precision floating-point number.</summary>
1677       <returns>A single-precision floating-point number that is equivalent to <paramref name="value" />.</returns>
1678       <param name="value">The 16-bit signed integer to convert. </param>
1679       <filterpriority>1</filterpriority>
1680     </member>
1681     <member name="M:System.Convert.ToSingle(System.Int32)">
1682       <summary>Converts the value of the specified 32-bit signed integer to an equivalent single-precision floating-point number.</summary>
1683       <returns>A single-precision floating-point number that is equivalent to <paramref name="value" />.</returns>
1684       <param name="value">The 32-bit signed integer to convert. </param>
1685       <filterpriority>1</filterpriority>
1686     </member>
1687     <member name="M:System.Convert.ToSingle(System.Int64)">
1688       <summary>Converts the value of the specified 64-bit signed integer to an equivalent single-precision floating-point number.</summary>
1689       <returns>A single-precision floating-point number that is equivalent to <paramref name="value" />.</returns>
1690       <param name="value">The 64-bit signed integer to convert. </param>
1691       <filterpriority>1</filterpriority>
1692     </member>
1693     <member name="M:System.Convert.ToSingle(System.Object)">
1694       <summary>Converts the value of the specified object to a single-precision floating-point number.</summary>
1695       <returns>A single-precision floating-point number that is equivalent to <paramref name="value" />, or zero if <paramref name="value" /> is null.</returns>
1696       <param name="value">An object that implements the <see cref="T:System.IConvertible" /> interface, or null. </param>
1697       <exception cref="T:System.FormatException">
1698         <paramref name="value" /> is not in an appropriate format.</exception>
1699       <exception cref="T:System.InvalidCastException">
1700         <paramref name="value" /> does not implement the <see cref="T:System.IConvertible" /> interface. -or-The conversion is not supported.</exception>
1701       <exception cref="T:System.OverflowException">
1702         <paramref name="value" /> represents a number that is less than <see cref="F:System.Single.MinValue" /> or greater than <see cref="F:System.Single.MaxValue" />.</exception>
1703       <filterpriority>1</filterpriority>
1704     </member>
1705     <member name="M:System.Convert.ToSingle(System.Object,System.IFormatProvider)">
1706       <summary>Converts the value of the specified object to an single-precision floating-point number, using the specified culture-specific formatting information.</summary>
1707       <returns>A single-precision floating-point number that is equivalent to <paramref name="value" />, or zero if <paramref name="value" /> is null.</returns>
1708       <param name="value">An object that implements the <see cref="T:System.IConvertible" /> interface. </param>
1709       <param name="provider">An object that supplies culture-specific formatting information. </param>
1710       <exception cref="T:System.FormatException">
1711         <paramref name="value" /> is not in an appropriate format.</exception>
1712       <exception cref="T:System.InvalidCastException">
1713         <paramref name="value" /> does not implement <see cref="T:System.IConvertible" />. </exception>
1714       <exception cref="T:System.OverflowException">
1715         <paramref name="value" /> represents a number that is less than <see cref="F:System.Single.MinValue" /> or greater than <see cref="F:System.Single.MaxValue" />.</exception>
1716       <filterpriority>1</filterpriority>
1717     </member>
1718     <member name="M:System.Convert.ToSingle(System.SByte)">
1719       <summary>Converts the value of the specified 8-bit signed integer to the equivalent single-precision floating-point number.</summary>
1720       <returns>An 8-bit signed integer that is equivalent to <paramref name="value" />.</returns>
1721       <param name="value">The 8-bit signed integer to convert. </param>
1722       <filterpriority>1</filterpriority>
1723     </member>
1724     <member name="M:System.Convert.ToSingle(System.Single)">
1725       <summary>Returns the specified single-precision floating-point number; no actual conversion is performed.</summary>
1726       <returns>
1727         <paramref name="value" /> is returned unchanged.</returns>
1728       <param name="value">The single-precision floating-point number to return. </param>
1729       <filterpriority>1</filterpriority>
1730     </member>
1731     <member name="M:System.Convert.ToSingle(System.String)">
1732       <summary>Converts the specified string representation of a number to an equivalent single-precision floating-point number.</summary>
1733       <returns>A single-precision floating-point number that is equivalent to the number in <paramref name="value" />, or 0 (zero) if <paramref name="value" /> is null.</returns>
1734       <param name="value">A string that contains the number to convert. </param>
1735       <exception cref="T:System.FormatException">
1736         <paramref name="value" /> is not a number in a valid format.</exception>
1737       <exception cref="T:System.OverflowException">
1738         <paramref name="value" /> represents a number that is less than <see cref="F:System.Single.MinValue" /> or greater than <see cref="F:System.Single.MaxValue" />. </exception>
1739       <filterpriority>1</filterpriority>
1740     </member>
1741     <member name="M:System.Convert.ToSingle(System.String,System.IFormatProvider)">
1742       <summary>Converts the specified string representation of a number to an equivalent single-precision floating-point number, using the specified culture-specific formatting information.</summary>
1743       <returns>A single-precision floating-point number that is equivalent to the number in <paramref name="value" />, or 0 (zero) if <paramref name="value" /> is null.</returns>
1744       <param name="value">A string that contains the number to convert. </param>
1745       <param name="provider">An object that supplies culture-specific formatting information. </param>
1746       <exception cref="T:System.FormatException">
1747         <paramref name="value" /> is not a number in a valid format.</exception>
1748       <exception cref="T:System.OverflowException">
1749         <paramref name="value" /> represents a number that is less than <see cref="F:System.Single.MinValue" /> or greater than <see cref="F:System.Single.MaxValue" />. </exception>
1750       <filterpriority>1</filterpriority>
1751     </member>
1752     <member name="M:System.Convert.ToSingle(System.UInt16)">
1753       <summary>Converts the value of the specified 16-bit unsigned integer to the equivalent single-precision floating-point number.</summary>
1754       <returns>A single-precision floating-point number that is equivalent to <paramref name="value" />.</returns>
1755       <param name="value">The 16-bit unsigned integer to convert. </param>
1756       <filterpriority>1</filterpriority>
1757     </member>
1758     <member name="M:System.Convert.ToSingle(System.UInt32)">
1759       <summary>Converts the value of the specified 32-bit unsigned integer to an equivalent single-precision floating-point number.</summary>
1760       <returns>A single-precision floating-point number that is equivalent to <paramref name="value" />.</returns>
1761       <param name="value">The 32-bit unsigned integer to convert. </param>
1762       <filterpriority>1</filterpriority>
1763     </member>
1764     <member name="M:System.Convert.ToSingle(System.UInt64)">
1765       <summary>Converts the value of the specified 64-bit unsigned integer to an equivalent single-precision floating-point number.</summary>
1766       <returns>A single-precision floating-point number that is equivalent to <paramref name="value" />.</returns>
1767       <param name="value">The 64-bit unsigned integer to convert. </param>
1768       <filterpriority>1</filterpriority>
1769     </member>
1770     <member name="M:System.Convert.ToString(System.Boolean)">
1771       <summary>Converts the specified Boolean value to its equivalent string representation.</summary>
1772       <returns>The string representation of <paramref name="value" />.</returns>
1773       <param name="value">The Boolean value to convert. </param>
1774       <filterpriority>1</filterpriority>
1775     </member>
1776     <member name="M:System.Convert.ToString(System.Boolean,System.IFormatProvider)">
1777       <summary>Converts the specified Boolean value to its equivalent string representation.</summary>
1778       <returns>The string representation of <paramref name="value" />.</returns>
1779       <param name="value">The Boolean value to convert. </param>
1780       <param name="provider">An instance of an object. This parameter is ignored.</param>
1781       <filterpriority>1</filterpriority>
1782     </member>
1783     <member name="M:System.Convert.ToString(System.Byte)">
1784       <summary>Converts the value of the specified 8-bit unsigned integer to its equivalent string representation.</summary>
1785       <returns>The string representation of <paramref name="value" />.</returns>
1786       <param name="value">The 8-bit unsigned integer to convert. </param>
1787       <filterpriority>1</filterpriority>
1788     </member>
1789     <member name="M:System.Convert.ToString(System.Byte,System.IFormatProvider)">
1790       <summary>Converts the value of the specified 8-bit unsigned integer to its equivalent string representation, using the specified culture-specific formatting information.</summary>
1791       <returns>The string representation of <paramref name="value" />.</returns>
1792       <param name="value">The 8-bit unsigned integer to convert. </param>
1793       <param name="provider">An object that supplies culture-specific formatting information. </param>
1794       <filterpriority>1</filterpriority>
1795     </member>
1796     <member name="M:System.Convert.ToString(System.Byte,System.Int32)">
1797       <summary>Converts the value of an 8-bit unsigned integer to its equivalent string representation in a specified base.</summary>
1798       <returns>The string representation of <paramref name="value" /> in base <paramref name="toBase" />.</returns>
1799       <param name="value">The 8-bit unsigned integer to convert. </param>
1800       <param name="toBase">The base of the return value, which must be 2, 8, 10, or 16. </param>
1801       <exception cref="T:System.ArgumentException">
1802         <paramref name="toBase" /> is not 2, 8, 10, or 16. </exception>
1803       <filterpriority>1</filterpriority>
1804     </member>
1805     <member name="M:System.Convert.ToString(System.Char)">
1806       <summary>Converts the value of the specified Unicode character to its equivalent string representation.</summary>
1807       <returns>The string representation of <paramref name="value" />.</returns>
1808       <param name="value">The Unicode character to convert. </param>
1809       <filterpriority>1</filterpriority>
1810     </member>
1811     <member name="M:System.Convert.ToString(System.Char,System.IFormatProvider)">
1812       <summary>Converts the value of the specified Unicode character to its equivalent string representation, using the specified culture-specific formatting information.</summary>
1813       <returns>The string representation of <paramref name="value" />.</returns>
1814       <param name="value">The Unicode character to convert. </param>
1815       <param name="provider">An object that supplies culture-specific formatting information. This parameter is ignored. </param>
1816       <filterpriority>1</filterpriority>
1817     </member>
1818     <member name="M:System.Convert.ToString(System.DateTime)">
1819       <summary>Converts the value of the specified <see cref="T:System.DateTime" /> to its equivalent string representation.</summary>
1820       <returns>The string representation of <paramref name="value" />.</returns>
1821       <param name="value">The date and time value to convert. </param>
1822       <filterpriority>1</filterpriority>
1823     </member>
1824     <member name="M:System.Convert.ToString(System.DateTime,System.IFormatProvider)">
1825       <summary>Converts the value of the specified <see cref="T:System.DateTime" /> to its equivalent string representation, using the specified culture-specific formatting information.</summary>
1826       <returns>The string representation of <paramref name="value" />.</returns>
1827       <param name="value">The date and time value to convert. </param>
1828       <param name="provider">An object that supplies culture-specific formatting information. </param>
1829       <filterpriority>1</filterpriority>
1830     </member>
1831     <member name="M:System.Convert.ToString(System.Decimal)">
1832       <summary>Converts the value of the specified decimal number to its equivalent string representation.</summary>
1833       <returns>The string representation of <paramref name="value" />.</returns>
1834       <param name="value">The decimal number to convert. </param>
1835       <filterpriority>1</filterpriority>
1836     </member>
1837     <member name="M:System.Convert.ToString(System.Decimal,System.IFormatProvider)">
1838       <summary>Converts the value of the specified decimal number to its equivalent string representation, using the specified culture-specific formatting information.</summary>
1839       <returns>The string representation of <paramref name="value" />.</returns>
1840       <param name="value">The decimal number to convert. </param>
1841       <param name="provider">An object that supplies culture-specific formatting information. </param>
1842       <filterpriority>1</filterpriority>
1843     </member>
1844     <member name="M:System.Convert.ToString(System.Double)">
1845       <summary>Converts the value of the specified double-precision floating-point number to its equivalent string representation.</summary>
1846       <returns>The string representation of <paramref name="value" />.</returns>
1847       <param name="value">The double-precision floating-point number to convert. </param>
1848       <filterpriority>1</filterpriority>
1849     </member>
1850     <member name="M:System.Convert.ToString(System.Double,System.IFormatProvider)">
1851       <summary>Converts the value of the specified double-precision floating-point number to its equivalent string representation.</summary>
1852       <returns>The string representation of <paramref name="value" />.</returns>
1853       <param name="value">The double-precision floating-point number to convert. </param>
1854       <param name="provider">An object that supplies culture-specific formatting information. </param>
1855       <filterpriority>1</filterpriority>
1856     </member>
1857     <member name="M:System.Convert.ToString(System.Int16)">
1858       <summary>Converts the value of the specified 16-bit signed integer to its equivalent string representation.</summary>
1859       <returns>The string representation of <paramref name="value" />.</returns>
1860       <param name="value">The 16-bit signed integer to convert. </param>
1861       <filterpriority>1</filterpriority>
1862     </member>
1863     <member name="M:System.Convert.ToString(System.Int16,System.IFormatProvider)">
1864       <summary>Converts the value of the specified 16-bit signed integer to its equivalent string representation, using the specified culture-specific formatting information.</summary>
1865       <returns>The string representation of <paramref name="value" />.</returns>
1866       <param name="value">The 16-bit signed integer to convert. </param>
1867       <param name="provider">An object that supplies culture-specific formatting information. </param>
1868       <filterpriority>1</filterpriority>
1869     </member>
1870     <member name="M:System.Convert.ToString(System.Int16,System.Int32)">
1871       <summary>Converts the value of a 16-bit signed integer to its equivalent string representation in a specified base.</summary>
1872       <returns>The string representation of <paramref name="value" /> in base <paramref name="toBase" />.</returns>
1873       <param name="value">The 16-bit signed integer to convert. </param>
1874       <param name="toBase">The base of the return value, which must be 2, 8, 10, or 16. </param>
1875       <exception cref="T:System.ArgumentException">
1876         <paramref name="toBase" /> is not 2, 8, 10, or 16. </exception>
1877       <filterpriority>1</filterpriority>
1878     </member>
1879     <member name="M:System.Convert.ToString(System.Int32)">
1880       <summary>Converts the value of the specified 32-bit signed integer to its equivalent string representation.</summary>
1881       <returns>The string representation of <paramref name="value" />.</returns>
1882       <param name="value">The 32-bit signed integer to convert. </param>
1883       <filterpriority>1</filterpriority>
1884     </member>
1885     <member name="M:System.Convert.ToString(System.Int32,System.IFormatProvider)">
1886       <summary>Converts the value of the specified 32-bit signed integer to its equivalent string representation, using the specified culture-specific formatting information.</summary>
1887       <returns>The string representation of <paramref name="value" />.</returns>
1888       <param name="value">The 32-bit signed integer to convert. </param>
1889       <param name="provider">An object that supplies culture-specific formatting information. </param>
1890       <filterpriority>1</filterpriority>
1891     </member>
1892     <member name="M:System.Convert.ToString(System.Int32,System.Int32)">
1893       <summary>Converts the value of a 32-bit signed integer to its equivalent string representation in a specified base.</summary>
1894       <returns>The string representation of <paramref name="value" /> in base <paramref name="toBase" />.</returns>
1895       <param name="value">The 32-bit signed integer to convert. </param>
1896       <param name="toBase">The base of the return value, which must be 2, 8, 10, or 16. </param>
1897       <exception cref="T:System.ArgumentException">
1898         <paramref name="toBase" /> is not 2, 8, 10, or 16. </exception>
1899       <filterpriority>1</filterpriority>
1900     </member>
1901     <member name="M:System.Convert.ToString(System.Int64)">
1902       <summary>Converts the value of the specified 64-bit signed integer to its equivalent string representation.</summary>
1903       <returns>The string representation of <paramref name="value" />.</returns>
1904       <param name="value">The 64-bit signed integer to convert. </param>
1905       <filterpriority>1</filterpriority>
1906     </member>
1907     <member name="M:System.Convert.ToString(System.Int64,System.IFormatProvider)">
1908       <summary>Converts the value of the specified 64-bit signed integer to its equivalent string representation, using the specified culture-specific formatting information.</summary>
1909       <returns>The string representation of <paramref name="value" />.</returns>
1910       <param name="value">The 64-bit signed integer to convert. </param>
1911       <param name="provider">An object that supplies culture-specific formatting information. </param>
1912       <filterpriority>1</filterpriority>
1913     </member>
1914     <member name="M:System.Convert.ToString(System.Int64,System.Int32)">
1915       <summary>Converts the value of a 64-bit signed integer to its equivalent string representation in a specified base.</summary>
1916       <returns>The string representation of <paramref name="value" /> in base <paramref name="toBase" />.</returns>
1917       <param name="value">The 64-bit signed integer to convert. </param>
1918       <param name="toBase">The base of the return value, which must be 2, 8, 10, or 16. </param>
1919       <exception cref="T:System.ArgumentException">
1920         <paramref name="toBase" /> is not 2, 8, 10, or 16. </exception>
1921       <filterpriority>1</filterpriority>
1922     </member>
1923     <member name="M:System.Convert.ToString(System.Object)">
1924       <summary>Converts the value of the specified object to its equivalent string representation.</summary>
1925       <returns>The string representation of <paramref name="value" />, or <see cref="F:System.String.Empty" /> if <paramref name="value" /> is an object whose value is null. If <paramref name="value" /> is null, the method returns null.</returns>
1926       <param name="value">An object that supplies the value to convert, or null. </param>
1927       <filterpriority>1</filterpriority>
1928     </member>
1929     <member name="M:System.Convert.ToString(System.Object,System.IFormatProvider)">
1930       <summary>Converts the value of the specified object to its equivalent string representation using the specified culture-specific formatting information.</summary>
1931       <returns>The string representation of <paramref name="value" />, or <see cref="F:System.String.Empty" /> if <paramref name="value" /> is an object whose value is null. If <paramref name="value" /> is null, the method returns null. </returns>
1932       <param name="value">An object that supplies the value to convert, or null. </param>
1933       <param name="provider">An object that supplies culture-specific formatting information. </param>
1934       <filterpriority>1</filterpriority>
1935     </member>
1936     <member name="M:System.Convert.ToString(System.SByte)">
1937       <summary>Converts the value of the specified 8-bit signed integer to its equivalent string representation.</summary>
1938       <returns>The string representation of <paramref name="value" />.</returns>
1939       <param name="value">The 8-bit signed integer to convert. </param>
1940       <filterpriority>1</filterpriority>
1941     </member>
1942     <member name="M:System.Convert.ToString(System.SByte,System.IFormatProvider)">
1943       <summary>Converts the value of the specified 8-bit signed integer to its equivalent string representation, using the specified culture-specific formatting information.</summary>
1944       <returns>The string representation of <paramref name="value" />.</returns>
1945       <param name="value">The 8-bit signed integer to convert. </param>
1946       <param name="provider">An object that supplies culture-specific formatting information. </param>
1947       <filterpriority>1</filterpriority>
1948     </member>
1949     <member name="M:System.Convert.ToString(System.Single)">
1950       <summary>Converts the value of the specified single-precision floating-point number to its equivalent string representation.</summary>
1951       <returns>The string representation of <paramref name="value" />.</returns>
1952       <param name="value">The single-precision floating-point number to convert. </param>
1953       <filterpriority>1</filterpriority>
1954     </member>
1955     <member name="M:System.Convert.ToString(System.Single,System.IFormatProvider)">
1956       <summary>Converts the value of the specified single-precision floating-point number to its equivalent string representation, using the specified culture-specific formatting information.</summary>
1957       <returns>The string representation of <paramref name="value" />.</returns>
1958       <param name="value">The single-precision floating-point number to convert. </param>
1959       <param name="provider">An object that supplies culture-specific formatting information. </param>
1960       <filterpriority>1</filterpriority>
1961     </member>
1962     <member name="M:System.Convert.ToString(System.UInt16)">
1963       <summary>Converts the value of the specified 16-bit unsigned integer to its equivalent string representation.</summary>
1964       <returns>The string representation of <paramref name="value" />.</returns>
1965       <param name="value">The 16-bit unsigned integer to convert. </param>
1966       <filterpriority>1</filterpriority>
1967     </member>
1968     <member name="M:System.Convert.ToString(System.UInt16,System.IFormatProvider)">
1969       <summary>Converts the value of the specified 16-bit unsigned integer to its equivalent string representation, using the specified culture-specific formatting information.</summary>
1970       <returns>The string representation of <paramref name="value" />.</returns>
1971       <param name="value">The 16-bit unsigned integer to convert. </param>
1972       <param name="provider">An object that supplies culture-specific formatting information. </param>
1973       <filterpriority>1</filterpriority>
1974     </member>
1975     <member name="M:System.Convert.ToString(System.UInt32)">
1976       <summary>Converts the value of the specified 32-bit unsigned integer to its equivalent string representation.</summary>
1977       <returns>The string representation of <paramref name="value" />.</returns>
1978       <param name="value">The 32-bit unsigned integer to convert. </param>
1979       <filterpriority>1</filterpriority>
1980     </member>
1981     <member name="M:System.Convert.ToString(System.UInt32,System.IFormatProvider)">
1982       <summary>Converts the value of the specified 32-bit unsigned integer to its equivalent string representation, using the specified culture-specific formatting information.</summary>
1983       <returns>The string representation of <paramref name="value" />.</returns>
1984       <param name="value">The 32-bit unsigned integer to convert. </param>
1985       <param name="provider">An object that supplies culture-specific formatting information. </param>
1986       <filterpriority>1</filterpriority>
1987     </member>
1988     <member name="M:System.Convert.ToString(System.UInt64)">
1989       <summary>Converts the value of the specified 64-bit unsigned integer to its equivalent string representation.</summary>
1990       <returns>The string representation of <paramref name="value" />.</returns>
1991       <param name="value">The 64-bit unsigned integer to convert. </param>
1992       <filterpriority>1</filterpriority>
1993     </member>
1994     <member name="M:System.Convert.ToString(System.UInt64,System.IFormatProvider)">
1995       <summary>Converts the value of the specified 64-bit unsigned integer to its equivalent string representation, using the specified culture-specific formatting information.</summary>
1996       <returns>The string representation of <paramref name="value" />.</returns>
1997       <param name="value">The 64-bit unsigned integer to convert. </param>
1998       <param name="provider">An object that supplies culture-specific formatting information. </param>
1999       <filterpriority>1</filterpriority>
2000     </member>
2001     <member name="M:System.Convert.ToUInt16(System.Boolean)">
2002       <summary>Converts the specified Boolean value to the equivalent 16-bit unsigned integer.</summary>
2003       <returns>The number 1 if <paramref name="value" /> is true; otherwise, 0.</returns>
2004       <param name="value">The Boolean value to convert. </param>
2005       <filterpriority>1</filterpriority>
2006     </member>
2007     <member name="M:System.Convert.ToUInt16(System.Byte)">
2008       <summary>Converts the value of the specified 8-bit unsigned integer to the equivalent 16-bit unsigned integer.</summary>
2009       <returns>A 16-bit unsigned integer that is equivalent to <paramref name="value" />.</returns>
2010       <param name="value">The 8-bit unsigned integer to convert. </param>
2011       <filterpriority>1</filterpriority>
2012     </member>
2013     <member name="M:System.Convert.ToUInt16(System.Char)">
2014       <summary>Converts the value of the specified Unicode character to the equivalent 16-bit unsigned integer.</summary>
2015       <returns>The 16-bit unsigned integer equivalent to <paramref name="value" />.</returns>
2016       <param name="value">The Unicode character to convert. </param>
2017       <filterpriority>1</filterpriority>
2018     </member>
2019     <member name="M:System.Convert.ToUInt16(System.Decimal)">
2020       <summary>Converts the value of the specified decimal number to an equivalent 16-bit unsigned integer.</summary>
2021       <returns>
2022         <paramref name="value" />, rounded to the nearest 16-bit unsigned integer. If <paramref name="value" /> is halfway between two whole numbers, the even number is returned; that is, 4.5 is converted to 4, and 5.5 is converted to 6.</returns>
2023       <param name="value">The decimal number to convert. </param>
2024       <exception cref="T:System.OverflowException">
2025         <paramref name="value" /> is less than zero or greater than <see cref="F:System.UInt16.MaxValue" />. </exception>
2026       <filterpriority>1</filterpriority>
2027     </member>
2028     <member name="M:System.Convert.ToUInt16(System.Double)">
2029       <summary>Converts the value of the specified double-precision floating-point number to an equivalent 16-bit unsigned integer.</summary>
2030       <returns>
2031         <paramref name="value" />, rounded to the nearest 16-bit unsigned integer. If <paramref name="value" /> is halfway between two whole numbers, the even number is returned; that is, 4.5 is converted to 4, and 5.5 is converted to 6.</returns>
2032       <param name="value">The double-precision floating-point number to convert. </param>
2033       <exception cref="T:System.OverflowException">
2034         <paramref name="value" /> is less than zero or greater than <see cref="F:System.UInt16.MaxValue" />. </exception>
2035       <filterpriority>1</filterpriority>
2036     </member>
2037     <member name="M:System.Convert.ToUInt16(System.Int16)">
2038       <summary>Converts the value of the specified 16-bit signed integer to the equivalent 16-bit unsigned integer.</summary>
2039       <returns>A 16-bit unsigned integer that is equivalent to <paramref name="value" />.</returns>
2040       <param name="value">The 16-bit signed integer to convert. </param>
2041       <exception cref="T:System.OverflowException">
2042         <paramref name="value" /> is less than zero. </exception>
2043       <filterpriority>1</filterpriority>
2044     </member>
2045     <member name="M:System.Convert.ToUInt16(System.Int32)">
2046       <summary>Converts the value of the specified 32-bit signed integer to an equivalent 16-bit unsigned integer.</summary>
2047       <returns>A 16-bit unsigned integer that is equivalent to <paramref name="value" />.</returns>
2048       <param name="value">The 32-bit signed integer to convert. </param>
2049       <exception cref="T:System.OverflowException">
2050         <paramref name="value" /> is less than zero or greater than <see cref="F:System.UInt16.MaxValue" />. </exception>
2051       <filterpriority>1</filterpriority>
2052     </member>
2053     <member name="M:System.Convert.ToUInt16(System.Int64)">
2054       <summary>Converts the value of the specified 64-bit signed integer to an equivalent 16-bit unsigned integer.</summary>
2055       <returns>A 16-bit unsigned integer that is equivalent to <paramref name="value" />.</returns>
2056       <param name="value">The 64-bit signed integer to convert. </param>
2057       <exception cref="T:System.OverflowException">
2058         <paramref name="value" /> is less than zero or greater than <see cref="F:System.UInt16.MaxValue" />. </exception>
2059       <filterpriority>1</filterpriority>
2060     </member>
2061     <member name="M:System.Convert.ToUInt16(System.Object)">
2062       <summary>Converts the value of the specified object to a 16-bit unsigned integer.</summary>
2063       <returns>A 16-bit unsigned integer that is equivalent to <paramref name="value" />, or zero if <paramref name="value" /> is null.</returns>
2064       <param name="value">An object that implements the <see cref="T:System.IConvertible" /> interface, or null. </param>
2065       <exception cref="T:System.FormatException">
2066         <paramref name="value" /> is not in an appropriate format.</exception>
2067       <exception cref="T:System.InvalidCastException">
2068         <paramref name="value" /> does not implement the  <see cref="T:System.IConvertible" /> interface. -or-The conversion is not supported.</exception>
2069       <exception cref="T:System.OverflowException">
2070         <paramref name="value" /> represents a number that is less than <see cref="F:System.UInt16.MinValue" /> or greater than <see cref="F:System.UInt16.MaxValue" />.</exception>
2071       <filterpriority>1</filterpriority>
2072     </member>
2073     <member name="M:System.Convert.ToUInt16(System.Object,System.IFormatProvider)">
2074       <summary>Converts the value of the specified object to a 16-bit unsigned integer, using the specified culture-specific formatting information.</summary>
2075       <returns>A 16-bit unsigned integer that is equivalent to <paramref name="value" />, or zero if <paramref name="value" /> is null.</returns>
2076       <param name="value">An object that implements the <see cref="T:System.IConvertible" /> interface. </param>
2077       <param name="provider">An object that supplies culture-specific formatting information. </param>
2078       <exception cref="T:System.FormatException">
2079         <paramref name="value" /> is not in an appropriate format.</exception>
2080       <exception cref="T:System.InvalidCastException">
2081         <paramref name="value" /> does not implement the  <see cref="T:System.IConvertible" /> interface. -or-The conversion is not supported.</exception>
2082       <exception cref="T:System.OverflowException">
2083         <paramref name="value" /> represents a number that is less than <see cref="F:System.UInt16.MinValue" /> or greater than <see cref="F:System.UInt16.MaxValue" />.</exception>
2084       <filterpriority>1</filterpriority>
2085     </member>
2086     <member name="M:System.Convert.ToUInt16(System.SByte)">
2087       <summary>Converts the value of the specified 8-bit signed integer to the equivalent 16-bit unsigned integer.</summary>
2088       <returns>A 16-bit unsigned integer that is equivalent to <paramref name="value" />.</returns>
2089       <param name="value">The 8-bit signed integer to convert. </param>
2090       <exception cref="T:System.OverflowException">
2091         <paramref name="value" /> is less than zero. </exception>
2092       <filterpriority>1</filterpriority>
2093     </member>
2094     <member name="M:System.Convert.ToUInt16(System.Single)">
2095       <summary>Converts the value of the specified single-precision floating-point number to an equivalent 16-bit unsigned integer.</summary>
2096       <returns>
2097         <paramref name="value" />, rounded to the nearest 16-bit unsigned integer. If <paramref name="value" /> is halfway between two whole numbers, the even number is returned; that is, 4.5 is converted to 4, and 5.5 is converted to 6.</returns>
2098       <param name="value">The single-precision floating-point number to convert. </param>
2099       <exception cref="T:System.OverflowException">
2100         <paramref name="value" /> is less than zero or greater than <see cref="F:System.UInt16.MaxValue" />. </exception>
2101       <filterpriority>1</filterpriority>
2102     </member>
2103     <member name="M:System.Convert.ToUInt16(System.String)">
2104       <summary>Converts the specified string representation of a number to an equivalent 16-bit unsigned integer.</summary>
2105       <returns>A 16-bit unsigned integer that is equivalent to the number in <paramref name="value" />, or 0 (zero) if <paramref name="value" /> is null.</returns>
2106       <param name="value">A string that contains the number to convert. </param>
2107       <exception cref="T:System.FormatException">
2108         <paramref name="value" /> does not consist of an optional sign followed by a sequence of digits (0 through 9). </exception>
2109       <exception cref="T:System.OverflowException">
2110         <paramref name="value" /> represents a number that is less than <see cref="F:System.UInt16.MinValue" /> or greater than <see cref="F:System.UInt16.MaxValue" />. </exception>
2111       <filterpriority>1</filterpriority>
2112     </member>
2113     <member name="M:System.Convert.ToUInt16(System.String,System.IFormatProvider)">
2114       <summary>Converts the specified string representation of a number to an equivalent 16-bit unsigned integer, using the specified culture-specific formatting information.</summary>
2115       <returns>A 16-bit unsigned integer that is equivalent to the number in <paramref name="value" />, or 0 (zero) if <paramref name="value" /> is null.</returns>
2116       <param name="value">A string that contains the number to convert. </param>
2117       <param name="provider">An object that supplies culture-specific formatting information. </param>
2118       <exception cref="T:System.FormatException">
2119         <paramref name="value" /> does not consist of an optional sign followed by a sequence of digits (0 through 9). </exception>
2120       <exception cref="T:System.OverflowException">
2121         <paramref name="value" /> represents a number that is less than <see cref="F:System.UInt16.MinValue" /> or greater than <see cref="F:System.UInt16.MaxValue" />. </exception>
2122       <filterpriority>1</filterpriority>
2123     </member>
2124     <member name="M:System.Convert.ToUInt16(System.String,System.Int32)">
2125       <summary>Converts the string representation of a number in a specified base to an equivalent 16-bit unsigned integer.</summary>
2126       <returns>A 16-bit unsigned integer that is equivalent to the number in <paramref name="value" />, or 0 (zero) if <paramref name="value" /> is null.</returns>
2127       <param name="value">A string that contains the number to convert. </param>
2128       <param name="fromBase">The base of the number in <paramref name="value" />, which must be 2, 8, 10, or 16. </param>
2129       <exception cref="T:System.ArgumentException">
2130         <paramref name="fromBase" /> is not 2, 8, 10, or 16. -or-<paramref name="value" />, which represents a non-base 10 unsigned number, is prefixed with a negative sign. </exception>
2131       <exception cref="T:System.ArgumentOutOfRangeException">
2132         <paramref name="value" /> is <see cref="F:System.String.Empty" />. </exception>
2133       <exception cref="T:System.FormatException">
2134         <paramref name="value" /> contains a character that is not a valid digit in the base specified by <paramref name="fromBase" />. The exception message indicates that there are no digits to convert if the first character in <paramref name="value" /> is invalid; otherwise, the message indicates that <paramref name="value" /> contains invalid trailing characters.</exception>
2135       <exception cref="T:System.OverflowException">
2136         <paramref name="value" />, which represents a non-base 10 unsigned number, is prefixed with a negative sign.-or-<paramref name="value" /> represents a number that is less than <see cref="F:System.UInt16.MinValue" /> or greater than <see cref="F:System.UInt16.MaxValue" />.</exception>
2137       <filterpriority>1</filterpriority>
2138     </member>
2139     <member name="M:System.Convert.ToUInt16(System.UInt16)">
2140       <summary>Returns the specified 16-bit unsigned integer; no actual conversion is performed.</summary>
2141       <returns>
2142         <paramref name="value" /> is returned unchanged.</returns>
2143       <param name="value">The 16-bit unsigned integer to return. </param>
2144       <filterpriority>1</filterpriority>
2145     </member>
2146     <member name="M:System.Convert.ToUInt16(System.UInt32)">
2147       <summary>Converts the value of the specified 32-bit unsigned integer to an equivalent 16-bit unsigned integer.</summary>
2148       <returns>A 16-bit unsigned integer that is equivalent to <paramref name="value" />.</returns>
2149       <param name="value">The 32-bit unsigned integer to convert. </param>
2150       <exception cref="T:System.OverflowException">
2151         <paramref name="value" /> is greater than <see cref="F:System.UInt16.MaxValue" />. </exception>
2152       <filterpriority>1</filterpriority>
2153     </member>
2154     <member name="M:System.Convert.ToUInt16(System.UInt64)">
2155       <summary>Converts the value of the specified 64-bit unsigned integer to an equivalent 16-bit unsigned integer.</summary>
2156       <returns>A 16-bit unsigned integer that is equivalent to <paramref name="value" />.</returns>
2157       <param name="value">The 64-bit unsigned integer to convert. </param>
2158       <exception cref="T:System.OverflowException">
2159         <paramref name="value" /> is greater than <see cref="F:System.UInt16.MaxValue" />. </exception>
2160       <filterpriority>1</filterpriority>
2161     </member>
2162     <member name="M:System.Convert.ToUInt32(System.Boolean)">
2163       <summary>Converts the specified Boolean value to the equivalent 32-bit unsigned integer.</summary>
2164       <returns>The number 1 if <paramref name="value" /> is true; otherwise, 0.</returns>
2165       <param name="value">The Boolean value to convert. </param>
2166       <filterpriority>1</filterpriority>
2167     </member>
2168     <member name="M:System.Convert.ToUInt32(System.Byte)">
2169       <summary>Converts the value of the specified 8-bit unsigned integer to the equivalent 32-bit unsigned integer.</summary>
2170       <returns>A 32-bit unsigned integer that is equivalent to <paramref name="value" />.</returns>
2171       <param name="value">The 8-bit unsigned integer to convert. </param>
2172       <filterpriority>1</filterpriority>
2173     </member>
2174     <member name="M:System.Convert.ToUInt32(System.Char)">
2175       <summary>Converts the value of the specified Unicode character to the equivalent 32-bit unsigned integer.</summary>
2176       <returns>A 32-bit unsigned integer that is equivalent to <paramref name="value" />.</returns>
2177       <param name="value">The Unicode character to convert. </param>
2178       <filterpriority>1</filterpriority>
2179     </member>
2180     <member name="M:System.Convert.ToUInt32(System.Decimal)">
2181       <summary>Converts the value of the specified decimal number to an equivalent 32-bit unsigned integer.</summary>
2182       <returns>
2183         <paramref name="value" />, rounded to the nearest 32-bit unsigned integer. If <paramref name="value" /> is halfway between two whole numbers, the even number is returned; that is, 4.5 is converted to 4, and 5.5 is converted to 6.</returns>
2184       <param name="value">The decimal number to convert. </param>
2185       <exception cref="T:System.OverflowException">
2186         <paramref name="value" /> is less than zero or greater than <see cref="F:System.UInt32.MaxValue" />. </exception>
2187       <filterpriority>1</filterpriority>
2188     </member>
2189     <member name="M:System.Convert.ToUInt32(System.Double)">
2190       <summary>Converts the value of the specified double-precision floating-point number to an equivalent 32-bit unsigned integer.</summary>
2191       <returns>
2192         <paramref name="value" />, rounded to the nearest 32-bit unsigned integer. If <paramref name="value" /> is halfway between two whole numbers, the even number is returned; that is, 4.5 is converted to 4, and 5.5 is converted to 6.</returns>
2193       <param name="value">The double-precision floating-point number to convert. </param>
2194       <exception cref="T:System.OverflowException">
2195         <paramref name="value" /> is less than zero or greater than <see cref="F:System.UInt32.MaxValue" />. </exception>
2196       <filterpriority>1</filterpriority>
2197     </member>
2198     <member name="M:System.Convert.ToUInt32(System.Int16)">
2199       <summary>Converts the value of the specified 16-bit signed integer to the equivalent 32-bit unsigned integer.</summary>
2200       <returns>A 32-bit unsigned integer that is equivalent to <paramref name="value" />.</returns>
2201       <param name="value">The 16-bit signed integer to convert. </param>
2202       <exception cref="T:System.OverflowException">
2203         <paramref name="value" /> is less than zero. </exception>
2204       <filterpriority>1</filterpriority>
2205     </member>
2206     <member name="M:System.Convert.ToUInt32(System.Int32)">
2207       <summary>Converts the value of the specified 32-bit signed integer to an equivalent 32-bit unsigned integer.</summary>
2208       <returns>A 32-bit unsigned integer that is equivalent to <paramref name="value" />.</returns>
2209       <param name="value">The 32-bit signed integer to convert. </param>
2210       <exception cref="T:System.OverflowException">
2211         <paramref name="value" /> is less than zero. </exception>
2212       <filterpriority>1</filterpriority>
2213     </member>
2214     <member name="M:System.Convert.ToUInt32(System.Int64)">
2215       <summary>Converts the value of the specified 64-bit signed integer to an equivalent 32-bit unsigned integer.</summary>
2216       <returns>A 32-bit unsigned integer that is equivalent to <paramref name="value" />.</returns>
2217       <param name="value">The 64-bit signed integer to convert. </param>
2218       <exception cref="T:System.OverflowException">
2219         <paramref name="value" /> is less than zero or greater than <see cref="F:System.UInt32.MaxValue" />. </exception>
2220       <filterpriority>1</filterpriority>
2221     </member>
2222     <member name="M:System.Convert.ToUInt32(System.Object)">
2223       <summary>Converts the value of the specified object to a 32-bit unsigned integer.</summary>
2224       <returns>A 32-bit unsigned integer that is equivalent to <paramref name="value" />, or 0 (zero) if <paramref name="value" /> is null.</returns>
2225       <param name="value">An object that implements the <see cref="T:System.IConvertible" /> interface, or null. </param>
2226       <exception cref="T:System.FormatException">
2227         <paramref name="value" /> is not in an appropriate format.</exception>
2228       <exception cref="T:System.InvalidCastException">
2229         <paramref name="value" /> does not implement the <see cref="T:System.IConvertible" /> interface. -or-The conversion is not supported.</exception>
2230       <exception cref="T:System.OverflowException">
2231         <paramref name="value" /> represents a number that is less than <see cref="F:System.UInt32.MinValue" /> or greater than <see cref="F:System.UInt32.MaxValue" />.</exception>
2232       <filterpriority>1</filterpriority>
2233     </member>
2234     <member name="M:System.Convert.ToUInt32(System.Object,System.IFormatProvider)">
2235       <summary>Converts the value of the specified object to a 32-bit unsigned integer, using the specified culture-specific formatting information.</summary>
2236       <returns>A 32-bit unsigned integer that is equivalent to <paramref name="value" />, or zero if <paramref name="value" /> is null.</returns>
2237       <param name="value">An object that implements the <see cref="T:System.IConvertible" /> interface. </param>
2238       <param name="provider">An object that supplies culture-specific formatting information. </param>
2239       <exception cref="T:System.FormatException">
2240         <paramref name="value" /> is not in an appropriate format.</exception>
2241       <exception cref="T:System.InvalidCastException">
2242         <paramref name="value" /> does not implement the <see cref="T:System.IConvertible" /> interface. -or-The conversion is not supported.</exception>
2243       <exception cref="T:System.OverflowException">
2244         <paramref name="value" /> represents a number that is less than <see cref="F:System.UInt32.MinValue" /> or greater than <see cref="F:System.UInt32.MaxValue" />.</exception>
2245       <filterpriority>1</filterpriority>
2246     </member>
2247     <member name="M:System.Convert.ToUInt32(System.SByte)">
2248       <summary>Converts the value of the specified 8-bit signed integer to the equivalent 32-bit unsigned integer.</summary>
2249       <returns>A 32-bit unsigned integer that is equivalent to <paramref name="value" />.</returns>
2250       <param name="value">The 8-bit signed integer to convert. </param>
2251       <exception cref="T:System.OverflowException">
2252         <paramref name="value" /> is less than zero. </exception>
2253       <filterpriority>1</filterpriority>
2254     </member>
2255     <member name="M:System.Convert.ToUInt32(System.Single)">
2256       <summary>Converts the value of the specified single-precision floating-point number to an equivalent 32-bit unsigned integer.</summary>
2257       <returns>
2258         <paramref name="value" />, rounded to the nearest 32-bit unsigned integer. If <paramref name="value" /> is halfway between two whole numbers, the even number is returned; that is, 4.5 is converted to 4, and 5.5 is converted to 6.</returns>
2259       <param name="value">The single-precision floating-point number to convert. </param>
2260       <exception cref="T:System.OverflowException">
2261         <paramref name="value" /> is less than zero or greater than <see cref="F:System.UInt32.MaxValue" />. </exception>
2262       <filterpriority>1</filterpriority>
2263     </member>
2264     <member name="M:System.Convert.ToUInt32(System.String)">
2265       <summary>Converts the specified string representation of a number to an equivalent 32-bit unsigned integer.</summary>
2266       <returns>A 32-bit unsigned integer that is equivalent to the number in <paramref name="value" />, or 0 (zero) if <paramref name="value" /> is null.</returns>
2267       <param name="value">A string that contains the number to convert. </param>
2268       <exception cref="T:System.FormatException">
2269         <paramref name="value" /> does not consist of an optional sign followed by a sequence of digits (0 through 9). </exception>
2270       <exception cref="T:System.OverflowException">
2271         <paramref name="value" /> represents a number that is less than <see cref="F:System.UInt32.MinValue" /> or greater than <see cref="F:System.UInt32.MaxValue" />. </exception>
2272       <filterpriority>1</filterpriority>
2273     </member>
2274     <member name="M:System.Convert.ToUInt32(System.String,System.IFormatProvider)">
2275       <summary>Converts the specified string representation of a number to an equivalent 32-bit unsigned integer, using the specified culture-specific formatting information.</summary>
2276       <returns>A 32-bit unsigned integer that is equivalent to the number in <paramref name="value" />, or 0 (zero) if <paramref name="value" /> is null.</returns>
2277       <param name="value">A string that contains the number to convert. </param>
2278       <param name="provider">An object that supplies culture-specific formatting information. </param>
2279       <exception cref="T:System.FormatException">
2280         <paramref name="value" /> does not consist of an optional sign followed by a sequence of digits (0 through 9). </exception>
2281       <exception cref="T:System.OverflowException">
2282         <paramref name="value" /> represents a number that is less than <see cref="F:System.UInt32.MinValue" /> or greater than <see cref="F:System.UInt32.MaxValue" />. </exception>
2283       <filterpriority>1</filterpriority>
2284     </member>
2285     <member name="M:System.Convert.ToUInt32(System.String,System.Int32)">
2286       <summary>Converts the string representation of a number in a specified base to an equivalent 32-bit unsigned integer.</summary>
2287       <returns>A 32-bit unsigned integer that is equivalent to the number in <paramref name="value" />, or 0 (zero) if <paramref name="value" /> is null.</returns>
2288       <param name="value">A string that contains the number to convert. </param>
2289       <param name="fromBase">The base of the number in <paramref name="value" />, which must be 2, 8, 10, or 16. </param>
2290       <exception cref="T:System.ArgumentException">
2291         <paramref name="fromBase" /> is not 2, 8, 10, or 16. -or-<paramref name="value" />, which represents a non-base 10 unsigned number, is prefixed with a negative sign. </exception>
2292       <exception cref="T:System.ArgumentOutOfRangeException">
2293         <paramref name="value" /> is <see cref="F:System.String.Empty" />. </exception>
2294       <exception cref="T:System.FormatException">
2295         <paramref name="value" /> contains a character that is not a valid digit in the base specified by <paramref name="fromBase" />. The exception message indicates that there are no digits to convert if the first character in <paramref name="value" /> is invalid; otherwise, the message indicates that <paramref name="value" /> contains invalid trailing characters.</exception>
2296       <exception cref="T:System.OverflowException">
2297         <paramref name="value" />, which represents a non-base 10 unsigned number, is prefixed with a negative sign.-or-<paramref name="value" /> represents a number that is less than <see cref="F:System.UInt32.MinValue" /> or greater than <see cref="F:System.UInt32.MaxValue" />.</exception>
2298       <filterpriority>1</filterpriority>
2299     </member>
2300     <member name="M:System.Convert.ToUInt32(System.UInt16)">
2301       <summary>Converts the value of the specified 16-bit unsigned integer to the equivalent 32-bit unsigned integer.</summary>
2302       <returns>A 32-bit unsigned integer that is equivalent to <paramref name="value" />.</returns>
2303       <param name="value">The 16-bit unsigned integer to convert. </param>
2304       <filterpriority>1</filterpriority>
2305     </member>
2306     <member name="M:System.Convert.ToUInt32(System.UInt32)">
2307       <summary>Returns the specified 32-bit unsigned integer; no actual conversion is performed.</summary>
2308       <returns>
2309         <paramref name="value" /> is returned unchanged.</returns>
2310       <param name="value">The 32-bit unsigned integer to return. </param>
2311       <filterpriority>1</filterpriority>
2312     </member>
2313     <member name="M:System.Convert.ToUInt32(System.UInt64)">
2314       <summary>Converts the value of the specified 64-bit unsigned integer to an equivalent 32-bit unsigned integer.</summary>
2315       <returns>A 32-bit unsigned integer that is equivalent to <paramref name="value" />.</returns>
2316       <param name="value">The 64-bit unsigned integer to convert. </param>
2317       <exception cref="T:System.OverflowException">
2318         <paramref name="value" /> is greater than <see cref="F:System.UInt32.MaxValue" />. </exception>
2319       <filterpriority>1</filterpriority>
2320     </member>
2321     <member name="M:System.Convert.ToUInt64(System.Boolean)">
2322       <summary>Converts the specified Boolean value to the equivalent 64-bit unsigned integer.</summary>
2323       <returns>The number 1 if <paramref name="value" /> is true; otherwise, 0.</returns>
2324       <param name="value">The Boolean value to convert. </param>
2325       <filterpriority>1</filterpriority>
2326     </member>
2327     <member name="M:System.Convert.ToUInt64(System.Byte)">
2328       <summary>Converts the value of the specified 8-bit unsigned integer to the equivalent 64-bit unsigned integer.</summary>
2329       <returns>A 64-bit signed integer that is equivalent to <paramref name="value" />.</returns>
2330       <param name="value">The 8-bit unsigned integer to convert. </param>
2331       <filterpriority>1</filterpriority>
2332     </member>
2333     <member name="M:System.Convert.ToUInt64(System.Char)">
2334       <summary>Converts the value of the specified Unicode character to the equivalent 64-bit unsigned integer.</summary>
2335       <returns>A 64-bit unsigned integer that is equivalent to <paramref name="value" />.</returns>
2336       <param name="value">The Unicode character to convert. </param>
2337       <filterpriority>1</filterpriority>
2338     </member>
2339     <member name="M:System.Convert.ToUInt64(System.Decimal)">
2340       <summary>Converts the value of the specified decimal number to an equivalent 64-bit unsigned integer.</summary>
2341       <returns>
2342         <paramref name="value" />, rounded to the nearest 64-bit unsigned integer. If <paramref name="value" /> is halfway between two whole numbers, the even number is returned; that is, 4.5 is converted to 4, and 5.5 is converted to 6.</returns>
2343       <param name="value">The decimal number to convert. </param>
2344       <exception cref="T:System.OverflowException">
2345         <paramref name="value" /> is less than zero or greater than <see cref="F:System.UInt64.MaxValue" />. </exception>
2346       <filterpriority>1</filterpriority>
2347     </member>
2348     <member name="M:System.Convert.ToUInt64(System.Double)">
2349       <summary>Converts the value of the specified double-precision floating-point number to an equivalent 64-bit unsigned integer.</summary>
2350       <returns>
2351         <paramref name="value" />, rounded to the nearest 64-bit unsigned integer. If <paramref name="value" /> is halfway between two whole numbers, the even number is returned; that is, 4.5 is converted to 4, and 5.5 is converted to 6.</returns>
2352       <param name="value">The double-precision floating-point number to convert. </param>
2353       <exception cref="T:System.OverflowException">
2354         <paramref name="value" /> is less than zero or greater than <see cref="F:System.UInt64.MaxValue" />. </exception>
2355       <filterpriority>1</filterpriority>
2356     </member>
2357     <member name="M:System.Convert.ToUInt64(System.Int16)">
2358       <summary>Converts the value of the specified 16-bit signed integer to the equivalent 64-bit unsigned integer.</summary>
2359       <returns>A 64-bit unsigned integer that is equivalent to <paramref name="value" />.</returns>
2360       <param name="value">The 16-bit signed integer to convert. </param>
2361       <exception cref="T:System.OverflowException">
2362         <paramref name="value" /> is less than zero. </exception>
2363       <filterpriority>1</filterpriority>
2364     </member>
2365     <member name="M:System.Convert.ToUInt64(System.Int32)">
2366       <summary>Converts the value of the specified 32-bit signed integer to an equivalent 64-bit unsigned integer.</summary>
2367       <returns>A 64-bit unsigned integer that is equivalent to <paramref name="value" />.</returns>
2368       <param name="value">The 32-bit signed integer to convert. </param>
2369       <exception cref="T:System.OverflowException">
2370         <paramref name="value" /> is less than zero. </exception>
2371       <filterpriority>1</filterpriority>
2372     </member>
2373     <member name="M:System.Convert.ToUInt64(System.Int64)">
2374       <summary>Converts the value of the specified 64-bit signed integer to an equivalent 64-bit unsigned integer.</summary>
2375       <returns>A 64-bit unsigned integer that is equivalent to <paramref name="value" />.</returns>
2376       <param name="value">The 64-bit signed integer to convert. </param>
2377       <exception cref="T:System.OverflowException">
2378         <paramref name="value" /> is less than zero. </exception>
2379       <filterpriority>1</filterpriority>
2380     </member>
2381     <member name="M:System.Convert.ToUInt64(System.Object)">
2382       <summary>Converts the value of the specified object to a 64-bit unsigned integer.</summary>
2383       <returns>A 64-bit unsigned integer that is equivalent to <paramref name="value" />, or zero if <paramref name="value" /> is null.</returns>
2384       <param name="value">An object that implements the <see cref="T:System.IConvertible" /> interface, or null. </param>
2385       <exception cref="T:System.FormatException">
2386         <paramref name="value" /> is not in an appropriate format.</exception>
2387       <exception cref="T:System.InvalidCastException">
2388         <paramref name="value" /> does not implement the <see cref="T:System.IConvertible" /> interface. -or-The conversion is not supported.</exception>
2389       <exception cref="T:System.OverflowException">
2390         <paramref name="value" /> represents a number that is less than <see cref="F:System.UInt64.MinValue" /> or greater than <see cref="F:System.UInt64.MaxValue" />.</exception>
2391       <filterpriority>1</filterpriority>
2392     </member>
2393     <member name="M:System.Convert.ToUInt64(System.Object,System.IFormatProvider)">
2394       <summary>Converts the value of the specified object to a 64-bit unsigned integer, using the specified culture-specific formatting information.</summary>
2395       <returns>A 64-bit unsigned integer that is equivalent to <paramref name="value" />, or zero if <paramref name="value" /> is null.</returns>
2396       <param name="value">An object that implements the <see cref="T:System.IConvertible" /> interface. </param>
2397       <param name="provider">An object that supplies culture-specific formatting information. </param>
2398       <exception cref="T:System.FormatException">
2399         <paramref name="value" /> is not in an appropriate format.</exception>
2400       <exception cref="T:System.InvalidCastException">
2401         <paramref name="value" /> does not implement the <see cref="T:System.IConvertible" /> interface. -or-The conversion is not supported.</exception>
2402       <exception cref="T:System.OverflowException">
2403         <paramref name="value" /> represents a number that is less than <see cref="F:System.UInt64.MinValue" /> or greater than <see cref="F:System.UInt64.MaxValue" />.</exception>
2404       <filterpriority>1</filterpriority>
2405     </member>
2406     <member name="M:System.Convert.ToUInt64(System.SByte)">
2407       <summary>Converts the value of the specified 8-bit signed integer to the equivalent 64-bit unsigned integer.</summary>
2408       <returns>A 64-bit unsigned integer that is equivalent to <paramref name="value" />.</returns>
2409       <param name="value">The 8-bit signed integer to convert. </param>
2410       <exception cref="T:System.OverflowException">
2411         <paramref name="value" /> is less than zero. </exception>
2412       <filterpriority>1</filterpriority>
2413     </member>
2414     <member name="M:System.Convert.ToUInt64(System.Single)">
2415       <summary>Converts the value of the specified single-precision floating-point number to an equivalent 64-bit unsigned integer.</summary>
2416       <returns>
2417         <paramref name="value" />, rounded to the nearest 64-bit unsigned integer. If <paramref name="value" /> is halfway between two whole numbers, the even number is returned; that is, 4.5 is converted to 4, and 5.5 is converted to 6.</returns>
2418       <param name="value">The single-precision floating-point number to convert. </param>
2419       <exception cref="T:System.OverflowException">
2420         <paramref name="value" /> is less than zero or greater than <see cref="F:System.UInt64.MaxValue" />. </exception>
2421       <filterpriority>1</filterpriority>
2422     </member>
2423     <member name="M:System.Convert.ToUInt64(System.String)">
2424       <summary>Converts the specified string representation of a number to an equivalent 64-bit unsigned integer.</summary>
2425       <returns>A 64-bit signed integer that is equivalent to the number in <paramref name="value" />, or 0 (zero) if <paramref name="value" /> is null.</returns>
2426       <param name="value">A string that contains the number to convert. </param>
2427       <exception cref="T:System.FormatException">
2428         <paramref name="value" /> does not consist of an optional sign followed by a sequence of digits (0 through 9). </exception>
2429       <exception cref="T:System.OverflowException">
2430         <paramref name="value" /> represents a number that is less than <see cref="F:System.UInt64.MinValue" /> or greater than <see cref="F:System.UInt64.MaxValue" />. </exception>
2431       <filterpriority>1</filterpriority>
2432     </member>
2433     <member name="M:System.Convert.ToUInt64(System.String,System.IFormatProvider)">
2434       <summary>Converts the specified string representation of a number to an equivalent 64-bit unsigned integer, using the specified culture-specific formatting information.</summary>
2435       <returns>A 64-bit unsigned integer that is equivalent to the number in <paramref name="value" />, or 0 (zero) if <paramref name="value" /> is null.</returns>
2436       <param name="value">A string that contains the number to convert. </param>
2437       <param name="provider">An object that supplies culture-specific formatting information. </param>
2438       <exception cref="T:System.FormatException">
2439         <paramref name="value" /> does not consist of an optional sign followed by a sequence of digits (0 through 9). </exception>
2440       <exception cref="T:System.OverflowException">
2441         <paramref name="value" /> represents a number that is less than <see cref="F:System.UInt64.MinValue" /> or greater than <see cref="F:System.UInt64.MaxValue" />. </exception>
2442       <filterpriority>1</filterpriority>
2443     </member>
2444     <member name="M:System.Convert.ToUInt64(System.String,System.Int32)">
2445       <summary>Converts the string representation of a number in a specified base to an equivalent 64-bit unsigned integer.</summary>
2446       <returns>A 64-bit unsigned integer that is equivalent to the number in <paramref name="value" />, or 0 (zero) if <paramref name="value" /> is null.</returns>
2447       <param name="value">A string that contains the number to convert. </param>
2448       <param name="fromBase">The base of the number in <paramref name="value" />, which must be 2, 8, 10, or 16. </param>
2449       <exception cref="T:System.ArgumentException">
2450         <paramref name="fromBase" /> is not 2, 8, 10, or 16. -or-<paramref name="value" />, which represents a non-base 10 unsigned number, is prefixed with a negative sign. </exception>
2451       <exception cref="T:System.ArgumentOutOfRangeException">
2452         <paramref name="value" /> is <see cref="F:System.String.Empty" />. </exception>
2453       <exception cref="T:System.FormatException">
2454         <paramref name="value" /> contains a character that is not a valid digit in the base specified by <paramref name="fromBase" />. The exception message indicates that there are no digits to convert if the first character in <paramref name="value" /> is invalid; otherwise, the message indicates that <paramref name="value" /> contains invalid trailing characters.</exception>
2455       <exception cref="T:System.OverflowException">
2456         <paramref name="value" />, which represents a non-base 10 unsigned number, is prefixed with a negative sign.-or-<paramref name="value" /> represents a number that is less than <see cref="F:System.UInt64.MinValue" /> or greater than <see cref="F:System.UInt64.MaxValue" />.</exception>
2457       <filterpriority>1</filterpriority>
2458     </member>
2459     <member name="M:System.Convert.ToUInt64(System.UInt16)">
2460       <summary>Converts the value of the specified 16-bit unsigned integer to the equivalent 64-bit unsigned integer.</summary>
2461       <returns>A 64-bit unsigned integer that is equivalent to <paramref name="value" />.</returns>
2462       <param name="value">The 16-bit unsigned integer to convert. </param>
2463       <filterpriority>1</filterpriority>
2464     </member>
2465     <member name="M:System.Convert.ToUInt64(System.UInt32)">
2466       <summary>Converts the value of the specified 32-bit unsigned integer to an equivalent 64-bit unsigned integer.</summary>
2467       <returns>A 64-bit unsigned integer that is equivalent to <paramref name="value" />.</returns>
2468       <param name="value">The 32-bit unsigned integer to convert. </param>
2469       <filterpriority>1</filterpriority>
2470     </member>
2471     <member name="M:System.Convert.ToUInt64(System.UInt64)">
2472       <summary>Returns the specified 64-bit unsigned integer; no actual conversion is performed.</summary>
2473       <returns>
2474         <paramref name="value" /> is returned unchanged.</returns>
2475       <param name="value">The 64-bit unsigned integer to return. </param>
2476       <filterpriority>1</filterpriority>
2477     </member>
2478     <member name="T:System.Environment">
2479       <summary>Provides information about, and means to manipulate, the current environment and platform. This class cannot be inherited.</summary>
2480       <filterpriority>1</filterpriority>
2481     </member>
2482     <member name="P:System.Environment.CurrentManagedThreadId">
2483       <summary>Gets a unique identifier for the current managed thread.</summary>
2484       <returns>An integer that represents a unique identifier for this managed thread.</returns>
2485     </member>
2486     <member name="M:System.Environment.ExpandEnvironmentVariables(System.String)">
2487       <summary>Replaces the name of each environment variable embedded in the specified string with the string equivalent of the value of the variable, then returns the resulting string.</summary>
2488       <returns>A string with each environment variable replaced by its value.</returns>
2489       <param name="name">A string containing the names of zero or more environment variables. Each environment variable is quoted with the percent sign character (%).</param>
2490       <exception cref="T:System.ArgumentNullException">
2491         <paramref name="name" /> is null.</exception>
2492       <filterpriority>1</filterpriority>
2493       <PermissionSet>
2494         <IPermission class="System.Security.Permissions.EnvironmentPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" />
2495       </PermissionSet>
2496     </member>
2497     <member name="M:System.Environment.FailFast(System.String)">
2498       <summary>Immediately terminates a process after writing a message to the Windows Application event log, and then includes the message in error reporting to Microsoft.</summary>
2499       <param name="message">A message that explains why the process was terminated, or null if no explanation is provided.</param>
2500     </member>
2501     <member name="M:System.Environment.FailFast(System.String,System.Exception)">
2502       <summary>Immediately terminates a process after writing a message to the Windows Application event log, and then includes the message and exception information in error reporting to Microsoft.</summary>
2503       <param name="message">A message that explains why the process was terminated, or null if no explanation is provided.</param>
2504       <param name="exception">An exception that represents the error that caused the termination. This is typically the exception in a catch block.</param>
2505     </member>
2506     <member name="M:System.Environment.GetEnvironmentVariable(System.String)">
2507       <summary>Retrieves the value of an environment variable from the current process. </summary>
2508       <returns>The value of the environment variable specified by <paramref name="variable" />, or null if the environment variable is not found.</returns>
2509       <param name="variable">The name of the environment variable.</param>
2510       <exception cref="T:System.ArgumentNullException">
2511         <paramref name="variable" /> is null.</exception>
2512       <exception cref="T:System.Security.SecurityException">The caller does not have the required permission to perform this operation. </exception>
2513       <filterpriority>1</filterpriority>
2514       <PermissionSet>
2515         <IPermission class="System.Security.Permissions.EnvironmentPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" />
2516       </PermissionSet>
2517     </member>
2518     <member name="M:System.Environment.GetEnvironmentVariables">
2519       <summary>Retrieves all environment variable names and their values from the current process.</summary>
2520       <returns>A dictionary that contains all environment variable names and their values; otherwise, an empty dictionary if no environment variables are found.</returns>
2521       <exception cref="T:System.Security.SecurityException">The caller does not have the required permission to perform this operation.</exception>
2522       <exception cref="T:System.OutOfMemoryException">The buffer is out of memory.</exception>
2523       <filterpriority>1</filterpriority>
2524       <PermissionSet>
2525         <IPermission class="System.Security.Permissions.EnvironmentPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" />
2526       </PermissionSet>
2527     </member>
2528     <member name="P:System.Environment.HasShutdownStarted">
2529       <summary>Gets a value that indicates whether the current application domain is being unloaded or the common language runtime (CLR) is shutting down. </summary>
2530       <returns>true if the current application domain is being unloaded or the CLR is shutting down; otherwise, false.</returns>
2531       <filterpriority>1</filterpriority>
2532     </member>
2533     <member name="P:System.Environment.NewLine">
2534       <summary>Gets the newline string defined for this environment.</summary>
2535       <returns>A string containing "\r\n" for non-Unix platforms, or a string containing "\n" for Unix platforms.</returns>
2536       <filterpriority>1</filterpriority>
2537     </member>
2538     <member name="P:System.Environment.ProcessorCount">
2539       <summary>Gets the number of processors on the current machine.</summary>
2540       <returns>The 32-bit signed integer that specifies the number of processors on the current machine. There is no default. If the current machine contains multiple processor groups, this property returns the number of logical processors that are available for use by the common language runtime (CLR).</returns>
2541       <filterpriority>1</filterpriority>
2542       <PermissionSet>
2543         <IPermission class="System.Security.Permissions.EnvironmentPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Read="NUMBER_OF_PROCESSORS" />
2544       </PermissionSet>
2545     </member>
2546     <member name="M:System.Environment.SetEnvironmentVariable(System.String,System.String)">
2547       <summary>Creates, modifies, or deletes an environment variable stored in the current process.</summary>
2548       <param name="variable">The name of an environment variable.</param>
2549       <param name="value">A value to assign to <paramref name="variable" />.</param>
2550       <exception cref="T:System.ArgumentNullException">
2551         <paramref name="variable" /> is null.</exception>
2552       <exception cref="T:System.ArgumentException">
2553         <paramref name="variable" /> contains a zero-length string, an initial hexadecimal zero character (0x00), or an equal sign ("="). -or-The length of <paramref name="variable" /> or <paramref name="value" /> is greater than or equal to 32,767 characters.-or-An error occurred during the execution of this operation.</exception>
2554       <exception cref="T:System.Security.SecurityException">The caller does not have the required permission to perform this operation.</exception>
2555       <filterpriority>1</filterpriority>
2556       <PermissionSet>
2557         <IPermission class="System.Security.Permissions.EnvironmentPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" />
2558       </PermissionSet>
2559     </member>
2560     <member name="P:System.Environment.StackTrace">
2561       <summary>Gets current stack trace information.</summary>
2562       <returns>A string containing stack trace information. This value can be <see cref="F:System.String.Empty" />.</returns>
2563       <exception cref="T:System.ArgumentOutOfRangeException">The requested stack trace information is out of range.</exception>
2564       <filterpriority>1</filterpriority>
2565       <PermissionSet>
2566         <IPermission class="System.Security.Permissions.EnvironmentPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" />
2567         <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" PathDiscovery="*AllFiles*" />
2568       </PermissionSet>
2569     </member>
2570     <member name="P:System.Environment.TickCount">
2571       <summary>Gets the number of milliseconds elapsed since the system started.</summary>
2572       <returns>A 32-bit signed integer containing the amount of time in milliseconds that has passed since the last time the computer was started. </returns>
2573       <filterpriority>1</filterpriority>
2574     </member>
2575     <member name="T:System.Math">
2576       <summary>Provides constants and static methods for trigonometric, logarithmic, and other common mathematical functions.To browse the .NET Framework source code for this type, see the Reference Source.</summary>
2577       <filterpriority>1</filterpriority>
2578     </member>
2579     <member name="M:System.Math.Abs(System.Decimal)">
2580       <summary>Returns the absolute value of a <see cref="T:System.Decimal" /> number.</summary>
2581       <returns>A decimal number, x, such that 0 ≤ x ≤<see cref="F:System.Decimal.MaxValue" />.</returns>
2582       <param name="value">A number that is greater than or equal to <see cref="F:System.Decimal.MinValue" />, but less than or equal to <see cref="F:System.Decimal.MaxValue" />. </param>
2583       <filterpriority>1</filterpriority>
2584     </member>
2585     <member name="M:System.Math.Abs(System.Double)">
2586       <summary>Returns the absolute value of a double-precision floating-point number.</summary>
2587       <returns>A double-precision floating-point number, x, such that 0 ≤ x ≤<see cref="F:System.Double.MaxValue" />.</returns>
2588       <param name="value">A number that is greater than or equal to <see cref="F:System.Double.MinValue" />, but less than or equal to <see cref="F:System.Double.MaxValue" />.</param>
2589       <filterpriority>1</filterpriority>
2590     </member>
2591     <member name="M:System.Math.Abs(System.Int16)">
2592       <summary>Returns the absolute value of a 16-bit signed integer.</summary>
2593       <returns>A 16-bit signed integer, x, such that 0 ≤ x ≤<see cref="F:System.Int16.MaxValue" />.</returns>
2594       <param name="value">A number that is greater than <see cref="F:System.Int16.MinValue" />, but less than or equal to <see cref="F:System.Int16.MaxValue" />.</param>
2595       <exception cref="T:System.OverflowException">
2596         <paramref name="value" /> equals <see cref="F:System.Int16.MinValue" />. </exception>
2597       <filterpriority>1</filterpriority>
2598     </member>
2599     <member name="M:System.Math.Abs(System.Int32)">
2600       <summary>Returns the absolute value of a 32-bit signed integer.</summary>
2601       <returns>A 32-bit signed integer, x, such that 0 ≤ x ≤<see cref="F:System.Int32.MaxValue" />.</returns>
2602       <param name="value">A number that is greater than <see cref="F:System.Int32.MinValue" />, but less than or equal to <see cref="F:System.Int32.MaxValue" />.</param>
2603       <exception cref="T:System.OverflowException">
2604         <paramref name="value" /> equals <see cref="F:System.Int32.MinValue" />. </exception>
2605       <filterpriority>1</filterpriority>
2606     </member>
2607     <member name="M:System.Math.Abs(System.Int64)">
2608       <summary>Returns the absolute value of a 64-bit signed integer.</summary>
2609       <returns>A 64-bit signed integer, x, such that 0 ≤ x ≤<see cref="F:System.Int64.MaxValue" />.</returns>
2610       <param name="value">A number that is greater than <see cref="F:System.Int64.MinValue" />, but less than or equal to <see cref="F:System.Int64.MaxValue" />.</param>
2611       <exception cref="T:System.OverflowException">
2612         <paramref name="value" /> equals <see cref="F:System.Int64.MinValue" />. </exception>
2613       <filterpriority>1</filterpriority>
2614     </member>
2615     <member name="M:System.Math.Abs(System.SByte)">
2616       <summary>Returns the absolute value of an 8-bit signed integer.</summary>
2617       <returns>An 8-bit signed integer, x, such that 0 ≤ x ≤<see cref="F:System.SByte.MaxValue" />.</returns>
2618       <param name="value">A number that is greater than <see cref="F:System.SByte.MinValue" />, but less than or equal to <see cref="F:System.SByte.MaxValue" />.</param>
2619       <exception cref="T:System.OverflowException">
2620         <paramref name="value" /> equals <see cref="F:System.SByte.MinValue" />. </exception>
2621       <filterpriority>1</filterpriority>
2622     </member>
2623     <member name="M:System.Math.Abs(System.Single)">
2624       <summary>Returns the absolute value of a single-precision floating-point number.</summary>
2625       <returns>A single-precision floating-point number, x, such that 0 ≤ x ≤<see cref="F:System.Single.MaxValue" />.</returns>
2626       <param name="value">A number that is greater than or equal to <see cref="F:System.Single.MinValue" />, but less than or equal to <see cref="F:System.Single.MaxValue" />.</param>
2627       <filterpriority>1</filterpriority>
2628     </member>
2629     <member name="M:System.Math.Acos(System.Double)">
2630       <summary>Returns the angle whose cosine is the specified number.</summary>
2631       <returns>An angle, θ, measured in radians, such that 0 ≤θ≤π-or- <see cref="F:System.Double.NaN" /> if <paramref name="d" /> &lt; -1 or <paramref name="d" /> &gt; 1 or <paramref name="d" /> equals <see cref="F:System.Double.NaN" />.</returns>
2632       <param name="d">A number representing a cosine, where <paramref name="d" /> must be greater than or equal to -1, but less than or equal to 1. </param>
2633       <filterpriority>1</filterpriority>
2634     </member>
2635     <member name="M:System.Math.Asin(System.Double)">
2636       <summary>Returns the angle whose sine is the specified number.</summary>
2637       <returns>An angle, θ, measured in radians, such that -π/2 ≤θ≤π/2 -or- <see cref="F:System.Double.NaN" /> if <paramref name="d" /> &lt; -1 or <paramref name="d" /> &gt; 1 or <paramref name="d" /> equals <see cref="F:System.Double.NaN" />.</returns>
2638       <param name="d">A number representing a sine, where <paramref name="d" /> must be greater than or equal to -1, but less than or equal to 1. </param>
2639       <filterpriority>1</filterpriority>
2640     </member>
2641     <member name="M:System.Math.Atan(System.Double)">
2642       <summary>Returns the angle whose tangent is the specified number.</summary>
2643       <returns>An angle, θ, measured in radians, such that -π/2 ≤θ≤π/2.-or- <see cref="F:System.Double.NaN" /> if <paramref name="d" /> equals <see cref="F:System.Double.NaN" />, -π/2 rounded to double precision (-1.5707963267949) if <paramref name="d" /> equals <see cref="F:System.Double.NegativeInfinity" />, or π/2 rounded to double precision (1.5707963267949) if <paramref name="d" /> equals <see cref="F:System.Double.PositiveInfinity" />.</returns>
2644       <param name="d">A number representing a tangent. </param>
2645       <filterpriority>1</filterpriority>
2646     </member>
2647     <member name="M:System.Math.Atan2(System.Double,System.Double)">
2648       <summary>Returns the angle whose tangent is the quotient of two specified numbers.</summary>
2649       <returns>An angle, θ, measured in radians, such that -π≤θ≤π, and tan(θ) = <paramref name="y" /> / <paramref name="x" />, where (<paramref name="x" />, <paramref name="y" />) is a point in the Cartesian plane. Observe the following: For (<paramref name="x" />, <paramref name="y" />) in quadrant 1, 0 &lt; θ &lt; π/2.For (<paramref name="x" />, <paramref name="y" />) in quadrant 2, π/2 &lt; θ≤π.For (<paramref name="x" />, <paramref name="y" />) in quadrant 3, -π &lt; θ &lt; -π/2.For (<paramref name="x" />, <paramref name="y" />) in quadrant 4, -π/2 &lt; θ &lt; 0.For points on the boundaries of the quadrants, the return value is the following:If y is 0 and x is not negative, θ = 0.If y is 0 and x is negative, θ = π.If y is positive and x is 0, θ = π/2.If y is negative and x is 0, θ = -π/2.If y is 0 and x is 0, θ = 0. If <paramref name="x" /> or <paramref name="y" /> is <see cref="F:System.Double.NaN" />, or if <paramref name="x" /> and <paramref name="y" /> are either <see cref="F:System.Double.PositiveInfinity" /> or <see cref="F:System.Double.NegativeInfinity" />, the method returns <see cref="F:System.Double.NaN" />.</returns>
2650       <param name="y">The y coordinate of a point. </param>
2651       <param name="x">The x coordinate of a point. </param>
2652       <filterpriority>1</filterpriority>
2653     </member>
2654     <member name="M:System.Math.Ceiling(System.Decimal)">
2655       <summary>Returns the smallest integral value that is greater than or equal to the specified decimal number.</summary>
2656       <returns>The smallest integral value that is greater than or equal to <paramref name="d" />. Note that this method returns a <see cref="T:System.Decimal" /> instead of an integral type.</returns>
2657       <param name="d">A decimal number. </param>
2658       <filterpriority>1</filterpriority>
2659     </member>
2660     <member name="M:System.Math.Ceiling(System.Double)">
2661       <summary>Returns the smallest integral value that is greater than or equal to the specified double-precision floating-point number.</summary>
2662       <returns>The smallest integral value that is greater than or equal to <paramref name="a" />. If <paramref name="a" /> is equal to <see cref="F:System.Double.NaN" />, <see cref="F:System.Double.NegativeInfinity" />, or <see cref="F:System.Double.PositiveInfinity" />, that value is returned. Note that this method returns a <see cref="T:System.Double" /> instead of an integral type.</returns>
2663       <param name="a">A double-precision floating-point number. </param>
2664       <filterpriority>1</filterpriority>
2665     </member>
2666     <member name="M:System.Math.Cos(System.Double)">
2667       <summary>Returns the cosine of the specified angle.</summary>
2668       <returns>The cosine of <paramref name="d" />. If <paramref name="d" /> is equal to <see cref="F:System.Double.NaN" />, <see cref="F:System.Double.NegativeInfinity" />, or <see cref="F:System.Double.PositiveInfinity" />, this method returns <see cref="F:System.Double.NaN" />.</returns>
2669       <param name="d">An angle, measured in radians. </param>
2670       <filterpriority>1</filterpriority>
2671     </member>
2672     <member name="M:System.Math.Cosh(System.Double)">
2673       <summary>Returns the hyperbolic cosine of the specified angle.</summary>
2674       <returns>The hyperbolic cosine of <paramref name="value" />. If <paramref name="value" /> is equal to <see cref="F:System.Double.NegativeInfinity" /> or <see cref="F:System.Double.PositiveInfinity" />, <see cref="F:System.Double.PositiveInfinity" /> is returned. If <paramref name="value" /> is equal to <see cref="F:System.Double.NaN" />, <see cref="F:System.Double.NaN" /> is returned.</returns>
2675       <param name="value">An angle, measured in radians. </param>
2676       <filterpriority>1</filterpriority>
2677     </member>
2678     <member name="F:System.Math.E">
2679       <summary>Represents the natural logarithmic base, specified by the constant, e.</summary>
2680       <filterpriority>1</filterpriority>
2681     </member>
2682     <member name="M:System.Math.Exp(System.Double)">
2683       <summary>Returns e raised to the specified power.</summary>
2684       <returns>The number e raised to the power <paramref name="d" />. If <paramref name="d" /> equals <see cref="F:System.Double.NaN" /> or <see cref="F:System.Double.PositiveInfinity" />, that value is returned. If <paramref name="d" /> equals <see cref="F:System.Double.NegativeInfinity" />, 0 is returned.</returns>
2685       <param name="d">A number specifying a power. </param>
2686       <filterpriority>1</filterpriority>
2687     </member>
2688     <member name="M:System.Math.Floor(System.Decimal)">
2689       <summary>Returns the largest integer less than or equal to the specified decimal number.</summary>
2690       <returns>The largest integer less than or equal to <paramref name="d" />.  Note that the method returns an integral value of type <see cref="T:System.Math" />. </returns>
2691       <param name="d">A decimal number. </param>
2692       <filterpriority>1</filterpriority>
2693     </member>
2694     <member name="M:System.Math.Floor(System.Double)">
2695       <summary>Returns the largest integer less than or equal to the specified double-precision floating-point number.</summary>
2696       <returns>The largest integer less than or equal to <paramref name="d" />. If <paramref name="d" /> is equal to <see cref="F:System.Double.NaN" />, <see cref="F:System.Double.NegativeInfinity" />, or <see cref="F:System.Double.PositiveInfinity" />, that value is returned.</returns>
2697       <param name="d">A double-precision floating-point number. </param>
2698       <filterpriority>1</filterpriority>
2699     </member>
2700     <member name="M:System.Math.IEEERemainder(System.Double,System.Double)">
2701       <summary>Returns the remainder resulting from the division of a specified number by another specified number.</summary>
2702       <returns>A number equal to <paramref name="x" /> - (<paramref name="y" /> Q), where Q is the quotient of <paramref name="x" /> / <paramref name="y" /> rounded to the nearest integer (if <paramref name="x" /> / <paramref name="y" /> falls halfway between two integers, the even integer is returned).If <paramref name="x" /> - (<paramref name="y" /> Q) is zero, the value +0 is returned if <paramref name="x" /> is positive, or -0 if <paramref name="x" /> is negative.If <paramref name="y" /> = 0, <see cref="F:System.Double.NaN" /> is returned.</returns>
2703       <param name="x">A dividend. </param>
2704       <param name="y">A divisor. </param>
2705       <filterpriority>1</filterpriority>
2706     </member>
2707     <member name="M:System.Math.Log(System.Double)">
2708       <summary>Returns the natural (base e) logarithm of a specified number.</summary>
2709       <returns>One of the values in the following table. <paramref name="d" /> parameterReturn value Positive The natural logarithm of <paramref name="d" />; that is, ln <paramref name="d" />, or log e<paramref name="d" />Zero <see cref="F:System.Double.NegativeInfinity" />Negative <see cref="F:System.Double.NaN" />Equal to <see cref="F:System.Double.NaN" /><see cref="F:System.Double.NaN" />Equal to <see cref="F:System.Double.PositiveInfinity" /><see cref="F:System.Double.PositiveInfinity" /></returns>
2710       <param name="d">The number whose logarithm is to be found. </param>
2711       <filterpriority>1</filterpriority>
2712     </member>
2713     <member name="M:System.Math.Log(System.Double,System.Double)">
2714       <summary>Returns the logarithm of a specified number in a specified base.</summary>
2715       <returns>One of the values in the following table. (+Infinity denotes <see cref="F:System.Double.PositiveInfinity" />, -Infinity denotes <see cref="F:System.Double.NegativeInfinity" />, and NaN denotes <see cref="F:System.Double.NaN" />.)<paramref name="a" /><paramref name="newBase" />Return value<paramref name="a" />&gt; 0(0 &lt;<paramref name="newBase" />&lt; 1) -or-(<paramref name="newBase" />&gt; 1)lognewBase(a)<paramref name="a" />&lt; 0(any value)NaN(any value)<paramref name="newBase" />&lt; 0NaN<paramref name="a" /> != 1<paramref name="newBase" /> = 0NaN<paramref name="a" /> != 1<paramref name="newBase" /> = +InfinityNaN<paramref name="a" /> = NaN(any value)NaN(any value)<paramref name="newBase" /> = NaNNaN(any value)<paramref name="newBase" /> = 1NaN<paramref name="a" /> = 00 &lt;<paramref name="newBase" />&lt; 1 +Infinity<paramref name="a" /> = 0<paramref name="newBase" />&gt; 1-Infinity<paramref name="a" /> =  +Infinity0 &lt;<paramref name="newBase" />&lt; 1-Infinity<paramref name="a" /> =  +Infinity<paramref name="newBase" />&gt; 1+Infinity<paramref name="a" /> = 1<paramref name="newBase" /> = 00<paramref name="a" /> = 1<paramref name="newBase" /> = +Infinity0</returns>
2716       <param name="a">The number whose logarithm is to be found. </param>
2717       <param name="newBase">The base of the logarithm. </param>
2718       <filterpriority>1</filterpriority>
2719     </member>
2720     <member name="M:System.Math.Log10(System.Double)">
2721       <summary>Returns the base 10 logarithm of a specified number.</summary>
2722       <returns>One of the values in the following table. <paramref name="d" /> parameter Return value Positive The base 10 log of <paramref name="d" />; that is, log 10<paramref name="d" />. Zero <see cref="F:System.Double.NegativeInfinity" />Negative <see cref="F:System.Double.NaN" />Equal to <see cref="F:System.Double.NaN" /><see cref="F:System.Double.NaN" />Equal to <see cref="F:System.Double.PositiveInfinity" /><see cref="F:System.Double.PositiveInfinity" /></returns>
2723       <param name="d">A number whose logarithm is to be found. </param>
2724       <filterpriority>1</filterpriority>
2725     </member>
2726     <member name="M:System.Math.Max(System.Byte,System.Byte)">
2727       <summary>Returns the larger of two 8-bit unsigned integers.</summary>
2728       <returns>Parameter <paramref name="val1" /> or <paramref name="val2" />, whichever is larger.</returns>
2729       <param name="val1">The first of two 8-bit unsigned integers to compare. </param>
2730       <param name="val2">The second of two 8-bit unsigned integers to compare. </param>
2731       <filterpriority>1</filterpriority>
2732     </member>
2733     <member name="M:System.Math.Max(System.Decimal,System.Decimal)">
2734       <summary>Returns the larger of two decimal numbers.</summary>
2735       <returns>Parameter <paramref name="val1" /> or <paramref name="val2" />, whichever is larger.</returns>
2736       <param name="val1">The first of two decimal numbers to compare. </param>
2737       <param name="val2">The second of two decimal numbers to compare. </param>
2738       <filterpriority>1</filterpriority>
2739     </member>
2740     <member name="M:System.Math.Max(System.Double,System.Double)">
2741       <summary>Returns the larger of two double-precision floating-point numbers.</summary>
2742       <returns>Parameter <paramref name="val1" /> or <paramref name="val2" />, whichever is larger. If <paramref name="val1" />, <paramref name="val2" />, or both <paramref name="val1" /> and <paramref name="val2" /> are equal to <see cref="F:System.Double.NaN" />, <see cref="F:System.Double.NaN" /> is returned.</returns>
2743       <param name="val1">The first of two double-precision floating-point numbers to compare. </param>
2744       <param name="val2">The second of two double-precision floating-point numbers to compare. </param>
2745       <filterpriority>1</filterpriority>
2746     </member>
2747     <member name="M:System.Math.Max(System.Int16,System.Int16)">
2748       <summary>Returns the larger of two 16-bit signed integers.</summary>
2749       <returns>Parameter <paramref name="val1" /> or <paramref name="val2" />, whichever is larger.</returns>
2750       <param name="val1">The first of two 16-bit signed integers to compare. </param>
2751       <param name="val2">The second of two 16-bit signed integers to compare. </param>
2752       <filterpriority>1</filterpriority>
2753     </member>
2754     <member name="M:System.Math.Max(System.Int32,System.Int32)">
2755       <summary>Returns the larger of two 32-bit signed integers.</summary>
2756       <returns>Parameter <paramref name="val1" /> or <paramref name="val2" />, whichever is larger.</returns>
2757       <param name="val1">The first of two 32-bit signed integers to compare. </param>
2758       <param name="val2">The second of two 32-bit signed integers to compare. </param>
2759       <filterpriority>1</filterpriority>
2760     </member>
2761     <member name="M:System.Math.Max(System.Int64,System.Int64)">
2762       <summary>Returns the larger of two 64-bit signed integers.</summary>
2763       <returns>Parameter <paramref name="val1" /> or <paramref name="val2" />, whichever is larger.</returns>
2764       <param name="val1">The first of two 64-bit signed integers to compare. </param>
2765       <param name="val2">The second of two 64-bit signed integers to compare. </param>
2766       <filterpriority>1</filterpriority>
2767     </member>
2768     <member name="M:System.Math.Max(System.SByte,System.SByte)">
2769       <summary>Returns the larger of two 8-bit signed integers.</summary>
2770       <returns>Parameter <paramref name="val1" /> or <paramref name="val2" />, whichever is larger.</returns>
2771       <param name="val1">The first of two 8-bit signed integers to compare. </param>
2772       <param name="val2">The second of two 8-bit signed integers to compare. </param>
2773       <filterpriority>1</filterpriority>
2774     </member>
2775     <member name="M:System.Math.Max(System.Single,System.Single)">
2776       <summary>Returns the larger of two single-precision floating-point numbers.</summary>
2777       <returns>Parameter <paramref name="val1" /> or <paramref name="val2" />, whichever is larger. If <paramref name="val1" />, or <paramref name="val2" />, or both <paramref name="val1" /> and <paramref name="val2" /> are equal to <see cref="F:System.Single.NaN" />, <see cref="F:System.Single.NaN" /> is returned.</returns>
2778       <param name="val1">The first of two single-precision floating-point numbers to compare. </param>
2779       <param name="val2">The second of two single-precision floating-point numbers to compare. </param>
2780       <filterpriority>1</filterpriority>
2781     </member>
2782     <member name="M:System.Math.Max(System.UInt16,System.UInt16)">
2783       <summary>Returns the larger of two 16-bit unsigned integers.</summary>
2784       <returns>Parameter <paramref name="val1" /> or <paramref name="val2" />, whichever is larger.</returns>
2785       <param name="val1">The first of two 16-bit unsigned integers to compare. </param>
2786       <param name="val2">The second of two 16-bit unsigned integers to compare. </param>
2787       <filterpriority>1</filterpriority>
2788     </member>
2789     <member name="M:System.Math.Max(System.UInt32,System.UInt32)">
2790       <summary>Returns the larger of two 32-bit unsigned integers.</summary>
2791       <returns>Parameter <paramref name="val1" /> or <paramref name="val2" />, whichever is larger.</returns>
2792       <param name="val1">The first of two 32-bit unsigned integers to compare. </param>
2793       <param name="val2">The second of two 32-bit unsigned integers to compare. </param>
2794       <filterpriority>1</filterpriority>
2795     </member>
2796     <member name="M:System.Math.Max(System.UInt64,System.UInt64)">
2797       <summary>Returns the larger of two 64-bit unsigned integers.</summary>
2798       <returns>Parameter <paramref name="val1" /> or <paramref name="val2" />, whichever is larger.</returns>
2799       <param name="val1">The first of two 64-bit unsigned integers to compare. </param>
2800       <param name="val2">The second of two 64-bit unsigned integers to compare. </param>
2801       <filterpriority>1</filterpriority>
2802     </member>
2803     <member name="M:System.Math.Min(System.Byte,System.Byte)">
2804       <summary>Returns the smaller of two 8-bit unsigned integers.</summary>
2805       <returns>Parameter <paramref name="val1" /> or <paramref name="val2" />, whichever is smaller.</returns>
2806       <param name="val1">The first of two 8-bit unsigned integers to compare. </param>
2807       <param name="val2">The second of two 8-bit unsigned integers to compare. </param>
2808       <filterpriority>1</filterpriority>
2809     </member>
2810     <member name="M:System.Math.Min(System.Decimal,System.Decimal)">
2811       <summary>Returns the smaller of two decimal numbers.</summary>
2812       <returns>Parameter <paramref name="val1" /> or <paramref name="val2" />, whichever is smaller.</returns>
2813       <param name="val1">The first of two decimal numbers to compare. </param>
2814       <param name="val2">The second of two decimal numbers to compare. </param>
2815       <filterpriority>1</filterpriority>
2816     </member>
2817     <member name="M:System.Math.Min(System.Double,System.Double)">
2818       <summary>Returns the smaller of two double-precision floating-point numbers.</summary>
2819       <returns>Parameter <paramref name="val1" /> or <paramref name="val2" />, whichever is smaller. If <paramref name="val1" />, <paramref name="val2" />, or both <paramref name="val1" /> and <paramref name="val2" /> are equal to <see cref="F:System.Double.NaN" />, <see cref="F:System.Double.NaN" /> is returned.</returns>
2820       <param name="val1">The first of two double-precision floating-point numbers to compare. </param>
2821       <param name="val2">The second of two double-precision floating-point numbers to compare. </param>
2822       <filterpriority>1</filterpriority>
2823     </member>
2824     <member name="M:System.Math.Min(System.Int16,System.Int16)">
2825       <summary>Returns the smaller of two 16-bit signed integers.</summary>
2826       <returns>Parameter <paramref name="val1" /> or <paramref name="val2" />, whichever is smaller.</returns>
2827       <param name="val1">The first of two 16-bit signed integers to compare. </param>
2828       <param name="val2">The second of two 16-bit signed integers to compare. </param>
2829       <filterpriority>1</filterpriority>
2830     </member>
2831     <member name="M:System.Math.Min(System.Int32,System.Int32)">
2832       <summary>Returns the smaller of two 32-bit signed integers.</summary>
2833       <returns>Parameter <paramref name="val1" /> or <paramref name="val2" />, whichever is smaller.</returns>
2834       <param name="val1">The first of two 32-bit signed integers to compare. </param>
2835       <param name="val2">The second of two 32-bit signed integers to compare. </param>
2836       <filterpriority>1</filterpriority>
2837     </member>
2838     <member name="M:System.Math.Min(System.Int64,System.Int64)">
2839       <summary>Returns the smaller of two 64-bit signed integers.</summary>
2840       <returns>Parameter <paramref name="val1" /> or <paramref name="val2" />, whichever is smaller.</returns>
2841       <param name="val1">The first of two 64-bit signed integers to compare. </param>
2842       <param name="val2">The second of two 64-bit signed integers to compare. </param>
2843       <filterpriority>1</filterpriority>
2844     </member>
2845     <member name="M:System.Math.Min(System.SByte,System.SByte)">
2846       <summary>Returns the smaller of two 8-bit signed integers.</summary>
2847       <returns>Parameter <paramref name="val1" /> or <paramref name="val2" />, whichever is smaller.</returns>
2848       <param name="val1">The first of two 8-bit signed integers to compare. </param>
2849       <param name="val2">The second of two 8-bit signed integers to compare. </param>
2850       <filterpriority>1</filterpriority>
2851     </member>
2852     <member name="M:System.Math.Min(System.Single,System.Single)">
2853       <summary>Returns the smaller of two single-precision floating-point numbers.</summary>
2854       <returns>Parameter <paramref name="val1" /> or <paramref name="val2" />, whichever is smaller. If <paramref name="val1" />, <paramref name="val2" />, or both <paramref name="val1" /> and <paramref name="val2" /> are equal to <see cref="F:System.Single.NaN" />, <see cref="F:System.Single.NaN" /> is returned.</returns>
2855       <param name="val1">The first of two single-precision floating-point numbers to compare. </param>
2856       <param name="val2">The second of two single-precision floating-point numbers to compare. </param>
2857       <filterpriority>1</filterpriority>
2858     </member>
2859     <member name="M:System.Math.Min(System.UInt16,System.UInt16)">
2860       <summary>Returns the smaller of two 16-bit unsigned integers.</summary>
2861       <returns>Parameter <paramref name="val1" /> or <paramref name="val2" />, whichever is smaller.</returns>
2862       <param name="val1">The first of two 16-bit unsigned integers to compare. </param>
2863       <param name="val2">The second of two 16-bit unsigned integers to compare. </param>
2864       <filterpriority>1</filterpriority>
2865     </member>
2866     <member name="M:System.Math.Min(System.UInt32,System.UInt32)">
2867       <summary>Returns the smaller of two 32-bit unsigned integers.</summary>
2868       <returns>Parameter <paramref name="val1" /> or <paramref name="val2" />, whichever is smaller.</returns>
2869       <param name="val1">The first of two 32-bit unsigned integers to compare. </param>
2870       <param name="val2">The second of two 32-bit unsigned integers to compare. </param>
2871       <filterpriority>1</filterpriority>
2872     </member>
2873     <member name="M:System.Math.Min(System.UInt64,System.UInt64)">
2874       <summary>Returns the smaller of two 64-bit unsigned integers.</summary>
2875       <returns>Parameter <paramref name="val1" /> or <paramref name="val2" />, whichever is smaller.</returns>
2876       <param name="val1">The first of two 64-bit unsigned integers to compare. </param>
2877       <param name="val2">The second of two 64-bit unsigned integers to compare. </param>
2878       <filterpriority>1</filterpriority>
2879     </member>
2880     <member name="F:System.Math.PI">
2881       <summary>Represents the ratio of the circumference of a circle to its diameter, specified by the constant, π.</summary>
2882       <filterpriority>1</filterpriority>
2883     </member>
2884     <member name="M:System.Math.Pow(System.Double,System.Double)">
2885       <summary>Returns a specified number raised to the specified power.</summary>
2886       <returns>The number <paramref name="x" /> raised to the power <paramref name="y" />.</returns>
2887       <param name="x">A double-precision floating-point number to be raised to a power. </param>
2888       <param name="y">A double-precision floating-point number that specifies a power. </param>
2889       <filterpriority>1</filterpriority>
2890     </member>
2891     <member name="M:System.Math.Round(System.Decimal)">
2892       <summary>Rounds a decimal value to the nearest integral value.</summary>
2893       <returns>The integer nearest parameter <paramref name="d" />. If the fractional component of <paramref name="d" /> is halfway between two integers, one of which is even and the other odd, the even number is returned. Note that this method returns a <see cref="T:System.Decimal" /> instead of an integral type.</returns>
2894       <param name="d">A decimal number to be rounded. </param>
2895       <exception cref="T:System.OverflowException">The result is outside the range of a <see cref="T:System.Decimal" />.</exception>
2896       <filterpriority>1</filterpriority>
2897     </member>
2898     <member name="M:System.Math.Round(System.Decimal,System.Int32)">
2899       <summary>Rounds a decimal value to a specified number of fractional digits.</summary>
2900       <returns>The number nearest to <paramref name="d" /> that contains a number of fractional digits equal to <paramref name="decimals" />. </returns>
2901       <param name="d">A decimal number to be rounded. </param>
2902       <param name="decimals">The number of decimal places in the return value. </param>
2903       <exception cref="T:System.ArgumentOutOfRangeException">
2904         <paramref name="decimals" /> is less than 0 or greater than 28. </exception>
2905       <exception cref="T:System.OverflowException">The result is outside the range of a <see cref="T:System.Decimal" />.</exception>
2906       <filterpriority>1</filterpriority>
2907     </member>
2908     <member name="M:System.Math.Round(System.Decimal,System.Int32,System.MidpointRounding)">
2909       <summary>Rounds a decimal value to a specified number of fractional digits. A parameter specifies how to round the value if it is midway between two numbers.</summary>
2910       <returns>The number nearest to <paramref name="d" /> that contains a number of fractional digits equal to <paramref name="decimals" />. If <paramref name="d" /> has fewer fractional digits than <paramref name="decimals" />, <paramref name="d" /> is returned unchanged.</returns>
2911       <param name="d">A decimal number to be rounded. </param>
2912       <param name="decimals">The number of decimal places in the return value. </param>
2913       <param name="mode">Specification for how to round <paramref name="d" /> if it is midway between two other numbers.</param>
2914       <exception cref="T:System.ArgumentOutOfRangeException">
2915         <paramref name="decimals" /> is less than 0 or greater than 28. </exception>
2916       <exception cref="T:System.ArgumentException">
2917         <paramref name="mode" /> is not a valid value of <see cref="T:System.MidpointRounding" />.</exception>
2918       <exception cref="T:System.OverflowException">The result is outside the range of a <see cref="T:System.Decimal" />.</exception>
2919       <filterpriority>1</filterpriority>
2920     </member>
2921     <member name="M:System.Math.Round(System.Decimal,System.MidpointRounding)">
2922       <summary>Rounds a decimal value to the nearest integer. A parameter specifies how to round the value if it is midway between two numbers.</summary>
2923       <returns>The integer nearest <paramref name="d" />. If <paramref name="d" /> is halfway between two numbers, one of which is even and the other odd, then <paramref name="mode" /> determines which of the two is returned. </returns>
2924       <param name="d">A decimal number to be rounded. </param>
2925       <param name="mode">Specification for how to round <paramref name="d" /> if it is midway between two other numbers.</param>
2926       <exception cref="T:System.ArgumentException">
2927         <paramref name="mode" /> is not a valid value of <see cref="T:System.MidpointRounding" />.</exception>
2928       <exception cref="T:System.OverflowException">The result is outside the range of a <see cref="T:System.Decimal" />.</exception>
2929       <filterpriority>1</filterpriority>
2930     </member>
2931     <member name="M:System.Math.Round(System.Double)">
2932       <summary>Rounds a double-precision floating-point value to the nearest integral value.</summary>
2933       <returns>The integer nearest <paramref name="a" />. If the fractional component of <paramref name="a" /> is halfway between two integers, one of which is even and the other odd, then the even number is returned. Note that this method returns a <see cref="T:System.Double" /> instead of an integral type.</returns>
2934       <param name="a">A double-precision floating-point number to be rounded. </param>
2935       <filterpriority>1</filterpriority>
2936     </member>
2937     <member name="M:System.Math.Round(System.Double,System.Int32)">
2938       <summary>Rounds a double-precision floating-point value to a specified number of fractional digits.</summary>
2939       <returns>The number nearest to <paramref name="value" /> that contains a number of fractional digits equal to <paramref name="digits" />.</returns>
2940       <param name="value">A double-precision floating-point number to be rounded. </param>
2941       <param name="digits">The number of fractional digits in the return value. </param>
2942       <exception cref="T:System.ArgumentOutOfRangeException">
2943         <paramref name="digits" /> is less than 0 or greater than 15. </exception>
2944       <filterpriority>1</filterpriority>
2945     </member>
2946     <member name="M:System.Math.Round(System.Double,System.Int32,System.MidpointRounding)">
2947       <summary>Rounds a double-precision floating-point value to a specified number of fractional digits. A parameter specifies how to round the value if it is midway between two numbers.</summary>
2948       <returns>The number nearest to <paramref name="value" /> that has a number of fractional digits equal to <paramref name="digits" />. If <paramref name="value" /> has fewer fractional digits than <paramref name="digits" />, <paramref name="value" /> is returned unchanged.</returns>
2949       <param name="value">A double-precision floating-point number to be rounded. </param>
2950       <param name="digits">The number of fractional digits in the return value. </param>
2951       <param name="mode">Specification for how to round <paramref name="value" /> if it is midway between two other numbers.</param>
2952       <exception cref="T:System.ArgumentOutOfRangeException">
2953         <paramref name="digits" /> is less than 0 or greater than 15. </exception>
2954       <exception cref="T:System.ArgumentException">
2955         <paramref name="mode" /> is not a valid value of <see cref="T:System.MidpointRounding" />.</exception>
2956       <filterpriority>1</filterpriority>
2957     </member>
2958     <member name="M:System.Math.Round(System.Double,System.MidpointRounding)">
2959       <summary>Rounds a double-precision floating-point value to the nearest integer. A parameter specifies how to round the value if it is midway between two numbers.</summary>
2960       <returns>The integer nearest <paramref name="value" />. If <paramref name="value" /> is halfway between two integers, one of which is even and the other odd, then <paramref name="mode" /> determines which of the two is returned.</returns>
2961       <param name="value">A double-precision floating-point number to be rounded. </param>
2962       <param name="mode">Specification for how to round <paramref name="value" /> if it is midway between two other numbers.</param>
2963       <exception cref="T:System.ArgumentException">
2964         <paramref name="mode" /> is not a valid value of <see cref="T:System.MidpointRounding" />.</exception>
2965       <filterpriority>1</filterpriority>
2966     </member>
2967     <member name="M:System.Math.Sign(System.Decimal)">
2968       <summary>Returns a value indicating the sign of a decimal number.</summary>
2969       <returns>A number that indicates the sign of <paramref name="value" />, as shown in the following table.Return value Meaning -1 <paramref name="value" /> is less than zero. 0 <paramref name="value" /> is equal to zero. 1 <paramref name="value" /> is greater than zero. </returns>
2970       <param name="value">A signed decimal number. </param>
2971       <filterpriority>1</filterpriority>
2972     </member>
2973     <member name="M:System.Math.Sign(System.Double)">
2974       <summary>Returns a value indicating the sign of a double-precision floating-point number.</summary>
2975       <returns>A number that indicates the sign of <paramref name="value" />, as shown in the following table.Return value Meaning -1 <paramref name="value" /> is less than zero. 0 <paramref name="value" /> is equal to zero. 1 <paramref name="value" /> is greater than zero. </returns>
2976       <param name="value">A signed number. </param>
2977       <exception cref="T:System.ArithmeticException">
2978         <paramref name="value" /> is equal to <see cref="F:System.Double.NaN" />. </exception>
2979       <filterpriority>1</filterpriority>
2980     </member>
2981     <member name="M:System.Math.Sign(System.Int16)">
2982       <summary>Returns a value indicating the sign of a 16-bit signed integer.</summary>
2983       <returns>A number that indicates the sign of <paramref name="value" />, as shown in the following table.Return value Meaning -1 <paramref name="value" /> is less than zero. 0 <paramref name="value" /> is equal to zero. 1 <paramref name="value" /> is greater than zero. </returns>
2984       <param name="value">A signed number. </param>
2985       <filterpriority>1</filterpriority>
2986     </member>
2987     <member name="M:System.Math.Sign(System.Int32)">
2988       <summary>Returns a value indicating the sign of a 32-bit signed integer.</summary>
2989       <returns>A number that indicates the sign of <paramref name="value" />, as shown in the following table.Return value Meaning -1 <paramref name="value" /> is less than zero. 0 <paramref name="value" /> is equal to zero. 1 <paramref name="value" /> is greater than zero. </returns>
2990       <param name="value">A signed number. </param>
2991       <filterpriority>1</filterpriority>
2992     </member>
2993     <member name="M:System.Math.Sign(System.Int64)">
2994       <summary>Returns a value indicating the sign of a 64-bit signed integer.</summary>
2995       <returns>A number that indicates the sign of <paramref name="value" />, as shown in the following table.Return value Meaning -1 <paramref name="value" /> is less than zero. 0 <paramref name="value" /> is equal to zero. 1 <paramref name="value" /> is greater than zero. </returns>
2996       <param name="value">A signed number. </param>
2997       <filterpriority>1</filterpriority>
2998     </member>
2999     <member name="M:System.Math.Sign(System.SByte)">
3000       <summary>Returns a value indicating the sign of an 8-bit signed integer.</summary>
3001       <returns>A number that indicates the sign of <paramref name="value" />, as shown in the following table.Return value Meaning -1 <paramref name="value" /> is less than zero. 0 <paramref name="value" /> is equal to zero. 1 <paramref name="value" /> is greater than zero. </returns>
3002       <param name="value">A signed number. </param>
3003       <filterpriority>1</filterpriority>
3004     </member>
3005     <member name="M:System.Math.Sign(System.Single)">
3006       <summary>Returns a value indicating the sign of a single-precision floating-point number.</summary>
3007       <returns>A number that indicates the sign of <paramref name="value" />, as shown in the following table.Return value Meaning -1 <paramref name="value" /> is less than zero. 0 <paramref name="value" /> is equal to zero. 1 <paramref name="value" /> is greater than zero. </returns>
3008       <param name="value">A signed number. </param>
3009       <exception cref="T:System.ArithmeticException">
3010         <paramref name="value" /> is equal to <see cref="F:System.Single.NaN" />. </exception>
3011       <filterpriority>1</filterpriority>
3012     </member>
3013     <member name="M:System.Math.Sin(System.Double)">
3014       <summary>Returns the sine of the specified angle.</summary>
3015       <returns>The sine of <paramref name="a" />. If <paramref name="a" /> is equal to <see cref="F:System.Double.NaN" />, <see cref="F:System.Double.NegativeInfinity" />, or <see cref="F:System.Double.PositiveInfinity" />, this method returns <see cref="F:System.Double.NaN" />.</returns>
3016       <param name="a">An angle, measured in radians. </param>
3017       <filterpriority>1</filterpriority>
3018     </member>
3019     <member name="M:System.Math.Sinh(System.Double)">
3020       <summary>Returns the hyperbolic sine of the specified angle.</summary>
3021       <returns>The hyperbolic sine of <paramref name="value" />. If <paramref name="value" /> is equal to <see cref="F:System.Double.NegativeInfinity" />, <see cref="F:System.Double.PositiveInfinity" />, or <see cref="F:System.Double.NaN" />, this method returns a <see cref="T:System.Double" /> equal to <paramref name="value" />.</returns>
3022       <param name="value">An angle, measured in radians. </param>
3023       <filterpriority>1</filterpriority>
3024     </member>
3025     <member name="M:System.Math.Sqrt(System.Double)">
3026       <summary>Returns the square root of a specified number.</summary>
3027       <returns>One of the values in the following table. <paramref name="d" /> parameter Return value Zero or positive The positive square root of <paramref name="d" />. Negative <see cref="F:System.Double.NaN" />Equals <see cref="F:System.Double.NaN" /><see cref="F:System.Double.NaN" />Equals <see cref="F:System.Double.PositiveInfinity" /><see cref="F:System.Double.PositiveInfinity" /></returns>
3028       <param name="d">The number whose square root is to be found. </param>
3029       <filterpriority>1</filterpriority>
3030     </member>
3031     <member name="M:System.Math.Tan(System.Double)">
3032       <summary>Returns the tangent of the specified angle.</summary>
3033       <returns>The tangent of <paramref name="a" />. If <paramref name="a" /> is equal to <see cref="F:System.Double.NaN" />, <see cref="F:System.Double.NegativeInfinity" />, or <see cref="F:System.Double.PositiveInfinity" />, this method returns <see cref="F:System.Double.NaN" />.</returns>
3034       <param name="a">An angle, measured in radians. </param>
3035       <filterpriority>1</filterpriority>
3036     </member>
3037     <member name="M:System.Math.Tanh(System.Double)">
3038       <summary>Returns the hyperbolic tangent of the specified angle.</summary>
3039       <returns>The hyperbolic tangent of <paramref name="value" />. If <paramref name="value" /> is equal to <see cref="F:System.Double.NegativeInfinity" />, this method returns -1. If value is equal to <see cref="F:System.Double.PositiveInfinity" />, this method returns 1. If <paramref name="value" /> is equal to <see cref="F:System.Double.NaN" />, this method returns <see cref="F:System.Double.NaN" />.</returns>
3040       <param name="value">An angle, measured in radians. </param>
3041       <filterpriority>1</filterpriority>
3042     </member>
3043     <member name="M:System.Math.Truncate(System.Decimal)">
3044       <summary>Calculates the integral part of a specified decimal number. </summary>
3045       <returns>The integral part of <paramref name="d" />; that is, the number that remains after any fractional digits have been discarded.</returns>
3046       <param name="d">A number to truncate.</param>
3047       <filterpriority>1</filterpriority>
3048     </member>
3049     <member name="M:System.Math.Truncate(System.Double)">
3050       <summary>Calculates the integral part of a specified double-precision floating-point number. </summary>
3051       <returns>The integral part of <paramref name="d" />; that is, the number that remains after any fractional digits have been discarded, or one of the values listed in the following table. <paramref name="d" />Return value<see cref="F:System.Double.NaN" /><see cref="F:System.Double.NaN" /><see cref="F:System.Double.NegativeInfinity" /><see cref="F:System.Double.NegativeInfinity" /><see cref="F:System.Double.PositiveInfinity" /><see cref="F:System.Double.PositiveInfinity" /></returns>
3052       <param name="d">A number to truncate.</param>
3053       <filterpriority>1</filterpriority>
3054     </member>
3055     <member name="T:System.MidpointRounding">
3056       <summary>Specifies how mathematical rounding methods should process a number that is midway between two numbers.</summary>
3057       <filterpriority>1</filterpriority>
3058     </member>
3059     <member name="F:System.MidpointRounding.AwayFromZero">
3060       <summary>When a number is halfway between two others, it is rounded toward the nearest number that is away from zero.</summary>
3061     </member>
3062     <member name="F:System.MidpointRounding.ToEven">
3063       <summary>When a number is halfway between two others, it is rounded toward the nearest even number.</summary>
3064     </member>
3065     <member name="T:System.Progress`1">
3066       <summary>Provides an <see cref="T:System.IProgress`1" /> that invokes callbacks for each reported progress value.</summary>
3067       <typeparam name="T">Specifies the type of the progress report value.</typeparam>
3068     </member>
3069     <member name="M:System.Progress`1.#ctor">
3070       <summary>Initializes the <see cref="T:System.Progress`1" /> object.</summary>
3071     </member>
3072     <member name="M:System.Progress`1.#ctor(System.Action{`0})">
3073       <summary>Initializes the <see cref="T:System.Progress`1" /> object with the specified callback.</summary>
3074       <param name="handler">A handler to invoke for each reported progress value. This handler will be invoked in addition to any delegates registered with the <see cref="E:System.Progress`1.ProgressChanged" /> event. Depending on the <see cref="T:System.Threading.SynchronizationContext" /> instance captured by the <see cref="T:System.Progress`1" /> at construction, it is possible that this handler instance could be invoked concurrently with itself.</param>
3075     </member>
3076     <member name="M:System.Progress`1.OnReport(`0)">
3077       <summary>Reports a progress change.</summary>
3078       <param name="value">The value of the updated progress.</param>
3079     </member>
3080     <member name="E:System.Progress`1.ProgressChanged">
3081       <summary>Raised for each reported progress value.</summary>
3082     </member>
3083     <member name="M:System.Progress`1.System#IProgress{T}#Report(`0)">
3084       <summary>Reports a progress change.</summary>
3085       <param name="value">The value of the updated progress.</param>
3086     </member>
3087     <member name="T:System.Random">
3088       <summary>Represents a pseudo-random number generator, which is a device that produces a sequence of numbers that meet certain statistical requirements for randomness.To browse the .NET Framework source code for this type, see the Reference Source.</summary>
3089       <filterpriority>1</filterpriority>
3090     </member>
3091     <member name="M:System.Random.#ctor">
3092       <summary>Initializes a new instance of the <see cref="T:System.Random" /> class, using a time-dependent default seed value.</summary>
3093     </member>
3094     <member name="M:System.Random.#ctor(System.Int32)">
3095       <summary>Initializes a new instance of the <see cref="T:System.Random" /> class, using the specified seed value.</summary>
3096       <param name="Seed">A number used to calculate a starting value for the pseudo-random number sequence. If a negative number is specified, the absolute value of the number is used. </param>
3097     </member>
3098     <member name="M:System.Random.Next">
3099       <summary>Returns a non-negative random integer.</summary>
3100       <returns>A 32-bit signed integer that is greater than or equal to 0 and less than <see cref="F:System.Int32.MaxValue" />.</returns>
3101       <filterpriority>1</filterpriority>
3102     </member>
3103     <member name="M:System.Random.Next(System.Int32)">
3104       <summary>Returns a non-negative random integer that is less than the specified maximum.</summary>
3105       <returns>A 32-bit signed integer that is greater than or equal to 0, and less than <paramref name="maxValue" />; that is, the range of return values ordinarily includes 0 but not <paramref name="maxValue" />. However, if <paramref name="maxValue" /> equals 0, <paramref name="maxValue" /> is returned.</returns>
3106       <param name="maxValue">The exclusive upper bound of the random number to be generated. <paramref name="maxValue" /> must be greater than or equal to 0. </param>
3107       <exception cref="T:System.ArgumentOutOfRangeException">
3108         <paramref name="maxValue" /> is less than 0. </exception>
3109       <filterpriority>1</filterpriority>
3110     </member>
3111     <member name="M:System.Random.Next(System.Int32,System.Int32)">
3112       <summary>Returns a random integer that is within a specified range.</summary>
3113       <returns>A 32-bit signed integer greater than or equal to <paramref name="minValue" /> and less than <paramref name="maxValue" />; that is, the range of return values includes <paramref name="minValue" /> but not <paramref name="maxValue" />. If <paramref name="minValue" /> equals <paramref name="maxValue" />, <paramref name="minValue" /> is returned.</returns>
3114       <param name="minValue">The inclusive lower bound of the random number returned. </param>
3115       <param name="maxValue">The exclusive upper bound of the random number returned. <paramref name="maxValue" /> must be greater than or equal to <paramref name="minValue" />. </param>
3116       <exception cref="T:System.ArgumentOutOfRangeException">
3117         <paramref name="minValue" /> is greater than <paramref name="maxValue" />. </exception>
3118       <filterpriority>1</filterpriority>
3119     </member>
3120     <member name="M:System.Random.NextBytes(System.Byte[])">
3121       <summary>Fills the elements of a specified array of bytes with random numbers.</summary>
3122       <param name="buffer">An array of bytes to contain random numbers. </param>
3123       <exception cref="T:System.ArgumentNullException">
3124         <paramref name="buffer" /> is null. </exception>
3125       <filterpriority>1</filterpriority>
3126     </member>
3127     <member name="M:System.Random.NextDouble">
3128       <summary>Returns a random floating-point number that is greater than or equal to 0.0, and less than 1.0.</summary>
3129       <returns>A double-precision floating point number that is greater than or equal to 0.0, and less than 1.0.</returns>
3130       <filterpriority>1</filterpriority>
3131     </member>
3132     <member name="M:System.Random.Sample">
3133       <summary>Returns a random floating-point number between 0.0 and 1.0.</summary>
3134       <returns>A double-precision floating point number that is greater than or equal to 0.0, and less than 1.0.</returns>
3135     </member>
3136     <member name="T:System.StringComparer">
3137       <summary>Represents a string comparison operation that uses specific case and culture-based or ordinal comparison rules.</summary>
3138       <filterpriority>2</filterpriority>
3139     </member>
3140     <member name="M:System.StringComparer.#ctor">
3141       <summary>Initializes a new instance of the <see cref="T:System.StringComparer" /> class. </summary>
3142     </member>
3143     <member name="M:System.StringComparer.Compare(System.String,System.String)">
3144       <summary>When overridden in a derived class, compares two strings and returns an indication of their relative sort order.</summary>
3145       <returns>A signed integer that indicates the relative values of <paramref name="x" /> and <paramref name="y" />, as shown in the following table.ValueMeaningLess than zero<paramref name="x" /> precedes <paramref name="y" /> in the sort order.-or-<paramref name="x" /> is null and <paramref name="y" /> is not null.Zero<paramref name="x" /> is equal to <paramref name="y" />.-or-<paramref name="x" /> and <paramref name="y" /> are both null. Greater than zero<paramref name="x" /> follows <paramref name="y" /> in the sort order.-or-<paramref name="y" /> is null and <paramref name="x" /> is not null. </returns>
3146       <param name="x">A string to compare to <paramref name="y" />.</param>
3147       <param name="y">A string to compare to <paramref name="x" />.</param>
3148       <filterpriority>1</filterpriority>
3149     </member>
3150     <member name="P:System.StringComparer.CurrentCulture">
3151       <summary>Gets a <see cref="T:System.StringComparer" /> object that performs a case-sensitive string comparison using the word comparison rules of the current culture.</summary>
3152       <returns>A new <see cref="T:System.StringComparer" /> object.</returns>
3153       <filterpriority>1</filterpriority>
3154       <PermissionSet>
3155         <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" />
3156       </PermissionSet>
3157     </member>
3158     <member name="P:System.StringComparer.CurrentCultureIgnoreCase">
3159       <summary>Gets a <see cref="T:System.StringComparer" /> object that performs case-insensitive string comparisons using the word comparison rules of the current culture.</summary>
3160       <returns>A new <see cref="T:System.StringComparer" /> object.</returns>
3161       <filterpriority>1</filterpriority>
3162       <PermissionSet>
3163         <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" />
3164       </PermissionSet>
3165     </member>
3166     <member name="M:System.StringComparer.Equals(System.String,System.String)">
3167       <summary>When overridden in a derived class, indicates whether two strings are equal.</summary>
3168       <returns>true if <paramref name="x" /> and <paramref name="y" /> refer to the same object, or <paramref name="x" /> and <paramref name="y" /> are equal, or <paramref name="x" /> and <paramref name="y" /> are null; otherwise, false.</returns>
3169       <param name="x">A string to compare to <paramref name="y" />.</param>
3170       <param name="y">A string to compare to <paramref name="x" />.</param>
3171       <filterpriority>1</filterpriority>
3172     </member>
3173     <member name="M:System.StringComparer.GetHashCode(System.String)">
3174       <summary>When overridden in a derived class, gets the hash code for the specified string.</summary>
3175       <returns>A 32-bit signed hash code calculated from the value of the <paramref name="obj" /> parameter.</returns>
3176       <param name="obj">A string.</param>
3177       <exception cref="T:System.ArgumentException">Not enough memory is available to allocate the buffer that is required to compute the hash code.</exception>
3178       <exception cref="T:System.ArgumentNullException">
3179         <paramref name="obj" /> is null. </exception>
3180       <filterpriority>2</filterpriority>
3181     </member>
3182     <member name="P:System.StringComparer.Ordinal">
3183       <summary>Gets a <see cref="T:System.StringComparer" /> object that performs a case-sensitive ordinal string comparison.</summary>
3184       <returns>A <see cref="T:System.StringComparer" /> object.</returns>
3185       <filterpriority>1</filterpriority>
3186     </member>
3187     <member name="P:System.StringComparer.OrdinalIgnoreCase">
3188       <summary>Gets a <see cref="T:System.StringComparer" /> object that performs a case-insensitive ordinal string comparison.</summary>
3189       <returns>A <see cref="T:System.StringComparer" /> object.</returns>
3190       <filterpriority>1</filterpriority>
3191     </member>
3192     <member name="M:System.StringComparer.System#Collections#IComparer#Compare(System.Object,System.Object)">
3193       <summary>Compares two objects and returns a value that indicates whether one is less than, equal to, or greater than the other.</summary>
3194       <returns>A signed integer that indicates the relative values of <paramref name="x" /> and <paramref name="y" />, as shown in the following table.ValueMeaningLess than zero<paramref name="x" /> is less than <paramref name="y" />.Zero<paramref name="x" /> equals <paramref name="y" />.Greater than zero<paramref name="x" /> is greater than <paramref name="y" />.</returns>
3195       <param name="x">The first object to compare.</param>
3196       <param name="y">The second object to compare.</param>
3197       <exception cref="T:System.ArgumentException">Neither <paramref name="x" /> nor <paramref name="y" /> implements the <see cref="T:System.IComparable" /> interface.-or-<paramref name="x" /> and <paramref name="y" /> are of different types and neither one can handle comparisons with the other.</exception>
3198     </member>
3199     <member name="M:System.StringComparer.System#Collections#IEqualityComparer#Equals(System.Object,System.Object)">
3200       <summary>Determines whether the specified objects are equal.</summary>
3201       <returns>true if the specified objects are equal; otherwise, false. </returns>
3202       <param name="x">The first object to compare.</param>
3203       <param name="y">The second object to compare.</param>
3204       <exception cref="T:System.ArgumentException">
3205         <paramref name="x" /> and <paramref name="y" /> are of different types, and neither one can handle comparisons with the other. </exception>
3206     </member>
3207     <member name="M:System.StringComparer.System#Collections#IEqualityComparer#GetHashCode(System.Object)">
3208       <summary>Returns a hash code for the specified object.</summary>
3209       <returns>A hash code for the specified object. </returns>
3210       <param name="obj">The object for which a hash code is to be returned. </param>
3211       <exception cref="T:System.ArgumentNullException">The type of <paramref name="obj" /> is a reference type and <paramref name="obj" /> is null. </exception>
3212     </member>
3213     <member name="T:System.UriBuilder">
3214       <summary>Provides a custom constructor for uniform resource identifiers (URIs) and modifies URIs for the <see cref="T:System.Uri" /> class.</summary>
3215       <filterpriority>2</filterpriority>
3216     </member>
3217     <member name="M:System.UriBuilder.#ctor">
3218       <summary>Initializes a new instance of the <see cref="T:System.UriBuilder" /> class.</summary>
3219     </member>
3220     <member name="M:System.UriBuilder.#ctor(System.String)">
3221       <summary>Initializes a new instance of the <see cref="T:System.UriBuilder" /> class with the specified URI.</summary>
3222       <param name="uri">A URI string. </param>
3223       <exception cref="T:System.ArgumentNullException">
3224         <paramref name="uri" /> is null. </exception>
3225       <exception cref="T:System.UriFormatException">In the .NET for Windows Store apps or the Portable Class Library, catch the base class exception, <see cref="T:System.FormatException" />, instead.<paramref name="uri" /> is a zero length string or contains only spaces.-or- The parsing routine detected a scheme in an invalid form.-or- The parser detected more than two consecutive slashes in a URI that does not use the "file" scheme.-or- <paramref name="uri" /> is not a valid URI. </exception>
3226     </member>
3227     <member name="M:System.UriBuilder.#ctor(System.String,System.String)">
3228       <summary>Initializes a new instance of the <see cref="T:System.UriBuilder" /> class with the specified scheme and host.</summary>
3229       <param name="schemeName">An Internet access protocol. </param>
3230       <param name="hostName">A DNS-style domain name or IP address. </param>
3231     </member>
3232     <member name="M:System.UriBuilder.#ctor(System.String,System.String,System.Int32)">
3233       <summary>Initializes a new instance of the <see cref="T:System.UriBuilder" /> class with the specified scheme, host, and port.</summary>
3234       <param name="scheme">An Internet access protocol. </param>
3235       <param name="host">A DNS-style domain name or IP address. </param>
3236       <param name="portNumber">An IP port number for the service. </param>
3237       <exception cref="T:System.ArgumentOutOfRangeException">
3238         <paramref name="portNumber" /> is less than -1 or greater than 65,535. </exception>
3239     </member>
3240     <member name="M:System.UriBuilder.#ctor(System.String,System.String,System.Int32,System.String)">
3241       <summary>Initializes a new instance of the <see cref="T:System.UriBuilder" /> class with the specified scheme, host, port number, and path.</summary>
3242       <param name="scheme">An Internet access protocol. </param>
3243       <param name="host">A DNS-style domain name or IP address. </param>
3244       <param name="port">An IP port number for the service. </param>
3245       <param name="pathValue">The path to the Internet resource. </param>
3246       <exception cref="T:System.ArgumentOutOfRangeException">
3247         <paramref name="port" /> is less than -1 or greater than 65,535. </exception>
3248     </member>
3249     <member name="M:System.UriBuilder.#ctor(System.String,System.String,System.Int32,System.String,System.String)">
3250       <summary>Initializes a new instance of the <see cref="T:System.UriBuilder" /> class with the specified scheme, host, port number, path and query string or fragment identifier.</summary>
3251       <param name="scheme">An Internet access protocol. </param>
3252       <param name="host">A DNS-style domain name or IP address. </param>
3253       <param name="port">An IP port number for the service. </param>
3254       <param name="path">The path to the Internet resource. </param>
3255       <param name="extraValue">A query string or fragment identifier. </param>
3256       <exception cref="T:System.ArgumentException">
3257         <paramref name="extraValue" /> is neither null nor <see cref="F:System.String.Empty" />, nor does a valid fragment identifier begin with a number sign (#), nor a valid query string begin with a question mark (?). </exception>
3258       <exception cref="T:System.ArgumentOutOfRangeException">
3259         <paramref name="port" /> is less than -1 or greater than 65,535. </exception>
3260     </member>
3261     <member name="M:System.UriBuilder.#ctor(System.Uri)">
3262       <summary>Initializes a new instance of the <see cref="T:System.UriBuilder" /> class with the specified <see cref="T:System.Uri" /> instance.</summary>
3263       <param name="uri">An instance of the <see cref="T:System.Uri" /> class. </param>
3264       <exception cref="T:System.ArgumentNullException">
3265         <paramref name="uri" /> is null. </exception>
3266     </member>
3267     <member name="M:System.UriBuilder.Equals(System.Object)">
3268       <summary>Compares an existing <see cref="T:System.Uri" /> instance with the contents of the <see cref="T:System.UriBuilder" /> for equality.</summary>
3269       <returns>true if <paramref name="rparam" /> represents the same <see cref="T:System.Uri" /> as the <see cref="T:System.Uri" /> constructed by this <see cref="T:System.UriBuilder" /> instance; otherwise, false.</returns>
3270       <param name="rparam">The object to compare with the current instance. </param>
3271       <filterpriority>2</filterpriority>
3272     </member>
3273     <member name="P:System.UriBuilder.Fragment">
3274       <summary>Gets or sets the fragment portion of the URI.</summary>
3275       <returns>The fragment portion of the URI. The fragment identifier ("#") is added to the beginning of the fragment.</returns>
3276       <filterpriority>2</filterpriority>
3277     </member>
3278     <member name="M:System.UriBuilder.GetHashCode">
3279       <summary>Returns the hash code for the URI.</summary>
3280       <returns>The hash code generated for the URI.</returns>
3281       <filterpriority>2</filterpriority>
3282       <PermissionSet>
3283         <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" />
3284       </PermissionSet>
3285     </member>
3286     <member name="P:System.UriBuilder.Host">
3287       <summary>Gets or sets the Domain Name System (DNS) host name or IP address of a server.</summary>
3288       <returns>The DNS host name or IP address of the server.</returns>
3289       <filterpriority>1</filterpriority>
3290     </member>
3291     <member name="P:System.UriBuilder.Password">
3292       <summary>Gets or sets the password associated with the user that accesses the URI.</summary>
3293       <returns>The password of the user that accesses the URI.</returns>
3294       <filterpriority>1</filterpriority>
3295     </member>
3296     <member name="P:System.UriBuilder.Path">
3297       <summary>Gets or sets the path to the resource referenced by the URI.</summary>
3298       <returns>The path to the resource referenced by the URI.</returns>
3299       <filterpriority>1</filterpriority>
3300     </member>
3301     <member name="P:System.UriBuilder.Port">
3302       <summary>Gets or sets the port number of the URI.</summary>
3303       <returns>The port number of the URI.</returns>
3304       <exception cref="T:System.ArgumentOutOfRangeException">The port cannot be set to a value less than -1 or greater than 65,535. </exception>
3305       <filterpriority>1</filterpriority>
3306     </member>
3307     <member name="P:System.UriBuilder.Query">
3308       <summary>Gets or sets any query information included in the URI.</summary>
3309       <returns>The query information included in the URI.</returns>
3310       <filterpriority>1</filterpriority>
3311     </member>
3312     <member name="P:System.UriBuilder.Scheme">
3313       <summary>Gets or sets the scheme name of the URI.</summary>
3314       <returns>The scheme of the URI.</returns>
3315       <exception cref="T:System.ArgumentException">The scheme cannot be set to an invalid scheme name. </exception>
3316       <filterpriority>1</filterpriority>
3317     </member>
3318     <member name="M:System.UriBuilder.ToString">
3319       <summary>Returns the display string for the specified <see cref="T:System.UriBuilder" /> instance.</summary>
3320       <returns>The string that contains the unescaped display string of the <see cref="T:System.UriBuilder" />.</returns>
3321       <exception cref="T:System.UriFormatException">In the .NET for Windows Store apps or the Portable Class Library, catch the base class exception, <see cref="T:System.FormatException" />, instead.The <see cref="T:System.UriBuilder" /> instance has a bad password. </exception>
3322       <filterpriority>1</filterpriority>
3323       <PermissionSet>
3324         <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode, ControlEvidence" />
3325       </PermissionSet>
3326     </member>
3327     <member name="P:System.UriBuilder.Uri">
3328       <summary>Gets the <see cref="T:System.Uri" /> instance constructed by the specified <see cref="T:System.UriBuilder" /> instance.</summary>
3329       <returns>A <see cref="T:System.Uri" /> that contains the URI constructed by the <see cref="T:System.UriBuilder" />.</returns>
3330       <exception cref="T:System.UriFormatException">In the .NET for Windows Store apps or the Portable Class Library, catch the base class exception, <see cref="T:System.FormatException" />, instead.The URI constructed by the <see cref="T:System.UriBuilder" /> properties is invalid. </exception>
3331       <filterpriority>1</filterpriority>
3332     </member>
3333     <member name="P:System.UriBuilder.UserName">
3334       <summary>The user name associated with the user that accesses the URI.</summary>
3335       <returns>The user name of the user that accesses the URI.</returns>
3336       <filterpriority>1</filterpriority>
3337     </member>
3338     <member name="T:System.Diagnostics.Stopwatch">
3339       <summary>Provides a set of methods and properties that you can use to accurately measure elapsed time.To browse the .NET Framework source code for this type, see the Reference Source.</summary>
3340       <filterpriority>1</filterpriority>
3341     </member>
3342     <member name="M:System.Diagnostics.Stopwatch.#ctor">
3343       <summary>Initializes a new instance of the <see cref="T:System.Diagnostics.Stopwatch" /> class.</summary>
3344     </member>
3345     <member name="P:System.Diagnostics.Stopwatch.Elapsed">
3346       <summary>Gets the total elapsed time measured by the current instance.</summary>
3347       <returns>A read-only <see cref="T:System.TimeSpan" /> representing the total elapsed time measured by the current instance.</returns>
3348       <filterpriority>1</filterpriority>
3349     </member>
3350     <member name="P:System.Diagnostics.Stopwatch.ElapsedMilliseconds">
3351       <summary>Gets the total elapsed time measured by the current instance, in milliseconds.</summary>
3352       <returns>A read-only long integer representing the total number of milliseconds measured by the current instance.</returns>
3353       <filterpriority>1</filterpriority>
3354     </member>
3355     <member name="P:System.Diagnostics.Stopwatch.ElapsedTicks">
3356       <summary>Gets the total elapsed time measured by the current instance, in timer ticks.</summary>
3357       <returns>A read-only long integer representing the total number of timer ticks measured by the current instance.</returns>
3358       <filterpriority>1</filterpriority>
3359     </member>
3360     <member name="F:System.Diagnostics.Stopwatch.Frequency">
3361       <summary>Gets the frequency of the timer as the number of ticks per second. This field is read-only.</summary>
3362       <filterpriority>1</filterpriority>
3363     </member>
3364     <member name="M:System.Diagnostics.Stopwatch.GetTimestamp">
3365       <summary>Gets the current number of ticks in the timer mechanism.</summary>
3366       <returns>A long integer representing the tick counter value of the underlying timer mechanism.</returns>
3367       <filterpriority>1</filterpriority>
3368     </member>
3369     <member name="F:System.Diagnostics.Stopwatch.IsHighResolution">
3370       <summary>Indicates whether the timer is based on a high-resolution performance counter. This field is read-only.</summary>
3371       <filterpriority>1</filterpriority>
3372     </member>
3373     <member name="P:System.Diagnostics.Stopwatch.IsRunning">
3374       <summary>Gets a value indicating whether the <see cref="T:System.Diagnostics.Stopwatch" /> timer is running.</summary>
3375       <returns>true if the <see cref="T:System.Diagnostics.Stopwatch" /> instance is currently running and measuring elapsed time for an interval; otherwise, false.</returns>
3376       <filterpriority>1</filterpriority>
3377     </member>
3378     <member name="M:System.Diagnostics.Stopwatch.Reset">
3379       <summary>Stops time interval measurement and resets the elapsed time to zero.</summary>
3380       <filterpriority>1</filterpriority>
3381     </member>
3382     <member name="M:System.Diagnostics.Stopwatch.Restart">
3383       <summary>Stops time interval measurement, resets the elapsed time to zero, and starts measuring elapsed time.</summary>
3384     </member>
3385     <member name="M:System.Diagnostics.Stopwatch.Start">
3386       <summary>Starts, or resumes, measuring elapsed time for an interval.</summary>
3387       <filterpriority>1</filterpriority>
3388     </member>
3389     <member name="M:System.Diagnostics.Stopwatch.StartNew">
3390       <summary>Initializes a new <see cref="T:System.Diagnostics.Stopwatch" /> instance, sets the elapsed time property to zero, and starts measuring elapsed time.</summary>
3391       <returns>A <see cref="T:System.Diagnostics.Stopwatch" /> that has just begun measuring elapsed time.</returns>
3392       <filterpriority>1</filterpriority>
3393     </member>
3394     <member name="M:System.Diagnostics.Stopwatch.Stop">
3395       <summary>Stops measuring elapsed time for an interval.</summary>
3396       <filterpriority>1</filterpriority>
3397     </member>
3398     <member name="T:System.IO.Path">
3399       <summary>Performs operations on <see cref="T:System.String" /> instances that contain file or directory path information. These operations are performed in a cross-platform manner.To browse the .NET Framework source code for this type, see the Reference Source.</summary>
3400       <filterpriority>1</filterpriority>
3401     </member>
3402     <member name="F:System.IO.Path.AltDirectorySeparatorChar">
3403       <summary>Provides a platform-specific alternate character used to separate directory levels in a path string that reflects a hierarchical file system organization.</summary>
3404       <filterpriority>1</filterpriority>
3405     </member>
3406     <member name="M:System.IO.Path.ChangeExtension(System.String,System.String)">
3407       <summary>Changes the extension of a path string.</summary>
3408       <returns>The modified path information.On Windows-based desktop platforms, if <paramref name="path" /> is null or an empty string (""), the path information is returned unmodified. If <paramref name="extension" /> is null, the returned string contains the specified path with its extension removed. If <paramref name="path" /> has no extension, and <paramref name="extension" /> is not null, the returned path string contains <paramref name="extension" /> appended to the end of <paramref name="path" />.</returns>
3409       <param name="path">The path information to modify. The path cannot contain any of the characters defined in <see cref="M:System.IO.Path.GetInvalidPathChars" />. </param>
3410       <param name="extension">The new extension (with or without a leading period). Specify null to remove an existing extension from <paramref name="path" />. </param>
3411       <exception cref="T:System.ArgumentException">
3412         <paramref name="path" /> contains one or more of the invalid characters defined in <see cref="M:System.IO.Path.GetInvalidPathChars" />.</exception>
3413       <filterpriority>1</filterpriority>
3414     </member>
3415     <member name="M:System.IO.Path.Combine(System.String,System.String)">
3416       <summary>Combines two strings into a path.</summary>
3417       <returns>The combined paths. If one of the specified paths is a zero-length string, this method returns the other path. If <paramref name="path2" /> contains an absolute path, this method returns <paramref name="path2" />.</returns>
3418       <param name="path1">The first path to combine. </param>
3419       <param name="path2">The second path to combine. </param>
3420       <exception cref="T:System.ArgumentException">
3421         <paramref name="path1" /> or <paramref name="path2" /> contains one or more of the invalid characters defined in <see cref="M:System.IO.Path.GetInvalidPathChars" />. </exception>
3422       <exception cref="T:System.ArgumentNullException">
3423         <paramref name="path1" /> or <paramref name="path2" /> is null. </exception>
3424       <filterpriority>1</filterpriority>
3425     </member>
3426     <member name="M:System.IO.Path.Combine(System.String,System.String,System.String)">
3427       <summary>Combines three strings into a path.</summary>
3428       <returns>The combined paths.</returns>
3429       <param name="path1">The first path to combine. </param>
3430       <param name="path2">The second path to combine. </param>
3431       <param name="path3">The third path to combine.</param>
3432       <exception cref="T:System.ArgumentException">
3433         <paramref name="path1" />, <paramref name="path2" />, or <paramref name="path3" /> contains one or more of the invalid characters defined in <see cref="M:System.IO.Path.GetInvalidPathChars" />. </exception>
3434       <exception cref="T:System.ArgumentNullException">
3435         <paramref name="path1" />, <paramref name="path2" />, or <paramref name="path3" /> is null. </exception>
3436     </member>
3437     <member name="M:System.IO.Path.Combine(System.String[])">
3438       <summary>Combines an array of strings into a path.</summary>
3439       <returns>The combined paths.</returns>
3440       <param name="paths">An array of parts of the path.</param>
3441       <exception cref="T:System.ArgumentException">One of the strings in the array contains one or more of the invalid characters defined in <see cref="M:System.IO.Path.GetInvalidPathChars" />. </exception>
3442       <exception cref="T:System.ArgumentNullException">One of the strings in the array is null. </exception>
3443     </member>
3444     <member name="F:System.IO.Path.DirectorySeparatorChar">
3445       <summary>Provides a platform-specific character used to separate directory levels in a path string that reflects a hierarchical file system organization.</summary>
3446       <filterpriority>1</filterpriority>
3447     </member>
3448     <member name="M:System.IO.Path.GetDirectoryName(System.String)">
3449       <summary>Returns the directory information for the specified path string.</summary>
3450       <returns>Directory information for <paramref name="path" />, or null if <paramref name="path" /> denotes a root directory or is null. Returns <see cref="F:System.String.Empty" /> if <paramref name="path" /> does not contain directory information.</returns>
3451       <param name="path">The path of a file or directory. </param>
3452       <exception cref="T:System.ArgumentException">The <paramref name="path" /> parameter contains invalid characters, is empty, or contains only white spaces. </exception>
3453       <exception cref="T:System.IO.PathTooLongException">In the .NET for Windows Store apps or the Portable Class Library, catch the base class exception, <see cref="T:System.IO.IOException" />, instead.The <paramref name="path" /> parameter is longer than the system-defined maximum length.</exception>
3454       <filterpriority>1</filterpriority>
3455     </member>
3456     <member name="M:System.IO.Path.GetExtension(System.String)">
3457       <summary>Returns the extension of the specified path string.</summary>
3458       <returns>The extension of the specified path (including the period "."), or null, or <see cref="F:System.String.Empty" />. If <paramref name="path" /> is null, <see cref="M:System.IO.Path.GetExtension(System.String)" /> returns null. If <paramref name="path" /> does not have extension information, <see cref="M:System.IO.Path.GetExtension(System.String)" /> returns <see cref="F:System.String.Empty" />.</returns>
3459       <param name="path">The path string from which to get the extension. </param>
3460       <exception cref="T:System.ArgumentException">
3461         <paramref name="path" /> contains one or more of the invalid characters defined in <see cref="M:System.IO.Path.GetInvalidPathChars" />.  </exception>
3462       <filterpriority>1</filterpriority>
3463     </member>
3464     <member name="M:System.IO.Path.GetFileName(System.String)">
3465       <summary>Returns the file name and extension of the specified path string.</summary>
3466       <returns>The characters after the last directory character in <paramref name="path" />. If the last character of <paramref name="path" /> is a directory or volume separator character, this method returns <see cref="F:System.String.Empty" />. If <paramref name="path" /> is null, this method returns null.</returns>
3467       <param name="path">The path string from which to obtain the file name and extension. </param>
3468       <exception cref="T:System.ArgumentException">
3469         <paramref name="path" /> contains one or more of the invalid characters defined in <see cref="M:System.IO.Path.GetInvalidPathChars" />. </exception>
3470       <filterpriority>1</filterpriority>
3471     </member>
3472     <member name="M:System.IO.Path.GetFileNameWithoutExtension(System.String)">
3473       <summary>Returns the file name of the specified path string without the extension.</summary>
3474       <returns>The string returned by <see cref="M:System.IO.Path.GetFileName(System.String)" />, minus the last period (.) and all characters following it.</returns>
3475       <param name="path">The path of the file. </param>
3476       <exception cref="T:System.ArgumentException">
3477         <paramref name="path" /> contains one or more of the invalid characters defined in <see cref="M:System.IO.Path.GetInvalidPathChars" />.</exception>
3478       <filterpriority>1</filterpriority>
3479     </member>
3480     <member name="M:System.IO.Path.GetFullPath(System.String)">
3481       <summary>Returns the absolute path for the specified path string.</summary>
3482       <returns>The fully qualified location of <paramref name="path" />, such as "C:\MyFile.txt".</returns>
3483       <param name="path">The file or directory for which to obtain absolute path information. </param>
3484       <exception cref="T:System.ArgumentException">
3485         <paramref name="path" /> is a zero-length string, contains only white space, or contains one or more of the invalid characters defined in <see cref="M:System.IO.Path.GetInvalidPathChars" />.-or- The system could not retrieve the absolute path. </exception>
3486       <exception cref="T:System.Security.SecurityException">The caller does not have the required permissions. </exception>
3487       <exception cref="T:System.ArgumentNullException">
3488         <paramref name="path" /> is null. </exception>
3489       <exception cref="T:System.NotSupportedException">
3490         <paramref name="path" /> contains a colon (":") that is not part of a volume identifier (for example, "c:\"). </exception>
3491       <exception cref="T:System.IO.PathTooLongException">The specified path, file name, or both exceed the system-defined maximum length. For example, on Windows-based platforms, paths must be less than 248 characters, and file names must be less than 260 characters. </exception>
3492       <filterpriority>1</filterpriority>
3493       <PermissionSet>
3494         <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" PathDiscovery="*AllFiles*" />
3495       </PermissionSet>
3496     </member>
3497     <member name="M:System.IO.Path.GetInvalidFileNameChars">
3498       <summary>Gets an array containing the characters that are not allowed in file names.</summary>
3499       <returns>An array containing the characters that are not allowed in file names.</returns>
3500     </member>
3501     <member name="M:System.IO.Path.GetInvalidPathChars">
3502       <summary>Gets an array containing the characters that are not allowed in path names.</summary>
3503       <returns>An array containing the characters that are not allowed in path names.</returns>
3504     </member>
3505     <member name="M:System.IO.Path.GetPathRoot(System.String)">
3506       <summary>Gets the root directory information of the specified path.</summary>
3507       <returns>The root directory of <paramref name="path" />, such as "C:\", or null if <paramref name="path" /> is null, or an empty string if <paramref name="path" /> does not contain root directory information.</returns>
3508       <param name="path">The path from which to obtain root directory information. </param>
3509       <exception cref="T:System.ArgumentException">
3510         <paramref name="path" /> contains one or more of the invalid characters defined in <see cref="M:System.IO.Path.GetInvalidPathChars" />.-or- <see cref="F:System.String.Empty" /> was passed to <paramref name="path" />. </exception>
3511       <filterpriority>1</filterpriority>
3512     </member>
3513     <member name="M:System.IO.Path.GetRandomFileName">
3514       <summary>Returns a random folder name or file name.</summary>
3515       <returns>A random folder name or file name.</returns>
3516     </member>
3517     <member name="M:System.IO.Path.GetTempFileName">
3518       <summary>Creates a uniquely named, zero-byte temporary file on disk and returns the full path of that file.</summary>
3519       <returns>The full path of the temporary file.</returns>
3520       <exception cref="T:System.IO.IOException">An I/O error occurs, such as no unique temporary file name is available.- or -This method was unable to create a temporary file.</exception>
3521       <filterpriority>1</filterpriority>
3522       <PermissionSet>
3523         <IPermission class="System.Security.Permissions.EnvironmentPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" />
3524         <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" />
3525       </PermissionSet>
3526     </member>
3527     <member name="M:System.IO.Path.GetTempPath">
3528       <summary>Returns the path of the current user's temporary folder.</summary>
3529       <returns>The path to the temporary folder, ending with a backslash.</returns>
3530       <exception cref="T:System.Security.SecurityException">The caller does not have the required permissions. </exception>
3531       <filterpriority>1</filterpriority>
3532       <PermissionSet>
3533         <IPermission class="System.Security.Permissions.EnvironmentPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" />
3534       </PermissionSet>
3535     </member>
3536     <member name="M:System.IO.Path.HasExtension(System.String)">
3537       <summary>Determines whether a path includes a file name extension.</summary>
3538       <returns>true if the characters that follow the last directory separator (\\ or /) or volume separator (:) in the path include a period (.) followed by one or more characters; otherwise, false.</returns>
3539       <param name="path">The path to search for an extension. </param>
3540       <exception cref="T:System.ArgumentException">
3541         <paramref name="path" /> contains one or more of the invalid characters defined in <see cref="M:System.IO.Path.GetInvalidPathChars" />. </exception>
3542       <filterpriority>1</filterpriority>
3543     </member>
3544     <member name="M:System.IO.Path.IsPathRooted(System.String)">
3545       <summary>Gets a value indicating whether the specified path string contains a root.</summary>
3546       <returns>true if <paramref name="path" /> contains a root; otherwise, false.</returns>
3547       <param name="path">The path to test. </param>
3548       <exception cref="T:System.ArgumentException">
3549         <paramref name="path" /> contains one or more of the invalid characters defined in <see cref="M:System.IO.Path.GetInvalidPathChars" />. </exception>
3550       <filterpriority>1</filterpriority>
3551     </member>
3552     <member name="F:System.IO.Path.PathSeparator">
3553       <summary>A platform-specific separator character used to separate path strings in environment variables.</summary>
3554       <filterpriority>1</filterpriority>
3555     </member>
3556     <member name="F:System.IO.Path.VolumeSeparatorChar">
3557       <summary>Provides a platform-specific volume separator character.</summary>
3558       <filterpriority>1</filterpriority>
3559     </member>
3560     <member name="T:System.Net.WebUtility">
3561       <summary>Provides methods for encoding and decoding URLs when processing Web requests. </summary>
3562     </member>
3563     <member name="M:System.Net.WebUtility.HtmlDecode(System.String)">
3564       <summary>Converts a string that has been HTML-encoded for HTTP transmission into a decoded string.</summary>
3565       <returns>A decoded string.</returns>
3566       <param name="value">The string to decode.</param>
3567     </member>
3568     <member name="M:System.Net.WebUtility.HtmlEncode(System.String)">
3569       <summary>Converts a string to an HTML-encoded string.</summary>
3570       <returns>An encoded string.</returns>
3571       <param name="value">The string to encode.</param>
3572     </member>
3573     <member name="M:System.Net.WebUtility.UrlDecode(System.String)">
3574       <summary>Converts a string that has been encoded for transmission in a URL into a decoded string.</summary>
3575       <returns>Returns <see cref="T:System.String" />.A decoded string.</returns>
3576       <param name="encodedValue">A URL-encoded string to decode.</param>
3577     </member>
3578     <member name="M:System.Net.WebUtility.UrlDecodeToBytes(System.Byte[],System.Int32,System.Int32)">
3579       <summary>Converts an encoded byte array that has been encoded for transmission in a URL into a decoded byte array.</summary>
3580       <returns>Returns <see cref="T:System.Byte" />.A decoded <see cref="T:System.Byte" /> array.</returns>
3581       <param name="encodedValue">A URL-encoded <see cref="T:System.Byte" /> array to decode.</param>
3582       <param name="offset">The offset, in bytes, from the start of the <see cref="T:System.Byte" /> array to decode.</param>
3583       <param name="count">The count, in bytes, to decode from the <see cref="T:System.Byte" /> array.</param>
3584     </member>
3585     <member name="M:System.Net.WebUtility.UrlEncode(System.String)">
3586       <summary>Converts a text string into a URL-encoded string.</summary>
3587       <returns>Returns <see cref="T:System.String" />.A URL-encoded string.</returns>
3588       <param name="value">The text to URL-encode.</param>
3589     </member>
3590     <member name="M:System.Net.WebUtility.UrlEncodeToBytes(System.Byte[],System.Int32,System.Int32)">
3591       <summary>Converts a byte array into a URL-encoded byte array.</summary>
3592       <returns>Returns <see cref="T:System.Byte" />.An encoded <see cref="T:System.Byte" /> array.</returns>
3593       <param name="value">The <see cref="T:System.Byte" /> array to URL-encode.</param>
3594       <param name="offset">The offset, in bytes, from the start of the <see cref="T:System.Byte" /> array to encode.</param>
3595       <param name="count">The count, in bytes, to encode from the <see cref="T:System.Byte" /> array.</param>
3596     </member>
3597     <member name="T:System.Runtime.Versioning.FrameworkName">
3598       <summary>Represents the name of a version of the .NET Framework.</summary>
3599     </member>
3600     <member name="M:System.Runtime.Versioning.FrameworkName.#ctor(System.String)">
3601       <summary>Initializes a new instance of the <see cref="T:System.Runtime.Versioning.FrameworkName" /> class from a string that contains information about a version of the .NET Framework.</summary>
3602       <param name="frameworkName">A string that contains .NET Framework version information.</param>
3603       <exception cref="T:System.ArgumentException">
3604         <paramref name="frameworkName" /> is <see cref="F:System.String.Empty" />.-or-<paramref name="frameworkName" /> has fewer than two components or more than three components.-or-<paramref name="frameworkName" /> does not include a major and minor version number.-or-<paramref name="frameworkName " />does not include a valid version number.</exception>
3605       <exception cref="T:System.ArgumentNullException">
3606         <paramref name="frameworkName" /> is null.</exception>
3607     </member>
3608     <member name="M:System.Runtime.Versioning.FrameworkName.#ctor(System.String,System.Version)">
3609       <summary>Initializes a new instance of the <see cref="T:System.Runtime.Versioning.FrameworkName" /> class from a string and a <see cref="T:System.Version" /> object that identify a .NET Framework version.</summary>
3610       <param name="identifier">A string that identifies a .NET Framework version. </param>
3611       <param name="version">An object that contains .NET Framework version information.</param>
3612       <exception cref="T:System.ArgumentException">
3613         <paramref name="identifier" /> is <see cref="F:System.String.Empty" />.</exception>
3614       <exception cref="T:System.ArgumentNullException">
3615         <paramref name="identifier" /> is null.-or-<paramref name="version" /> is null.</exception>
3616     </member>
3617     <member name="M:System.Runtime.Versioning.FrameworkName.#ctor(System.String,System.Version,System.String)">
3618       <summary>Initializes a new instance of the <see cref="T:System.Runtime.Versioning.FrameworkName" /> class from a string, a <see cref="T:System.Version" /> object that identifies a .NET Framework version, and a profile name.</summary>
3619       <param name="identifier">A string that identifies a .NET Framework version.</param>
3620       <param name="version">An object that contains .NET Framework version information.</param>
3621       <param name="profile">A profile name.</param>
3622       <exception cref="T:System.ArgumentException">
3623         <paramref name="identifier" /> is <see cref="F:System.String.Empty" />.</exception>
3624       <exception cref="T:System.ArgumentNullException">
3625         <paramref name="identifier" /> is null.-or-<paramref name="version" /> is null.</exception>
3626     </member>
3627     <member name="M:System.Runtime.Versioning.FrameworkName.Equals(System.Object)">
3628       <summary>Returns a value that indicates whether this <see cref="T:System.Runtime.Versioning.FrameworkName" /> instance represents the same .NET Framework version as a specified object.</summary>
3629       <returns>true if every component of the current <see cref="T:System.Runtime.Versioning.FrameworkName" /> object matches the corresponding component of <paramref name="obj" />; otherwise, false.</returns>
3630       <param name="obj">The object to compare to the current instance.</param>
3631     </member>
3632     <member name="M:System.Runtime.Versioning.FrameworkName.Equals(System.Runtime.Versioning.FrameworkName)">
3633       <summary>Returns a value that indicates whether this <see cref="T:System.Runtime.Versioning.FrameworkName" /> instance represents the same .NET Framework version as a specified <see cref="T:System.Runtime.Versioning.FrameworkName" /> instance.</summary>
3634       <returns>true if every component of the current <see cref="T:System.Runtime.Versioning.FrameworkName" /> object matches the corresponding component of <paramref name="other" />; otherwise, false.</returns>
3635       <param name="other">The object to compare to the current instance.</param>
3636     </member>
3637     <member name="P:System.Runtime.Versioning.FrameworkName.FullName">
3638       <summary>Gets the full name of this <see cref="T:System.Runtime.Versioning.FrameworkName" /> object.</summary>
3639       <returns>The full name of this <see cref="T:System.Runtime.Versioning.FrameworkName" /> object.</returns>
3640     </member>
3641     <member name="M:System.Runtime.Versioning.FrameworkName.GetHashCode">
3642       <summary>Returns the hash code for the <see cref="T:System.Runtime.Versioning.FrameworkName" /> object.</summary>
3643       <returns>A 32-bit signed integer that represents the hash code of this instance.</returns>
3644     </member>
3645     <member name="P:System.Runtime.Versioning.FrameworkName.Identifier">
3646       <summary>Gets the identifier of this <see cref="T:System.Runtime.Versioning.FrameworkName" /> object.</summary>
3647       <returns>The identifier of this <see cref="T:System.Runtime.Versioning.FrameworkName" /> object.</returns>
3648     </member>
3649     <member name="M:System.Runtime.Versioning.FrameworkName.op_Equality(System.Runtime.Versioning.FrameworkName,System.Runtime.Versioning.FrameworkName)">
3650       <summary>Returns a value that indicates whether two <see cref="T:System.Runtime.Versioning.FrameworkName" /> objects represent the same .NET Framework version.</summary>
3651       <returns>true if the <paramref name="left" /> and <paramref name="right" /> parameters represent the same .NET Framework version; otherwise, false.</returns>
3652       <param name="left">The first object to compare.</param>
3653       <param name="right">The second object to compare.</param>
3654     </member>
3655     <member name="M:System.Runtime.Versioning.FrameworkName.op_Inequality(System.Runtime.Versioning.FrameworkName,System.Runtime.Versioning.FrameworkName)">
3656       <summary>Returns a value that indicates whether two <see cref="T:System.Runtime.Versioning.FrameworkName" /> objects represent different .NET Framework versions.</summary>
3657       <returns>true if the <paramref name="left" /> and <paramref name="right" /> parameters represent different .NET Framework versions; otherwise, false.</returns>
3658       <param name="left">The first object to compare.</param>
3659       <param name="right">The second object to compare.</param>
3660     </member>
3661     <member name="P:System.Runtime.Versioning.FrameworkName.Profile">
3662       <summary>Gets the profile name of this <see cref="T:System.Runtime.Versioning.FrameworkName" /> object.</summary>
3663       <returns>The profile name of this <see cref="T:System.Runtime.Versioning.FrameworkName" /> object.</returns>
3664     </member>
3665     <member name="M:System.Runtime.Versioning.FrameworkName.ToString">
3666       <summary>Returns the string representation of this <see cref="T:System.Runtime.Versioning.FrameworkName" /> object.</summary>
3667       <returns>A string that represents this <see cref="T:System.Runtime.Versioning.FrameworkName" /> object.</returns>
3668     </member>
3669     <member name="P:System.Runtime.Versioning.FrameworkName.Version">
3670       <summary>Gets the version of this <see cref="T:System.Runtime.Versioning.FrameworkName" /> object.</summary>
3671       <returns>An object that contains version information about this <see cref="T:System.Runtime.Versioning.FrameworkName" /> object.</returns>
3672     </member>
3673   </members>
3674 </doc>