Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Units_Engine/Convert/Acceleration/Acceleration.cs
Original file line number Diff line number Diff line change
Expand Up @@ -91,10 +91,10 @@ public static double ToAcceleration(this double metresPerSecondSquared, object u
}

/***************************************************/
/**** Private Methods ****/
/**** Internal Methods ****/
/***************************************************/

private static UNU.AccelerationUnit? ToAccelerationUnit(object unit)
internal static UNU.AccelerationUnit? ToAccelerationUnit(object unit)
{
if (unit == null || unit.ToString() == null)
return null;
Expand Down
4 changes: 2 additions & 2 deletions Units_Engine/Convert/Angle/Angle.cs
Original file line number Diff line number Diff line change
Expand Up @@ -92,10 +92,10 @@ public static double ToAngle(this double radian, object unit)
}

/***************************************************/
/**** Private Methods ****/
/**** Internal Methods ****/
/***************************************************/

private static UNU.AngleUnit? ToAngleUnit(object unit)
internal static UNU.AngleUnit? ToAngleUnit(object unit)
{
if (unit == null || unit.ToString() == null)
return null;
Expand Down
4 changes: 2 additions & 2 deletions Units_Engine/Convert/Area/Area.cs
Original file line number Diff line number Diff line change
Expand Up @@ -91,10 +91,10 @@ public static double ToArea(this double squareMetres, object unit)
}

/***************************************************/
/**** Private Methods ****/
/**** Internal Methods ****/
/***************************************************/

