0
我需要使用Google BigQuery API查詢Google Big Query表。我正在使用Visual Studio 2012與VB.NET。我在C#中找到了一個示例代碼,我可以使用C#在Visual Studio 2012中進行一些小改動。用於從Big Query讀取數據的示例VB.Net代碼
參考:Google BigQuery with .NET documentation/ samples
我需要VB.NET中的代碼,所以我轉換的代碼VB.Net和除了下面的代碼行一切編譯罰款。
// Get the auth URL in C# that works fine:
IAuthorizationState state = new AuthorizationState(new[] { BigqueryService.Scopes.Bigquery.GetStringValue() });
' Get the auth URL in VB.NET that is giving an error 「Type expected」 :
Dim state As IAuthorizationState = New AuthorizationState(New() {BigqueryService.Scopes.Bigquery.GetStringValue()})
Visual Studio在VB.NET中給代碼提供錯誤「類型預期」。任何人都知道VB.NET中這條代碼的正確語法是什麼?
您應該發佈一些代碼示例,並縮小答案的範圍。通常這個網站不歡迎像「給我看代碼」或「爲我寫代碼」這樣的問題。顯示一些努力,你會得到回報! :) – 2013-02-19 13:05:53