예제 #1
0
 /// <summary>
 /// Constructs a <see cref="TemperatureUnit"/> from a string.
 /// Leading and trailing whitespace characters are allowed.
 /// </summary>
 /// <param name="text"></param>
 /// <returns>An instance of <see cref="TemperatureUnit"/></returns>
 public static TemperatureUnit Parse(string text)
 {
     return(UnitParser <TemperatureUnit> .Parse(text));
 }
예제 #2
0
 /// <summary>
 /// Constructs a <see cref="ConductivityUnit"/> from a string.
 /// Leading and trailing whitespace characters are allowed.
 /// </summary>
 /// <param name="text">The text representation of this unit.</param>
 /// <returns>An instance of <see cref="ConductivityUnit"/></returns>
 public static ConductivityUnit Parse(string text)
 {
     return(UnitParser <ConductivityUnit> .Parse(text));
 }
예제 #3
0
 public static CatalyticActivityUnit Parse(string text)
 {
     return(UnitParser <CatalyticActivityUnit> .Parse(text));
 }
 /// <summary>
 /// Constructs a <see cref="KinematicViscosityUnit"/> from a string.
 /// Leading and trailing whitespace characters are allowed.
 /// </summary>
 /// <param name="text"></param>
 /// <returns>An instance of <see cref="KinematicViscosityUnit"/></returns>
 public static KinematicViscosityUnit Parse(string text)
 {
     return(UnitParser <KinematicViscosityUnit> .Parse(text));
 }
예제 #5
0
 /// <summary>
 /// Constructs a <see cref="ForceUnit"/> from a string.
 /// Leading and trailing whitespace characters are allowed.
 /// </summary>
 /// <param name="text">The text representation of this unit.</param>
 /// <returns>An instance of <see cref="ForceUnit"/></returns>
 public static ForceUnit Parse(string text)
 {
     return(UnitParser <ForceUnit> .Parse(text));
 }
예제 #6
0
 /// <summary>
 /// Constructs a <see cref="UnitlessUnit"/> from a string.
 /// Leading and trailing whitespace characters are allowed.
 /// </summary>
 /// <param name="text">The text representation of this unit.</param>
 /// <returns>An instance of <see cref="UnitlessUnit"/></returns>
 public static UnitlessUnit Parse(string text)
 {
     return(UnitParser <UnitlessUnit> .Parse(text));
 }
예제 #7
0
 /// <summary>
 /// Constructs a <see cref="PressureUnit"/> from a string.
 /// Leading and trailing whitespace characters are allowed.
 /// </summary>
 /// <param name="text"></param>
 /// <returns>An instance of <see cref="PressureUnit"/></returns>
 public static PressureUnit Parse(string text)
 {
     return(UnitParser <PressureUnit> .Parse(text));
 }
예제 #8
0
 /// <summary>
 /// Constructs a <see cref="VoltageUnit"/> from a string.
 /// Leading and trailing whitespace characters are allowed.
 /// </summary>
 /// <param name="text"></param>
 /// <returns>An instance of <see cref="VoltageUnit"/></returns>
 public static VoltageUnit Parse(string text)
 {
     return(UnitParser <VoltageUnit> .Parse(text));
 }
예제 #9
0
 /// <summary>
 /// Constructs a <see cref="PowerUnit"/> from a string.
 /// Leading and trailing whitespace characters are allowed.
 /// </summary>
 /// <param name="text"></param>
 /// <returns>An instance of <see cref="PowerUnit"/></returns>
 public static PowerUnit Parse(string text)
 {
     return(UnitParser <PowerUnit> .Parse(text));
 }
 /// <summary>
 /// Constructs a <see cref="MagneticFieldStrengthUnit"/> from a string.
 /// Leading and trailing whitespace characters are allowed.
 /// </summary>
 /// <param name="text">The text representation of this unit.</param>
 /// <returns>An instance of <see cref="MagneticFieldStrengthUnit"/></returns>
 public static MagneticFieldStrengthUnit Parse(string text)
 {
     return(UnitParser <MagneticFieldStrengthUnit> .Parse(text));
 }
 public static ElectricalConductanceUnit Parse(string text)
 {
     return(UnitParser <ElectricalConductanceUnit> .Parse(text));
 }
예제 #12
0
 public static InductanceUnit Parse(string text)
 {
     return(UnitParser <InductanceUnit> .Parse(text));
 }
예제 #13
0
 /// <summary>
 /// Constructs a <see cref="MomentumUnit"/> from a string.
 /// Leading and trailing whitespace characters are allowed.
 /// </summary>
 /// <param name="text"></param>
 /// <returns>An instance of <see cref="MomentumUnit"/></returns>
 public static MomentumUnit Parse(string text)
 {
     return(UnitParser <MomentumUnit> .Parse(text));
 }
예제 #14
0
 /// <summary>
 /// Constructs a <see cref="CurrentUnit"/> from a string.
 /// Leading and trailing whitespace characters are allowed.
 /// </summary>
 /// <param name="text"></param>
 /// <returns>An instance of <see cref="CurrentUnit"/></returns>
 public static CurrentUnit Parse(string text)
 {
     return(UnitParser <CurrentUnit> .Parse(text));
 }
