Class Structure
Stellt Methoden zur strukturellen Beschaffenheit von numerischen Werten zur Verfügung
Inheritance
Inherited Members
Namespace: Dataport.AppFrameDotNet.DotNetTools.Numeric.Extensions
Assembly: Dataport.AppFrameDotNet.DotNetTools.dll
Syntax
public static class Structure
Methods
CountDigits(Decimal)
Zählt die Anzahl der Ziffern innerhalb der Zahl, die vor dem Komma stehen.
Declaration
public static int CountDigits(this decimal i)
Parameters
Type | Name | Description |
---|---|---|
System.Decimal | i | Die zu prüfende Zahl. |
Returns
Type | Description |
---|---|
System.Int32 | Die Anzahl der Ziffern. |
CountDigits(Double)
Zählt die Anzahl der Ziffern innerhalb der Zahl, die vor dem Komma stehen.
Declaration
public static int CountDigits(this double i)
Parameters
Type | Name | Description |
---|---|---|
System.Double | i | Die zu prüfende Zahl. |
Returns
Type | Description |
---|---|
System.Int32 | Die Anzahl der Ziffern. |
CountDigits(Int16)
Zählt die Anzahl der Ziffern innerhalb der Zahl.
Declaration
public static int CountDigits(this short i)
Parameters
Type | Name | Description |
---|---|---|
System.Int16 | i | Die zu prüfende Zahl. |
Returns
Type | Description |
---|---|
System.Int32 | Die Anzahl der Ziffern. |
CountDigits(Int32)
Zählt die Anzahl der Ziffern innerhalb der Zahl.
Declaration
public static int CountDigits(this int i)
Parameters
Type | Name | Description |
---|---|---|
System.Int32 | i | Die zu prüfende Zahl. |
Returns
Type | Description |
---|---|
System.Int32 | Die Anzahl der Ziffern. |
CountDigits(Int64)
Zählt die Anzahl der Ziffern innerhalb der Zahl.
Declaration
public static int CountDigits(this long i)
Parameters
Type | Name | Description |
---|---|---|
System.Int64 | i | Die zu prüfende Zahl. |
Returns
Type | Description |
---|---|
System.Int32 | Die Anzahl der Ziffern. |
CountDigits(Single)
Zählt die Anzahl der Ziffern innerhalb der Zahl, die vor dem Komma stehen.
Declaration
public static int CountDigits(this float i)
Parameters
Type | Name | Description |
---|---|---|
System.Single | i | Die zu prüfende Zahl. |
Returns
Type | Description |
---|---|
System.Int32 | Die Anzahl der Ziffern. |
CountDigitsDecimal(Decimal)
Zählt die Anzahl der Dezimalstellen innerhalb der Zahl.
Declaration
public static int CountDigitsDecimal(this decimal i)
Parameters
Type | Name | Description |
---|---|---|
System.Decimal | i | Die zu prüfende Zahl. |
Returns
Type | Description |
---|---|
System.Int32 | Die Anzahl der Ziffern. |
CountDigitsDecimal(Double)
Zählt die Anzahl der Dezimalstellen innerhalb der Zahl.
Declaration
public static int CountDigitsDecimal(this double i)
Parameters
Type | Name | Description |
---|---|---|
System.Double | i | Die zu prüfende Zahl. |
Returns
Type | Description |
---|---|
System.Int32 | Die Anzahl der Ziffern. |
CountDigitsDecimal(Single)
Zählt die Anzahl der Dezimalstellen innerhalb der Zahl.
Declaration
public static int CountDigitsDecimal(this float i)
Parameters
Type | Name | Description |
---|---|---|
System.Single | i | Die zu prüfende Zahl. |
Returns
Type | Description |
---|---|
System.Int32 | Die Anzahl der Ziffern. |