[SerializableAttribute]
[TypeConverterAttribute(typeof(LengthConverter))]
public struct Length : IComparable, IFormattable, 
	IConvertible, IComparable<Length>, IComparable<double>, IEquatable<Length>, 
	IEquatable<double><SerializableAttribute>
<TypeConverterAttribute(GetType(LengthConverter))>
Public Structure Length
	Implements IComparable, IFormattable, IConvertible, IComparable(Of Length), 
	IComparable(Of Double), IEquatable(Of Length), IEquatable(Of Double)[SerializableAttribute]
[TypeConverterAttribute(typeof(LengthConverter))]
public value class Length : IComparable, 
	IFormattable, IConvertible, IComparable<Length>, IComparable<double>, 
	IEquatable<Length>, IEquatable<double>public double GetKilometers(Length meters)
{
    return meters / SI.Kilo;
}public double GetFeet(double inches)
{
    return Length.FromInches(inches).ToFeet();
}| Length | Creates a new Length. | 
| CompareTo(Double) | Compares this instance to a specified Double and returns an indication of their relative values. | 
| CompareTo(Length) | Compares this instance to a specified Length and returns an indication of their relative values. | 
| CompareTo(Object) | Compares this instance to a specified object and returns an indication of their relative values. | 
| ConvertFrom | Converts the value in the specified sourceUnit to a new Length in meters. | 
| ConvertTo | Converts the Length to the specified targetUnit. | 
| Equals(Double) | Returns a value indicating whether this instance is equal to a specified Double value. | 
| Equals(Length) | Returns a value indicating whether this instance is equal to a specified Length value. | 
| Equals(Object) | Returns a value indicating whether this instance is equal to a specified object. (Overrides ValueTypeEquals(Object)) | 
| FromFeet | Creates a new Length value from the specified value in feet. | 
| FromInches | Creates a new Length value from the specified value in inches. | 
| FromLightSeconds | Creates a new Length value from the specified value in light-seconds. | 
| FromMiles | Creates a new Length value from the specified value in miles. | 
| FromNauticalMiles | Creates a new Length value from the specified value in nautical miles. | 
| FromUSSurveyFeet | Creates a new Length value from the specified value in US survey feet. | 
| FromUSSurveyMiles | Creates a new Length value from the specified value in US survey miles. | 
| FromYards | Creates a new Length value from the specified value in yards. | 
| GetHashCode | Returns the hash code for this instance. (Overrides ValueTypeGetHashCode) | 
| GetType | Gets the Type of the current instance. (Inherited from Object) | 
| GetTypeCode | Returns the TypeCode for value type Double. | 
| Parse(String) | Converts the string representation of a number to its Length equivalent. | 
| Parse(String, NumberStyles) | Converts the string representation of a number in a specified style to its Length equivalent. | 
| Parse(String, IFormatProvider) | Converts the string representation of a number in a specified culture-specific format to its Length equivalent. | 
| Parse(String, NumberStyles, IFormatProvider) | Converts the string representation of a number in a specified style and culture-specific format to its Length equivalent. | 
| ToFeet | Gets the Length value in feet. | 
| ToInches | Gets the Length value in inches. | 
| ToLightSeconds | Gets the Length value in light-seconds. | 
| ToMiles | Gets the Length value in miles. | 
| ToNauticalMiles | Gets the Length value in nautical miles. | 
| ToString | Converts the numeric value of this instance to its equivalent string representation. (Overrides ValueTypeToString) | 
| ToString(IFormatProvider) | Converts the numeric value of this instance to its equivalent string representation using the specified culture-specific format information. | 
| ToString(String) | Converts the numeric value of this instance to its equivalent string representation, using the specified format. | 
| ToString(String, IFormatProvider) | Converts the numeric value of this instance to its equivalent string representation using the specified format and culture-specific format information. | 
| ToUSSurveyFeet | Gets the Length value in US survey feet. | 
| ToUSSurveyMiles | Gets the Length value in US survey miles. | 
| ToYards | Gets the Length value in yards. | 
| TryParse(String, Length) | Converts the string representation of a number to its Length equivalent. A return value indicates whether the conversion succeeded or failed. | 
| TryParse(String, NumberStyles, IFormatProvider, Length) | Converts the string representation of a number in a specified style and culture-specific format to its Length equivalent. A return value indicates whether the conversion succeeded or failed. | 
| Addition(Length, Length) | Returns computed sum of values. | 
| Division(Length, Length) | Returns computed division of values. | 
| Equality(Length, Length) | Compares the two values for equality. | 
| Exponent(Length, Length) | Returns result of first value raised to power of second value. | 
| GreaterThan(Length, Length) | Returns true if left value is greater than right value. | 
| GreaterThanOrEqual(Length, Length) | Returns true if left value is greater than or equal to right value. | 
| (Double to Length) | Implicitly converts value, represented in meters, to a Length. | 
| (Length to Double) | Implicitly converts Length, represented in meters, to a Double. | 
| Inequality(Length, Length) | Compares the two values for inequality. | 
| LessThan(Length, Length) | Returns true if left value is less than right value. | 
| LessThanOrEqual(Length, Length) | Returns true if left value is less or equal to than right value. | 
| Modulus(Length, Length) | Returns computed remainder after dividing first value by the second. | 
| Multiply(Length, Length) | Returns computed product of values. | 
| Subtraction(Length, Length) | Returns computed difference of values. | 
| MaxValue | Represents the largest possible value of an Length. This field is constant. | 
| MinValue | Represents the smallest possible value of an Length. This field is constant. | 
| GetEnumValueOrDefault | Gets the enumeration constant for value, if defined in the enumeration, or a default value. (Defined by EnumExtensions) | 
| GetEnumValueOrDefaultT | Gets the enumeration constant for this value, if defined in the enumeration, or a default value. (Defined by EnumExtensions) |