17 implementations of ToUInt32
mscorlib (17)
system\boolean.cs (1)
271
uint IConvertible.
ToUInt32
(IFormatProvider provider) {
system\byte.cs (1)
224
uint IConvertible.
ToUInt32
(IFormatProvider provider) {
system\char.cs (1)
469
uint IConvertible.
ToUInt32
(IFormatProvider provider) {
system\datetime.cs (1)
1614
uint IConvertible.
ToUInt32
(IFormatProvider provider) {
system\dbnull.cs (1)
83
uint IConvertible.
ToUInt32
(IFormatProvider provider) {
system\decimal.cs (1)
1237
uint IConvertible.
ToUInt32
(IFormatProvider provider) {
system\double.cs (1)
338
uint IConvertible.
ToUInt32
(IFormatProvider provider) {
system\enum.cs (1)
994
uint IConvertible.
ToUInt32
(IFormatProvider provider)
system\int16.cs (1)
237
uint IConvertible.
ToUInt32
(IFormatProvider provider) {
system\int32.cs (1)
210
uint IConvertible.
ToUInt32
(IFormatProvider provider) {
system\int64.cs (1)
189
uint IConvertible.
ToUInt32
(IFormatProvider provider) {
system\sbyte.cs (1)
245
uint IConvertible.
ToUInt32
(IFormatProvider provider) {
system\single.cs (1)
308
uint IConvertible.
ToUInt32
(IFormatProvider provider) {
system\string.cs (1)
3400
uint IConvertible.
ToUInt32
(IFormatProvider provider) {
system\uint16.cs (1)
212
uint IConvertible.
ToUInt32
(IFormatProvider provider) {
system\uint32.cs (1)
194
uint IConvertible.
ToUInt32
(IFormatProvider provider) {
system\uint64.cs (1)
189
uint IConvertible.
ToUInt32
(IFormatProvider provider) {
13 references to ToUInt32
mscorlib (9)
system\convert.cs (6)
235
return v.
ToUInt32
(provider);
292
return value.
ToUInt32
(provider);
363
return ic.
ToUInt32
(provider);
1137
return value == null? 0: ((IConvertible)value).
ToUInt32
(null);
1142
return value == null? 0: ((IConvertible)value).
ToUInt32
(provider);
1244
return ((IConvertible)value).
ToUInt32
(null);
system\variant.cs (3)
496
v = new Variant(ic.
ToUInt32
(provider));
664
v = new Variant(iv.
ToUInt32
(provider));
680
v = new Variant(iv.
ToUInt32
(provider));
System.AddIn.Contract (1)
System\Addin\Contract\RemoteArgument.cs (1)
280
uintToUse = convertibleValue.
ToUInt32
(null);
System.Data (3)
fx\src\data\System\Data\Common\SQLConvert.cs (1)
586
return ((IConvertible)(string)value).
ToUInt32
(formatProvider);
fx\src\data\System\Data\Common\UInt32Storage.cs (2)
179
value = ((IConvertible)value).
ToUInt32
(FormatProvider);
208
values[record] = ((IConvertible)value).
ToUInt32
(FormatProvider);