@@ -336,9 +336,9 @@ public static explicit operator float(EDecimal bigValue) {
336336 /// <exception cref='ArgumentNullException'>The parameter <paramref
337337 /// name='input'/> is null.</exception>
338338 [ 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." ) ]
342342 public static explicit operator byte ( EDecimal input ) {
343343 if ( input == null ) {
344344 throw new ArgumentNullException ( nameof ( input ) ) ;
@@ -438,9 +438,9 @@ public static EDecimal FromSByte(sbyte inputSByte) {
438438 /// name='input'/> is null.</exception>
439439 [ CLSCompliant ( false ) ]
440440 [ 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." ) ]
444444 public static explicit operator sbyte ( EDecimal input ) {
445445 if ( input == null ) {
446446 throw new ArgumentNullException ( nameof ( input ) ) ;
@@ -474,9 +474,9 @@ public static implicit operator EDecimal(sbyte inputSByte) {
474474 /// <exception cref='ArgumentNullException'>The parameter <paramref
475475 /// name='input'/> is null.</exception>
476476 [ 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." ) ]
480480 public static explicit operator short ( EDecimal input ) {
481481 if ( input == null ) {
482482 throw new ArgumentNullException ( nameof ( input ) ) ;
@@ -580,9 +580,9 @@ public static EDecimal FromUInt16(ushort inputUInt16) {
580580 /// name='input'/> is null.</exception>
581581 [ CLSCompliant ( false ) ]
582582 [ 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." ) ]
586586 public static explicit operator ushort ( EDecimal input ) {
587587 if ( input == null ) {
588588 throw new ArgumentNullException ( nameof ( input ) ) ;
@@ -616,9 +616,9 @@ public static implicit operator EDecimal(ushort inputUInt16) {
616616 /// <exception cref='ArgumentNullException'>The parameter <paramref
617617 /// name='input'/> is null.</exception>
618618 [ 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." ) ]
622622 public static explicit operator int ( EDecimal input ) {
623623 if ( input == null ) {
624624 throw new ArgumentNullException ( nameof ( input ) ) ;
@@ -721,9 +721,9 @@ public static EDecimal FromUInt32(uint inputUInt32) {
721721 /// name='input'/> is null.</exception>
722722 [ CLSCompliant ( false ) ]
723723 [ 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." ) ]
727727 public static explicit operator uint ( EDecimal input ) {
728728 if ( input == null ) {
729729 throw new ArgumentNullException ( nameof ( input ) ) ;
@@ -758,9 +758,9 @@ public static implicit operator EDecimal(uint inputUInt32) {
758758 /// <exception cref='ArgumentNullException'>The parameter <paramref
759759 /// name='input'/> is null.</exception>
760760 [ 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." ) ]
764764 public static explicit operator long ( EDecimal input ) {
765765 if ( input == null ) {
766766 throw new ArgumentNullException ( nameof ( input ) ) ;
@@ -863,9 +863,9 @@ public static EDecimal FromUInt64(ulong inputUInt64) {
863863 /// name='input'/> is null.</exception>
864864 [ CLSCompliant ( false ) ]
865865 [ 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." ) ]
869869 public static explicit operator ulong ( EDecimal input ) {
870870 if ( input == null ) {
871871 throw new ArgumentNullException ( nameof ( input ) ) ;
0 commit comments