0
我有問題將以下代碼轉換爲vb.net。 iam可以在wp8上直播sdk 5.6,我還可以使用其他一些可以與vb.net一起使用的示例嗎?Onedrive訪問和VB.Net
private async void GetMe()
{
try
{
LiveOperationResult operationResult = await this.liveClient.GetAsync("me");
dynamic properties = operationResult.Result;
this.tbResponse.Text = properties.first_name + " " + properties.last_name;
}
catch (LiveConnectException e)
{
this.tbResponse.Text = e.ToString();
}
}