Public Sub New()
public AngularUnit()
Constructs a new AngularUnit instance. By default, the UnitsPerDegree property is set to 1, thus making the newly constructed AngularUnit the same as degrees.
Private Sub GeoCalcNET_AngularUnit()
Dim au As New GeoCalcNET.AngularUnit
au.Abbreviation = "deg"
End Sub
private void GeoCalcNET_AngularUnit()
{
GeoCalcNET.AngularUnit au = new GeoCalcNET.AngularUnit();
au.Abbreviation = "deg";
}