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