예제 #15
0
 /// <summary>
 /// Constructs a <see cref="JerkUnit"/> from a string.
 /// Leading and trailing whitespace characters are allowed.
 /// </summary>
 /// <param name="text">The text representation of this unit.</param>
 /// <returns>An instance of <see cref="JerkUnit"/></returns>
 public static JerkUnit Parse(string text)
 {
     return(UnitParser <JerkUnit> .Parse(text));
 }
예제 #16
0
 /// <summary>
 /// Constructs a <see cref="MolarMassUnit"/> from a string.
 /// Leading and trailing whitespace characters are allowed.
 /// </summary>
 /// <param name="text">The text representation of this unit.</param>
 /// <returns>An instance of <see cref="MolarMassUnit"/></returns>
 public static MolarMassUnit Parse(string text)
 {
     return(UnitParser <MolarMassUnit> .Parse(text));
 }
예제 #17
0
 public static WavenumberUnit Parse(string text)
 {
     return(UnitParser <WavenumberUnit> .Parse(text));
 }
예제 #18
0
 /// <summary>
 /// Constructs a <see cref="AngularSpeedUnit"/> from a string.
 /// Leading and trailing whitespace characters are allowed.
 /// </summary>
 /// <param name="text">The text representation of this unit.</param>
 /// <returns>An instance of <see cref="AngularSpeedUnit"/></returns>
 public static AngularSpeedUnit Parse(string text)
 {
     return(UnitParser <AngularSpeedUnit> .Parse(text));
 }
예제 #19
0
 /// <summary>
 /// Constructs a <see cref="ResistanceUnit"/> from a string.
 /// Leading and trailing whitespace characters are allowed.
 /// </summary>
 /// <param name="text">The text representation of this unit.</param>
 /// <returns>An instance of <see cref="ResistanceUnit"/></returns>
 public static ResistanceUnit Parse(string text)
 {
     return(UnitParser <ResistanceUnit> .Parse(text));
 }
예제 #20
0
 /// <summary>
 /// Constructs a <see cref="FlexibilityUnit"/> from a string.
 /// Leading and trailing whitespace characters are allowed.
 /// </summary>
 /// <param name="text"></param>
 /// <returns>An instance of <see cref="FlexibilityUnit"/></returns>
 public static FlexibilityUnit Parse(string text)
 {
     return(UnitParser <FlexibilityUnit> .Parse(text));
 }
예제 #21
0
 /// <summary>
 /// Constructs a <see cref="AccelerationUnit"/> from a string.
 /// Leading and trailing whitespace characters are allowed.
 /// </summary>
 /// <param name="text"></param>
 /// <returns>An instance of <see cref="AccelerationUnit"/></returns>
 public static AccelerationUnit Parse(string text)
 {
     return(UnitParser <AccelerationUnit> .Parse(text));
 }
예제 #22
0
 /// <summary>
 /// Constructs a <see cref="CapacitanceUnit"/> from a string.
 /// Leading and trailing whitespace characters are allowed.
 /// </summary>
 /// <param name="text">The text representation of this unit.</param>
 /// <returns>An instance of <see cref="CapacitanceUnit"/></returns>
 public static CapacitanceUnit Parse(string text)
 {
     return(UnitParser <CapacitanceUnit> .Parse(text));
 }
 /// <summary>
 /// Constructs a <see cref="AmountOfSubstanceUnit"/> from a string.
 /// Leading and trailing whitespace characters are allowed.
 /// </summary>
 /// <param name="text">The text representation of this unit.</param>
 /// <returns>An instance of <see cref="AmountOfSubstanceUnit"/></returns>
 public static AmountOfSubstanceUnit Parse(string text)
 {
     return(UnitParser <AmountOfSubstanceUnit> .Parse(text));
 }
예제 #24
0
 /// <summary>
 /// Constructs a <see cref="MassFlowUnit"/> from a string.
 /// Leading and trailing whitespace characters are allowed.
 /// </summary>
 /// <param name="text">The text representation of this unit.</param>
 /// <returns>An instance of <see cref="MassFlowUnit"/></returns>
 public static MassFlowUnit Parse(string text)
 {
     return(UnitParser <MassFlowUnit> .Parse(text));
 }
예제 #25
0
 /// <summary>
 /// Constructs a <see cref="FrequencyUnit"/> from a string.
 /// Leading and trailing whitespace characters are allowed.
 /// </summary>
 /// <param name="text">The text representation of this unit.</param>
 /// <returns>An instance of <see cref="FrequencyUnit"/></returns>
 public static FrequencyUnit Parse(string text)
 {
     return(UnitParser <FrequencyUnit> .Parse(text));
 }
예제 #26
0
 public static SpeedUnit Parse(string text)
 {
     return(UnitParser <SpeedUnit> .Parse(text));
 }
 public static LuminousIntensityUnit Parse(string text)
 {
     return(UnitParser <LuminousIntensityUnit> .Parse(text));
 }
예제 #28
0
 /// <summary>
 /// Constructs a <see cref="EnergyUnit"/> from a string.
 /// Leading and trailing whitespace characters are allowed.
 /// </summary>
 /// <param name="text"></param>
 /// <returns>An instance of <see cref="EnergyUnit"/></returns>
 public static EnergyUnit Parse(string text)
 {
     return(UnitParser <EnergyUnit> .Parse(text));
 }
예제 #29
0
 public static DensityUnit Parse(string text)
 {
     return(UnitParser <DensityUnit> .Parse(text));
 }
예제 #30
0
 public static AngleUnit Parse(string text)
 {
     return(UnitParser <AngleUnit> .Parse(text));
 }