1
に私はstring
このようになります私のMVCのアクションに投稿されたばかりしている:分割文字列は、C#
[{"property":"radius","value":"twentyfive"},{"property":"latlng","value":"40.036218,-75.51381100000003"}]
私はこのケースでtwentyfive
の半径値が必要ですが、何もすることができ、また、各緯度と経度番号なので、ここでは40.036218
と-75.51381100000003
となります。
そうのようなもの:
string filter = "[{\"property\":\"radius\",\"value\":\"twentyfive\"},{\"property\":\"latlng\",\"value\":\"40.036218,-75.51381100000003\"}]";
string radius = //whatever i need to do;
double lat = //whatever i need to do;
double lng = //whatever i need to do;
ありがとう!
を使用することができます。 –