System.Double
Get only
The Eccentricity property provides access to a double value that gives the eccentricity of the Ellipsoid.
Private Sub GeoCalcNET_Ellipsoid_Eccentricity(ByVal ell As GeoCalcNET.Ellipsoid)
Dim ecc As Double = ell.Eccentricity
End Sub
private void GeoCalcNET_Ellipsoid_Eccentricity(GeoCalcNET.Ellipsoid ell)
{
double d = ell.Eccentricity;
}