@@ -336,9 +336,9 @@ public static explicit operator float(EDecimal bigValue) {
336
336
/// <exception cref='ArgumentNullException'>The parameter <paramref
337
337
/// name='input'/> is null.</exception>
338
338
[ System . Diagnostics . CodeAnalysis . SuppressMessage (
339
- "Microsoft.Usage" ,
340
- "CA2225" ,
341
- Justification = "Class implements an alternate method named ToByteChecked." ) ]
339
+ "Microsoft.Usage" ,
340
+ "CA2225" ,
341
+ Justification = "Class implements an alternate method named ToByteChecked." ) ]
342
342
public static explicit operator byte ( EDecimal input ) {
343
343
if ( input == null ) {
344
344
throw new ArgumentNullException ( nameof ( input ) ) ;
@@ -438,9 +438,9 @@ public static EDecimal FromSByte(sbyte inputSByte) {
438
438
/// name='input'/> is null.</exception>
439
439
[ CLSCompliant ( false ) ]
440
440
[ System . Diagnostics . CodeAnalysis . SuppressMessage (
441
- "Microsoft.Usage" ,
442
- "CA2225" ,
443
- Justification = "Class implements an alternate method named ToSByteChecked." ) ]
441
+ "Microsoft.Usage" ,
442
+ "CA2225" ,
443
+ Justification = "Class implements an alternate method named ToSByteChecked." ) ]
444
444
public static explicit operator sbyte ( EDecimal input ) {
445
445
if ( input == null ) {
446
446
throw new ArgumentNullException ( nameof ( input ) ) ;
@@ -474,9 +474,9 @@ public static implicit operator EDecimal(sbyte inputSByte) {
474
474
/// <exception cref='ArgumentNullException'>The parameter <paramref
475
475
/// name='input'/> is null.</exception>
476
476
[ System . Diagnostics . CodeAnalysis . SuppressMessage (
477
- "Microsoft.Usage" ,
478
- "CA2225" ,
479
- Justification = "Class implements an alternate method named ToInt16Checked." ) ]
477
+ "Microsoft.Usage" ,
478
+ "CA2225" ,
479
+ Justification = "Class implements an alternate method named ToInt16Checked." ) ]
480
480
public static explicit operator short ( EDecimal input ) {
481
481
if ( input == null ) {
482
482
throw new ArgumentNullException ( nameof ( input ) ) ;
@@ -580,9 +580,9 @@ public static EDecimal FromUInt16(ushort inputUInt16) {
580
580
/// name='input'/> is null.</exception>
581
581
[ CLSCompliant ( false ) ]
582
582
[ System . Diagnostics . CodeAnalysis . SuppressMessage (
583
- "Microsoft.Usage" ,
584
- "CA2225" ,
585
- Justification = "Class implements an alternate method named ToUInt16Checked." ) ]
583
+ "Microsoft.Usage" ,
584
+ "CA2225" ,
585
+ Justification = "Class implements an alternate method named ToUInt16Checked." ) ]
586
586
public static explicit operator ushort ( EDecimal input ) {
587
587
if ( input == null ) {
588
588
throw new ArgumentNullException ( nameof ( input ) ) ;
@@ -616,9 +616,9 @@ public static implicit operator EDecimal(ushort inputUInt16) {
616
616
/// <exception cref='ArgumentNullException'>The parameter <paramref
617
617
/// name='input'/> is null.</exception>
618
618
[ System . Diagnostics . CodeAnalysis . SuppressMessage (
619
- "Microsoft.Usage" ,
620
- "CA2225" ,
621
- Justification = "Class implements an alternate method named ToInt32Checked." ) ]
619
+ "Microsoft.Usage" ,
620
+ "CA2225" ,
621
+ Justification = "Class implements an alternate method named ToInt32Checked." ) ]
622
622
public static explicit operator int ( EDecimal input ) {
623
623
if ( input == null ) {
624
624
throw new ArgumentNullException ( nameof ( input ) ) ;
@@ -721,9 +721,9 @@ public static EDecimal FromUInt32(uint inputUInt32) {
721
721
/// name='input'/> is null.</exception>
722
722
[ CLSCompliant ( false ) ]
723
723
[ System . Diagnostics . CodeAnalysis . SuppressMessage (
724
- "Microsoft.Usage" ,
725
- "CA2225" ,
726
- Justification = "Class implements an alternate method named ToUInt32Checked." ) ]
724
+ "Microsoft.Usage" ,
725
+ "CA2225" ,
726
+ Justification = "Class implements an alternate method named ToUInt32Checked." ) ]
727
727
public static explicit operator uint ( EDecimal input ) {
728
728
if ( input == null ) {
729
729
throw new ArgumentNullException ( nameof ( input ) ) ;
@@ -758,9 +758,9 @@ public static implicit operator EDecimal(uint inputUInt32) {
758
758
/// <exception cref='ArgumentNullException'>The parameter <paramref
759
759
/// name='input'/> is null.</exception>
760
760
[ System . Diagnostics . CodeAnalysis . SuppressMessage (
761
- "Microsoft.Usage" ,
762
- "CA2225" ,
763
- Justification = "Class implements an alternate method named ToInt64Checked." ) ]
761
+ "Microsoft.Usage" ,
762
+ "CA2225" ,
763
+ Justification = "Class implements an alternate method named ToInt64Checked." ) ]
764
764
public static explicit operator long ( EDecimal input ) {
765
765
if ( input == null ) {
766
766
throw new ArgumentNullException ( nameof ( input ) ) ;
@@ -863,9 +863,9 @@ public static EDecimal FromUInt64(ulong inputUInt64) {
863
863
/// name='input'/> is null.</exception>
864
864
[ CLSCompliant ( false ) ]
865
865
[ System . Diagnostics . CodeAnalysis . SuppressMessage (
866
- "Microsoft.Usage" ,
867
- "CA2225" ,
868
- Justification = "Class implements an alternate method named ToUInt64Checked." ) ]
866
+ "Microsoft.Usage" ,
867
+ "CA2225" ,
868
+ Justification = "Class implements an alternate method named ToUInt64Checked." ) ]
869
869
public static explicit operator ulong ( EDecimal input ) {
870
870
if ( input == null ) {
871
871
throw new ArgumentNullException ( nameof ( input ) ) ;
0 commit comments