Tagged Questions
Conversion of code written in C# to Visual Basic .NET (VB.NET).
17
votes
2answers
1k views
Can VB.NET be forced to initialize instance variables BEFORE invoking the base type constructor?
After debugging a particularly tricky issue in VB.NET involving the order in which instance variables are initialized, I discovered that there is a breaking discrepancy between the behavior that I ...
7
votes
4answers
2k views
Is there a VB.NET equivalent of C# out parameters
Does VB.NET have a direct equivalent to C# out function parameters, where the variable passed into a function does not need to be initialised?
7
votes
13answers
673 views
Converting C# knowledge to VB.NET any potential problems?
I have a team with people that are quite comfortable in C# but we got a requirement to write a project in VB.net. How hard would it be to think in C# and on the fly convert to VB?
Is that doable?
...
5
votes
2answers
107 views
Can't convert this into VB.net
I'm trying to convert the following into vb.net. Thanks in advance
Categories.DataSource = objDT.Rows.Cast<DataRow>()
.Select(r => new { Attendee = ...
5
votes
4answers
318 views
What is the vb.net equivalent of the C# “is” keyword?
I need to check if a given object implements an interface. In C# I would simply say:
if (x is IFoo) { }
Is using a TryCast() and then checking for Nothing the best way?
5
votes
4answers
175 views
What is the VB.NET equivalent to this C# code?
VB.NET equivalent to this C# code?
ctx.Load(site,
x => x.Lists.Where(l => l.Title != null));
I've tried
ctx.Load(site, Function(x) x.Lists.Where(Function(l) ...
5
votes
5answers
1k views
Why use System.Threading.Interlocked.Decrement instead of minus?
I converted some c# code to vb.net and the converter.telerik.com turned this:
i--;
into this:
System.Math.Max(System.Threading.Interlocked.Decrement(i), i + 1)
Whats up with all the fancy-ness?
4
votes
2answers
91 views
Linq does not group in VB.Net
For educational purposes I tried to convert the following Linq expression from the book "Linq in action" into VB.net
Original C#
var list =
from book in SampleData.Books
group book by new { ...
4
votes
2answers
86 views
How would I convert C# delegate function to VB.Net?
Here there's an old question about this code.
xmpp.OnLogin += delegate(object o)
{
xmpp.Send(
new Message(
...
4
votes
4answers
162 views
Convert algorithm from C# to VB.NET fail
I'm trying to convert the following algorithm from C# to VB.NET and the VB.NET I have is not producing the same results as my C# algorithm, can someone tell me where I've gone wrong in my conversion?
...
4
votes
4answers
214 views
VB to C# Translation
In VB (ASP.NET)
Application("myapp")= Server.CreateObject("APP.Engine")
aa = Application("myapp").myMethod(2)
works.
In C# I tried
Application["myapp"]= Server.CreateObject("APP.Engine")
but
...
4
votes
2answers
797 views
Protected Set in VB.Net for a property defined in an interface
We have an interface, which can be grossly simplified as:
public interface IPersistable<T>
{
T Id { get; }
}
Most places that implement the interface want to have it so that there is a ...
4
votes
2answers
292 views
Overriding Events in VB
Is there a way to translate this code in VB? Most of it is easy, but I can't figure out a way to override the event handler.
public class MTObservableCollection<T> : ...
4
votes
3answers
484 views
What would be the equivalent VB.NET code for this C# FluentNHibernate component mapping?
I'm a C# programmer constrained to write VB.NET code.
While exploring NHibernate further for my current client, I encountered FluentNHibernate, which I find real attractive.
But now, I wonder how to ...
4
votes
3answers
2k views
How to insert values into VB.NET Dictionary on instantiation?
Is there a way that I can insert values into a VB.NET Dictionary when I create it? I can, but don't want to, do dict.Add(int, "string") for each item.
Basically, I want to do "How to insert values ...
3
votes
2answers
43 views
How do I convert LINQ with Group By from C# to VB.NET?
I am trying to convert the following LINQ code from C# to VB.NET. Here is the C# followed by my attempt at VB. In VB I would like to declare rowList as IEnumerable(Of IGrouping(Of Char, String)) but ...
3
votes
6answers
103 views
C# Reading from a text file
I have the following program that will send (output) information to a text file but now I want to read(input) from the text file. Any suggestions would be greatly appreciated. I have commented out a ...
3
votes
3answers
67 views
Why do `select` and `sub` have brackets around them in VB Linq expressions?
I converted the following query from C#:
src.Select((c, i) => src.Substring(i)).Count(sub => sub.StartsWith(target))
To the VB.NET query:
src.[Select](Function(c, i) ...
3
votes
2answers
322 views
Differences in LINQ syntax between VB.Net and C#
Again, just out of curiosity:
After I have programmed several projects in VB.Net I to my surprise discovered that there are some more than subtle differences between C# and VB.NET LINQ usage.
For ...
3
votes
1answer
164 views
Unable to identify some C# syntax with GPU.NET. (VB.NET Programmer)
this is my first post on Stack Overflow, so please excuse or correct any faux pas of mine. Thanks in advance.
I'm translating some example code line by line from C# to VB.NET in an effort to ...
3
votes
2answers
226 views
VB.NET Equivalent of this code
What would be the VB.NET equivalent of this code..
public virtual ICollection<Comment> Comments { get; set; }
3
votes
4answers
236 views
How to Convert this generic method from C# to VB.Net
I have the following code block in C#
private void Synchronize<T>(TextSelection selection, DependencyProperty property, Action<T> methodToCall)
{
object value = selection. ...
3
votes
3answers
244 views
C# To VB.Net Conversion - array of class objects with initialisation
can someone help me pls, im new to vb.net and im trying to work through the nhibernate firstsolution sample (written in c# re-posted here ...
3
votes
6answers
527 views
What is VB.NET Version of this Code?
if (InvokeRequired)
{
BeginInvoke(new MethodInvoker(delegate()
{
textBox1.Text = args.Fax.Port.ToString();
textBox2.Text = args.Fax.FaxStatus.ToString();
}));
}
3
votes
2answers
148 views
Constructing an object and calling a method without assignment in VB.Net
I'm not entirely sure what to call what C# does, so I haven't had any luck searching for the VB.Net equivalent syntax (if it exists, which I suspect it probably doesn't).
In c#, you can do this:
...
2
votes
1answer
84 views
Why can't Interface ReadOnly properties be overriden in VB.NET, when it is valid in C#.NET?
(this is related to this other question )
If you define an Interface where there is a Property with only a getter (= ReadOnly in VB.NET), why can you define the setter in implementing classes with C# ...
2
votes
2answers
178 views
WPF Markup Extension in VB.Net not working
I'm trying to create a VB.Net Markup Extension per this blog post but in vb.net
<Application x:Class="Application"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
...
2
votes
1answer
769 views
exchange code for token facebook-c#-sdk
I am using The Facebook-C#-Sdk v5.0.3 to create a non-canvas webforms app in vb.net and i am having trouble exchanging the returned facebook code for the access_token. Does anyone have an example (C# ...
2
votes
1answer
321 views
c# enumerable class - compatible with VBA
Can anyone instruct me on how to code a C# enumerable class such that the "for each" construct in Excel VBA works properly? I tried this out with a test class called People that implements ...
2
votes
5answers
533 views
VB.NET equivalent to C#'s using directive
I am converting some code from C# to VB.NET, and I need to know what the equivalent is for C#'s using directive.
Update: Sorry, but so far I haven't gotten my answer. Here is a C# example:
using ...
2
votes
2answers
107 views
Very Specific C# to VB.NET Conversion Problem
I am currently working on a project which uses the AutoFac Inversion of Control container.
I am attempting to convert some example code from C# into a codebase of an existing project of mine which is ...
2
votes
2answers
296 views
Help Translating a small C# WCF app into Visual Basic (part 2)
I recently asked a question about translating a code sample I found on on the internet from C# into VB and I was given links to websites that automate code translation (http://converter.telerik.com/ ...
2
votes
3answers
262 views
C# Dictionary has no Value type option?
I am coverting portions of a code project article (http://www.codeproject.com/KB/linq/auto-logging-data-context.aspx) to VB.Net for my own uses but I've run across a piece of C# code written in a way ...
2
votes
1answer
563 views
2
votes
2answers
100 views
Accessing a property in Visual Basic as opposed to C#
The C# code is:
DataContext db = new DataContext(MyProject.Properties.Settings.Default.MyString)
I am trying to convert this app to VB.NET but VB.NET does not seem to have a .Properties on the ...
2
votes
2answers
179 views
Multiassignment in VB like in C-Style languages
Is there a way to perform this in VB.NET like in the C-Style languages:
struct Thickness
{
double _Left;
double _Right;
double _Top;
double _Bottom;
public Thickness(double ...
2
votes
3answers
394 views
Need help translating C# to VB
I am looking at this blog, and I am trying to translate the snippet to VB.
I'm having difficulties with this line:
NotifyCollectionChangedEventHandler handlers = this.CollectionChanged;
NOTE: ...
2
votes
4answers
252 views
Need to convert C# to VB.NET
I have some C# source code that I got off the Internet and I want it in VB.NET. How would you convert it because I don't know C#.
2
votes
6answers
3k views
VB.net: What is static T (C#) in VB.net?
public static T GetValueOrDefault<T>(this IDataReader reader, string columnName)
T returnValue = default(T);
Hello, I want to implement something like this
to check DBNull. I can follow the ...
1
vote
1answer
90 views
How to convert C# keyword yield to VB.NET? [closed]
Possible Duplicates:
Translation of yield into VB.NET
Yield In VB.NET
I try to convert the C# yield to VB.NET but i found there is no yield in VB.NET
anyone pls ?
Public Function ...
1
vote
4answers
112 views
Converting bitwise and/not from VB.net to C#
Original Code (VB.net):
curStyle = curStyle And (Not ES_NUMBER)
Changed Code (C#):
curStyle = curStyle & (!ES_NUMBER);
But it is giving me this error:
Operator '!' cannot be applied to ...
1
vote
3answers
172 views
.NET Serial Port Woes. Converting C# Code to VB
I'm having trouble with the SerialPort function intermittently crashing while data logging for several days. It's been a hard problem to debug and I would like to try Zach Saw's fix which he talks ...
1
vote
2answers
136 views
operator++ in VB.NET - Interlocked.Increment
Per the discussion here, one of the answers seems to imply that by using a code converter from C# to VB.NET, that the operator++ applied to an int should be replaced by ...
1
vote
1answer
176 views
How can I integrate MS-access UI with .Net web environment
We have a legacy software which was built in MS-Access (UI) but was using Sqlserver 2005 as database server.
The UI in Ms-Access has got Menus with different menu-items. But some of the menu-items ...
1
vote
3answers
926 views
Does VB.NET support automatic getters and setters on properties?
In C# I can do this:
public string myProperty { get; private set; }
This is referred to as an "automatic getter/setter" (from what I've heard). Does VB.NET support these? So far, with my ...
1
vote
5answers
228 views
C# to VB: Class.Event += (sender, args) => FunctionName(params)
I'm trying to convert the C# code from this webpage to VB.
Everything seems to have converted pretty much fine using an online converter tool, but then I reach the following line:
...
1
vote
2answers
253 views
Help with using SQL select statement in C#
I am trying to retrieve some rows from the database using simple SELECT statement in SQL and displaying them in a Data Grid, Now what I have to do is to multiply the retrieved values with some factor ...
1
vote
3answers
83 views
Unexpected result from this code
I have an object declared as:
private string SourceProgram;
Basically i am trying to parse some stuff using the code below:
private void LabelScan(System.IO.BinaryWriter OutputFile, bool ...
1
vote
3answers
344 views
What is the VB.NET equivalent of this C# code? (convert ascii string to Hex)
public static string AsciiToHex(string asciiString)
{
string hex = "";
StringBuilder sBuffer = new StringBuilder();
for (int i = 0; i < ...
1
vote
4answers
250 views
VB.net Main method not executing
I've taken up learning vb.net having come from a C# background.
I was trying to reprogram a simple C# winforms program I had, which took command line parameters to determine what it did. In C#, there ...