private static UNU.AreaUnit? ToAreaUnit(object unit)
internal static UNU.AreaUnit? ToAreaUnit(object unit)
{
if (unit == null || unit.ToString() == null)
return null;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -91,10 +91,10 @@ public static double ToAreaMomentOfInertia(this double metresToTheFourth, object
}

/***************************************************/
/**** Private Methods ****/
/**** Internal Methods ****/
/***************************************************/

private static UNU.AreaMomentOfInertiaUnit? ToAreaMomentOfInertiaUnit(object unit)
internal static UNU.AreaMomentOfInertiaUnit? ToAreaMomentOfInertiaUnit(object unit)
{
if (unit == null || unit.ToString() == null)
return null;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -91,10 +91,10 @@ public static double ToCoefficientOfThermalExpansion(this double inverseDeltaKel
}

/***************************************************/
/**** Private Methods ****/
/**** Internal Methods ****/
/***************************************************/

private static UNU.CoefficientOfThermalExpansionUnit? ToCoefficientOfThermalExpansionUnit(object unit)
internal static UNU.CoefficientOfThermalExpansionUnit? ToCoefficientOfThermalExpansionUnit(object unit)
{
if (unit == null || unit.ToString() == null)
return null;
Expand Down
4 changes: 2 additions & 2 deletions Units_Engine/Convert/Density/Density.cs
Original file line number Diff line number Diff line change
Expand Up @@ -91,10 +91,10 @@ public static double ToDensity(this double kilogramPerCubicMetres, object unit)
}

/***************************************************/
/**** Private Methods ****/
/**** Internal Methods ****/
/***************************************************/

private static UNU.DensityUnit? ToDensityUnit(object unit)
internal static UNU.DensityUnit? ToDensityUnit(object unit)
{
if (unit == null || unit.ToString() == null)
return null;
Expand Down
4 changes: 2 additions & 2 deletions Units_Engine/Convert/Duration/Duration.cs
Original file line number Diff line number Diff line change
Expand Up @@ -88,10 +88,10 @@ public static double ToDuration(this double seconds, object unit)
}

/***************************************************/
/**** Private Methods ****/
/**** Internal Methods ****/
/***************************************************/

private static UNU.DurationUnit? ToDurationUnit(object unit)
internal static UNU.DurationUnit? ToDurationUnit(object unit)
{
if (unit == null || unit.ToString() == null)
return null;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -92,10 +92,10 @@ public static double ToElectricConductivity(this double siemensPerMetre, object
}

/***************************************************/
/**** Private Methods ****/
/**** Internal Methods ****/
/***************************************************/

private static UNU.ElectricConductivityUnit? ToElectricConductivityUnit(object unit)
internal static UNU.ElectricConductivityUnit? ToElectricConductivityUnit(object unit)
{
if (unit == null || unit.ToString() == null)
return null;
Expand Down
4 changes: 2 additions & 2 deletions Units_Engine/Convert/Energy/Energy.cs
Original file line number Diff line number Diff line change
Expand Up @@ -92,10 +92,10 @@ public static double ToEnergy(this double joule, object unit)
}

/***************************************************/
/**** Private Methods ****/
/**** Internal Methods ****/
/***************************************************/

private static UNU.EnergyUnit? ToEnergyUnit(object unit)
internal static UNU.EnergyUnit? ToEnergyUnit(object unit)
{
if (unit == null || unit.ToString() == null)
return null;
Expand Down
4 changes: 2 additions & 2 deletions Units_Engine/Convert/Force/Force.cs
Original file line number Diff line number Diff line change
Expand Up @@ -92,10 +92,10 @@ public static double ToForce(this double newtons, object unit)
}

/***************************************************/
/**** Private Methods ****/
/**** Internal Methods ****/
/***************************************************/

private static UNU.ForceUnit? ToForceUnit(object unit)
internal static UNU.ForceUnit? ToForceUnit(object unit)
{
if (unit == null || unit.ToString() == null)
return null;
Expand Down
4 changes: 2 additions & 2 deletions Units_Engine/Convert/ForcePerLength/ForcePerLength.cs
Original file line number Diff line number Diff line change
Expand Up @@ -91,10 +91,10 @@ public static double ToForcePerLength(this double newtonPerMetre, object unit)
}

/***************************************************/
/**** Private Methods ****/
/**** Internal Methods ****/
/***************************************************/

private static UNU.ForcePerLengthUnit? ToForcePerLengthUnit(object unit)
internal static UNU.ForcePerLengthUnit? ToForcePerLengthUnit(object unit)
{
if (unit == null || unit.ToString() == null)
return null;
Expand Down
4 changes: 2 additions & 2 deletions Units_Engine/Convert/Length/Length.cs
Original file line number Diff line number Diff line change
Expand Up @@ -91,10 +91,10 @@ public static double ToLength(this double metres, object unit)
}

/***************************************************/
/**** Private Methods ****/
/**** Internal Methods ****/
/***************************************************/

private static UNU.LengthUnit? ToLengthUnit(object unit)
internal static UNU.LengthUnit? ToLengthUnit(object unit)
{
if (unit == null || unit.ToString() == null)
return null;
Expand Down
4 changes: 2 additions & 2 deletions Units_Engine/Convert/Mass/Mass.cs
Original file line number Diff line number Diff line change
Expand Up @@ -91,10 +91,10 @@ public static double ToMass(this double kilogram, object unit)
}

/***************************************************/
/**** Private Methods ****/
/**** Internal Methods ****/
/***************************************************/

private static UNU.MassUnit? ToMassUnit(object unit)
internal static UNU.MassUnit? ToMassUnit(object unit)
{
if (unit == null || unit.ToString() == null)
return null;
Expand Down
4 changes: 2 additions & 2 deletions Units_Engine/Convert/MassFraction/MassFraction.cs
Original file line number Diff line number Diff line change
Expand Up @@ -86,9 +86,9 @@ public static double ToMassFraction(this double kilogramsPerKilogram, object uni
}

/***************************************************/
/**** Private Methods ****/
/**** Internal Methods ****/
/***************************************************/
private static UNU.MassFractionUnit? ToMassFractionUnit(object unit)
internal static UNU.MassFractionUnit? ToMassFractionUnit(object unit)
{
if (unit == null || unit.ToString() == null)
return null;
Expand Down
4 changes: 2 additions & 2 deletions Units_Engine/Convert/Molality/Molality.cs
Original file line number Diff line number Diff line change
Expand Up @@ -88,10 +88,10 @@ public static double ToMolality(this double molePerKilograms, object unit)
}

/***************************************************/
/**** Private Methods ****/
/**** Internal Methods ****/
/***************************************************/

private static UNU.MolalityUnit? ToMolalityUnit(object unit)
internal static UNU.MolalityUnit? ToMolalityUnit(object unit)
{
if (unit == null || unit.ToString() == null)
return null;
Expand Down
4 changes: 2 additions & 2 deletions Units_Engine/Convert/MomentPerLength/MomentPerLength.cs
Original file line number Diff line number Diff line change
Expand Up @@ -91,10 +91,10 @@ public static double ToMomentPerLength(this double newtonMeterPerMeter, object u
}

/***************************************************/
/**** Private Methods ****/
/**** Internal Methods ****/
/***************************************************/

private static UNU.TorquePerLengthUnit? ToTorquePerLengthUnit(object unit)
internal static UNU.TorquePerLengthUnit? ToTorquePerLengthUnit(object unit)
{
if (unit == null || unit.ToString() == null)
return null;
Expand Down
4 changes: 2 additions & 2 deletions Units_Engine/Convert/Pressure/Pressure.cs
Original file line number Diff line number Diff line change
Expand Up @@ -91,10 +91,10 @@ public static double ToPressure(this double pascal, object unit)
}

/***************************************************/
/**** Private Methods ****/
/**** Internal Methods ****/
/***************************************************/

private static UNU.PressureUnit? ToPressureUnit(this object unit)
internal static UNU.PressureUnit? ToPressureUnit(object unit)
{
if (unit == null || unit.ToString() == null)
return null;
Expand Down
4 changes: 2 additions & 2 deletions Units_Engine/Convert/Speed/Speed.cs
Original file line number Diff line number Diff line change
Expand Up @@ -91,10 +91,10 @@ public static double ToSpeed(this double metresPerSecond, object unit)
}

/***************************************************/
/**** Private Methods ****/
/**** Internal Methods ****/
/***************************************************/

private static UNU.SpeedUnit? ToSpeedUnit(object unit)
internal static UNU.SpeedUnit? ToSpeedUnit(object unit)
{
if (unit == null || unit.ToString() == null)
return null;
Expand Down
4 changes: 2 additions & 2 deletions Units_Engine/Convert/Temperature/Temperature.cs
Original file line number Diff line number Diff line change
Expand Up @@ -91,10 +91,10 @@ public static double ToTemperature(this double celsius, object unit)
}

/***************************************************/
/**** Private Methods ****/
/**** Internal Methods ****/
/***************************************************/

private static UNU.TemperatureUnit? ToTemperatureUnit(object unit)
internal static UNU.TemperatureUnit? ToTemperatureUnit(object unit)
{
if (unit == null || unit.ToString() == null)
return null;
Expand Down
4 changes: 2 additions & 2 deletions Units_Engine/Convert/TemperatureDelta/TemperatureDelta.cs
Original file line number Diff line number Diff line change
Expand Up @@ -91,10 +91,10 @@ public static double ToTemperatureDelta(this double kelvin, object unit)
}

/***************************************************/
/**** Private Methods ****/
/**** Internal Methods ****/
/***************************************************/

private static UNU.TemperatureDeltaUnit? ToTemperatureDeltaUnit(object unit)
internal static UNU.TemperatureDeltaUnit? ToTemperatureDeltaUnit(object unit)
{
if (unit == null || unit.ToString() == null)
return null;
Expand Down
4 changes: 2 additions & 2 deletions Units_Engine/Convert/Torque/Torque.cs
Original file line number Diff line number Diff line change
Expand Up @@ -92,10 +92,10 @@ public static double ToTorque(this double newtonMeter, object unit)
}

/***************************************************/
/**** Private Methods ****/
/**** Internal Methods ****/
/***************************************************/

private static UNU.TorqueUnit? ToTorqueUnit(object unit)
internal static UNU.TorqueUnit? ToTorqueUnit(object unit)
{
if (unit == null || unit.ToString() == null)
return null;
Expand Down
4 changes: 2 additions & 2 deletions Units_Engine/Convert/Volume/Volume.cs
Original file line number Diff line number Diff line change
Expand Up @@ -88,10 +88,10 @@ public static double ToVolume(this double cubicMeter, object unit)
}

/***************************************************/
/**** Private Methods ****/
/**** Internal Methods ****/
/***************************************************/

private static UNU.VolumeUnit? ToVolumeUnit(object unit)
internal static UNU.VolumeUnit? ToVolumeUnit(object unit)
{
if (unit == null || unit.ToString() == null)
return null;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -85,10 +85,10 @@ public static double ToWarpingMomentOfInertia(this double metresToTheSixth, obje
}

/***************************************************/
/**** Private Methods ****/
/**** Internal Methods ****/
/***************************************************/

private static UNU.WarpingMomentOfInertiaUnit? ToWarpingMomentOfInertiaUnit(object unit)
internal static UNU.WarpingMomentOfInertiaUnit? ToWarpingMomentOfInertiaUnit(object unit)
{
if (unit == null || unit.ToString() == null)
return null;
Expand Down
Loading
Loading