コード例 #1
0
ファイル: Reference.cs プロジェクト: Centre-It/DeepEarth
 /// <remarks/>
 public void GetGreatCircleDistancesAsync(LatLong[] latLongs) {
     this.GetGreatCircleDistancesAsync(latLongs, null);
 }
コード例 #2
0
ファイル: Reference.cs プロジェクト: Centre-It/DeepEarth
 /// <remarks/>
 public void GetGreatCircleDistancesAsync(LatLong[] latLongs, object userState) {
     if ((this.GetGreatCircleDistancesOperationCompleted == null)) {
         this.GetGreatCircleDistancesOperationCompleted = new System.Threading.SendOrPostCallback(this.OnGetGreatCircleDistancesOperationCompleted);
     }
     this.InvokeAsync("GetGreatCircleDistances", new object[] {
                 latLongs}, this.GetGreatCircleDistancesOperationCompleted, userState);
 }
コード例 #3
0
ファイル: Reference.cs プロジェクト: Centre-It/DeepEarth
 public double[] GetGreatCircleDistances(LatLong[] latLongs) {
     object[] results = this.Invoke("GetGreatCircleDistances", new object[] {
                 latLongs});
     return ((double[])(results[0]));
 }