Definition at line 3407 of file Decimal.cs.
3408 {
3410 {
3411 result = (byte)(
object)
value;
3412 return true;
3413 }
3415 {
3416 result = (char)(
object)
value;
3417 return true;
3418 }
3420 {
3421 result = (decimal)(
object)
value;
3422 return true;
3423 }
3425 {
3426 result = (decimal)(
double)(object)
value;
3427 return true;
3428 }
3430 {
3432 return true;
3433 }
3435 {
3436 result = (int)(
object)
value;
3437 return true;
3438 }
3440 {
3441 result = (long)(
object)
value;
3442 return true;
3443 }
3445 {
3446 result = (long)(IntPtr)(object)
value;
3447 return true;
3448 }
3450 {
3451 result = (sbyte)(
object)
value;
3452 return true;
3453 }
3455 {
3456 result = (decimal)(
float)(object)
value;
3457 return true;
3458 }
3460 {
3461 result = (ushort)(
object)
value;
3462 return true;
3463 }
3465 {
3466 result = (uint)(
object)
value;
3467 return true;
3468 }
3470 {
3471 result = (ulong)(
object)
value;
3472 return true;
3473 }
3475 {
3476 result = (ulong)(UIntPtr)(object)
value;
3477 return true;
3478 }
3479 ThrowHelper.ThrowNotSupportedException();
3480 result = default(decimal);
3481 return false;
3482 }
References System.Runtime.Serialization.Dictionary, System.ThrowHelper.ThrowNotSupportedException(), and System.value.