Search Results

1
vote

Converting vb.net to c# tips

Have you tried any code converters? Telerik has one. …
4
votes

C# VB.NET Conversion

Check out Code Converter by Telerik. …
3
votes

Which language should I pick up: VB.Net or C#

If possible, both :) If just one, then I'd go with C# myself. If you use the feature that Visual Studio 2008 added to be able to download the source for reference, you'll notice that it is …
2
votes

VB WebBrowser.DocumentText Isn’t Changing!

Try the following: browser.Navigate("about:blank") HtmlDocument doc = this.webBrowser1.Document doc.Write(String.Empty) browser.DocumentText = _emailHTML I've foun …
1
vote

How to declare an array inline in VB.NET

Dim strings As String() = New String() {"abc", "def", "ghi"} …