c#-to-vb.net

    0熱度

    2回答

    我第一次使用庫Renci.SshNet.dll。我下載了2014.4.6-beta2版本。 我想SSH連接到服務器。當然,連接使用我的登錄名和密碼與Putty協同工作。 這裏是我的代碼: Dim PWAuthMeth = New PasswordAuthenticationMethod(Login, Password) Dim KIAuthMeth = New KeyboardInteracti

    -1熱度

    1回答

    我不能將此代碼轉換爲vb.net。請幫幫我。謝謝。 using System; using System.ComponentModel; using System.Runtime.CompilerServices; namespace RssReader.Common { /// <summary> /// Provides a standard change-notificatio

    1熱度

    1回答

    我是編程新手。我想改變System的聲音的性別和年齡。在VB.NET中演講。類似這樣的問題 How I can change the voice synthesizer gender and age in C# 所以,我很困惑如何將此代碼申報VB.NET foreach (var v in synthesizer.GetInstalledVoices().Select(v => v.VoiceIn

    4熱度

    1回答

    我想在VB.net中使用DWORD WINAPI GetMessagePos(void)函數。 函數返回一個DWORD(32位),它可以存儲在VB.net整型變量中。從MSDN文檔引用: x座標位於返回值的低位;在 y座標處於高位短(兩者都代表簽署價值 ,因爲他們可以利用負值的系統上有多個 顯示器) 我怎樣才能檢索到的X和Y座標用vb.net? 我目前正在 <System.Runtime.Inte

    -1熱度

    1回答

    hello evry one並感謝您的幫助,我真的需要將此C#lambda表達式轉換爲VB.NET嗎? var res = (from v in initialList group v by v.entityId into grp select grp.OrderByDescending(v => v.gpsDate).First()).ToList()

    -2熱度

    1回答

    我從這裏找到例子是工作的罰款寫了FileSystemWatcher的,沿着線: Public monitor As FileSystemWatcher monitor = New System.IO.FileSystemWatcher() monitor.Path = c:\temp\ monitor.NotifyFilter = IO.NotifyFilters.DirectoryName

    -3熱度

    4回答

    我是一個學習.NET的初學者。 我試圖在控制檯readline中解析我的整數,但它顯示一個格式異常。 我的代碼: using System; namespace inputoutput { class Program { static void Main() { string firstname; string las

    0熱度

    1回答

    我有一些C#代碼正在做異步調用並拉回數據集。我這樣做是爲了讓Windows桌面用戶界面在檢索時不掛起/凍結。我現在需要在vb.net中做同樣的事情,但通過在線代碼轉換器後,它給了我錯誤。 委託'Func(Of String,Boolean,DataSet)'需要'AddressOf'表達式或lambda表達式作爲其構造函數的唯一參數。 這是轉換前後的代碼。 前: var DataFunc = ne

    0熱度

    3回答

    我從來沒有真正學過VB.NET,你會如何在VB.NET中編寫它? 下面是代碼: System.IO.StreamReader file = new System.IO.StreamReader(ofd_tracking_file.FileName); while ((line = file.ReadLine()) != null) { } 難道是這樣嗎? Dim file As Syst

    0熱度

    2回答

    什麼是VB.NET相當於此代碼 void foo() { ... { //anonymous code block starts here ... } //anonymous code block ends here }