Struct Dimension
Physical dimension.
public record struct Dimension : IEquatable<Dimension>
- Implements
- Inherited Members
Properties
AmountOfSubstance
The dimensions of amount of substance.
public sbyte AmountOfSubstance { readonly get; set; }
Property Value
ElectricCurrent
The dimensions of electric current.
public sbyte ElectricCurrent { readonly get; set; }
Property Value
Length
The dimensions of length.
public sbyte Length { readonly get; set; }
Property Value
LuminousIntensity
The dimensions of luminous intensity.
public sbyte LuminousIntensity { readonly get; set; }
Property Value
Mass
The dimensions of mass.
public sbyte Mass { readonly get; set; }
Property Value
ThermodynamicTemperature
The dimensions of thermodynamic temperature.
public sbyte ThermodynamicTemperature { readonly get; set; }
Property Value
Time
The dimensions of time.
public sbyte Time { readonly get; set; }
Property Value
Methods
Divide(Dimension, Dimension)
Returns the division of a dimension divided by another.
public static Dimension Divide(Dimension left, Dimension right)
Parameters
Returns
- Dimension
- The division of
leftdivided byright.
Multiply(Dimension, Dimension)
Returns the multiplication of two dimensions.
public static Dimension Multiply(Dimension left, Dimension right)
Parameters
Returns
- Dimension
- The multiplication of the two dimensions.
ToString()
Returns the fully qualified type name of this instance.
public override readonly string ToString()
Returns
- string
- The fully qualified type name.
Operators
operator /(Dimension, Dimension)
Returns the division of a dimension divided by another.
public static Dimension operator /(Dimension left, Dimension right)
Parameters
Returns
- Dimension
- The division of
leftdivided byright.
operator *(Dimension, Dimension)
Returns the multiplication of two dimensions.
public static Dimension operator *(Dimension left, Dimension right)
Parameters
Returns
- Dimension
- The multiplication of the two dimensions.