Tagged Questions

Conversion of code written in Visual Basic .NET (VB.NET) to C#

learn more… | top users | synonyms

9
votes
3answers
130 views

Binary Shift Differences between VB.NET and C#

I just found an interesting problem between translating some data: VB.NET: CByte(4) << 8 Returns 4 But C#: (byte)4 << 8 Returns 1024 Namely, why does VB.NET: (CByte(4) << ...
8
votes
11answers
2k views

VB to C# Functions

Which are the equivalent of the following operators from VB.Net to C#? UBound() LBound() IsNothing() Chr() Len() UCase() LCase() Left() Right() RTrim() LTrim() Trim() Mid() Replace() Split() ...
5
votes
2answers
110 views

VB.Net Identical Case Condition

I am converting some vb.net code to c# - as I am more comfortable with it and it helps me in resolving issues faster. However, I came across this code which is NOT an error in vb.net - but converting ...
5
votes
4answers
564 views

What is the C# equivalent of ChrW(e.KeyCode)?

In VB.NET 2008, I used the following statement: MyKeyChr = ChrW(e.KeyCode) Now I want to convert the above statement into C#. Any Ideas?
5
votes
1answer
6k views

VB.NET WithEvents keyword behavior - VB.NET compiler restriction?

I'm working on becoming as familiar with C# as I am with VB.NET (the language used at my workplace). One of the best things about the learning process is that by learning about the other language you ...
4
votes
1answer
72 views

VB Linq to C# Linq

Please help me to convert it to C# equivalent Dim dtData As DataTable = Session("Data") Dim aFilters = From oRow In dtData _ Where oRow(i_oColumn.BaseColumnName) IsNot DBNull.Value _ Select sFilter ...
4
votes
3answers
1k views

Nothing equals String.Empty, null does not equal String.Empty, what am I missing here?

This must've have been asked before but I couldn't locate it. In a mixed code project (VB and C#) we were debugging some old Visual Basic code where a statement as follows could be found: If ...
4
votes
3answers
2k views

VB.NET Select…Case Statement Equivalent in C#

I just started using C# and I've got a couple of issues. Is there any way to code the C# equivalent of the VB.NET Select statement like the following? Select Object.Name.ToString() Case "Name1" ...
3
votes
2answers
84 views

Looping through httpcache c#

On VB.NET I can do things like this to write out all the keys in the cache: Dim oc As HttpContext = HttpContext.Current For Each c As Object In oc.Cache oc.Response.Write(c.Key.ToString()) Next ...
3
votes
2answers
76 views

Problem with Sum in c#

I've got a LINQ query in VB: Dim ss = _someClassDataSource.Sum(Function(s) TryCast(s, SomeClass).BreakdownCover) where BreakdownCover's type is string. When I'm trying rewrite it in C#: var ss = ...
3
votes
6answers
922 views

What is the best alternative “On Error Resume Next” for c#?

if i put empty catch blocks for my c# code, is it going to be an equivalent for vb.net's "On Error Resume Next" statement try { C# code; } catch(exception) { } -- Edit (Updated Reason) -- the ...
3
votes
3answers
239 views

Convert VB.NET code to C#

Is there a library that I can use to convert VB.Net code into C#? There is http://codeconverter.sharpdevelop.net/ but i don't want to use it from a web service.
2
votes
1answer
73 views

Microsoft.VisualBasic.DateAndTime to C#

I have a set of vb.net classes and functions that heavily rely on the DateAndTime available in the Microsoft.VisualBasic namespace. Anyone knows if exists a "conversion table" for ...
2
votes
3answers
86 views

Problem with operator in c#

I'm converting vb code to c# There is enum from telerik library: namespace Telerik.Windows.Controls { // Summary: // Provides flags for enumerating the ViewModes supported by ...
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
5answers
194 views

Any VB 'With' analog in C#? [closed]

Possible Duplicate: C# equivalent for VB keyword: with … end with ? VB.NET With Alpha.Beta.Gama.Eta.Zeta a = .ZetaPropertyA b = .ZetaPropertyB c = .ZetaPropertyC End ...
2
votes
5answers
349 views

Equivalent of Format of VB in C#

What will be the equivalent code for Format(iCryptedByte, "000") (VB.NET) in C# ? Thanks.
2
votes
5answers
209 views

C# Book or Resource for VB.Net developers?

Bascially, i'm looking for a book or resource to learn C#, given that i already know VB.NET and have known for years. What I'm Not looking for: Now, just to be clear, i'm not looking for VB6 to ...
2
votes
3answers
717 views

Implications in using VB.NET method DateAndTime.DateDiff with C#

I'm building a new ASP.NET web application based on a legacy one (Classic ASP). The people, who build this code 4, 5 years ago, used a lot of VBScript functions like DateDiff. I'm currently working ...
1
vote
2answers
59 views

VB.NET to C#: Using Data-Binding methods on object

In VB.NET I created 2 shorthand functions for data binding gridviews/dropdownlists/etc from any datasource (such as a DataReader or IReader or collection, etc): Public Shared Sub BindObject(ByVal ...
1
vote
2answers
68 views

Converting inerface with delegate from vb to c#

I've got interface: Public Interface ICSIItem Sub Initialize() Event AnswerValueChanged(ByVal sender As Object, ByVal e As NotebookAnswerChangedEventArgs) Property DataContext() As ...
1
vote
3answers
150 views

How to convert code in Vb to c#

This is code in vb.net Protected Overrides ReadOnly Property CreateParams() As CreateParams Get Dim CP As CreateParams = MyBase.CreateParams CP.Style = &HA0000 Return CP ...
1
vote
8answers
153 views

How to convert vb.net coded to WORKING c# code?

Hi I want to convert the code at Webcam using DirectShow.NET to C#. It works perfectly in vb.net. I tried converting using an online converter, however I got about 30 errors, Any suggestions to what ...
1
vote
4answers
732 views

C# internal VS VBNET Friend

To this SO question: What is the C# equivalent of friend?, I would personally have answered "internal", just like Ja did among the answers! However, Jon Skeet says that there is no direct equivalence ...
1
vote
1answer
494 views

ByRef underlined with “Expression Expected” error in VB.Net when trying to pass in a object of type List(Of clsFooDetail)

I work with C# 99% of the time. However, I'm having to update some legacy VB.Net code and encountering an issue with VB.Net code syntax. The error that I get is "ByRef" is underlined and "Expected ...
1
vote
1answer
224 views

Linq - Convert VB.Net to C# help with on query

We're slowly converting some code from VB.Net to C#, so I'm trying to learn the correct syntax in C#. Could someone help with this conversion? Basically I pull from a view all values that have not ...
0
votes
1answer
48 views

Converting linq-to-xml query from vb to c#

Could you help Dim ScriptDOC As XDocument ScriptDOC = XDocument.Parse(e.Result) Dim Result = From ele In XElement.Parse(ScriptDOC.ToString).Elements("HANDERDETAILS") If ...
0
votes
4answers
86 views

developerfusion.com not very good at converting VB.NET to C#

I currently have the following code: <%@ WebService Language="C#" Class="Notifications" %> using System; using System.Web; using System.Web.Services; using System.Web.Script; using ...
0
votes
3answers
79 views

Problems converting VB.NET to C#

I am trying to convert some vb.net to C#, but I keep getting errors. At the moment, I am getting the following error: The name 'Strings' does not exist in the current context The problem line is: ...
0
votes
3answers
203 views

Alternative to VB.NET's Type Conversion functions (CBool) in C#?

Is there any alternative to VB's CBool keyword in C#? What about all the other functions? CBool will turn to a Boolean any valid boolean: 0, "False", null etc.
0
votes
3answers
324 views

How do I use FileOpen (vb.net) in C#? How do I convert this code?

So, I'm working on converting this code: FileOpen(1, Application.StartupPath & "\Stub.exe", _ OpenMode.Binary, OpenAccess.Read, OpenShare.Default) From VB.NET to C#.NET. I've used a series ...
0
votes
3answers
101 views

Need help to convert vb code to c#

I want to crop an image retrieved from the database. I found the following code on the net but it is in vb. I am doing asp.net c# based web page and i have no idea about vb Can anyone take pain to ...
0
votes
2answers
75 views

How to convert below function to C#

How can the method below be converted to C#? private int GetTotalNumberLines() { // be safe about the array int size = 0; if (mLines == null) { size = -1; } else { ...
0
votes
2answers
639 views

VB.NET TO C# - Gridview Code behind for a search from a listbox w a stored procedure

I am looking for the correct code behind syntax in C# for displaying Search Results from multiple parameters in Gridview. I just did something similar in VB.NET but I have to update a project in ...
0
votes
1answer
790 views

What is the C# equivalent of CType in VB.NET?

I am trying to convert the example provided in this MSDN article (http://msdn.microsoft.com/en-us/library/aa479330.aspx) to C#, but am stuck at the following code: CType(dq, ...
0
votes
3answers
222 views

Silverlight c# socket

Has anyone gotten a silverlight socket application to run successfully over the internet? Like have a console server that listens for client. The client uses silverlight sockets where users can go on ...
0
votes
2answers
47 views

Getting type from an object in C#

What is wrong in this code? .. public void gett(object dato, ref object ty) { dato = 1; // <- this compiles Type t = typeof(dato); //<--- here i Got an error if (t == ...
0
votes
1answer
131 views

Exclude file from compile configuration

I'm trying to setup the configuration from my project. I currently use my project to connect to different ip addresses. I would like to include the ip address that is in a seperate file for ...
0
votes
3answers
110 views

How to create dll in vb.net

i am using vb.net 2008 and i want to make dll that will be use in c# project. please help me.....
0
votes
4answers
156 views

Convert from VB.NET to C#

In C# you can not have indexed properties. That said, how do I convert the following code from VB.net to C#? Private _PatchSpectrum(49) As Double Public ReadOnly Property GetPatchSpectrum() As ...
0
votes
1answer
227 views

Convert vb.net event with multiple event arguements to c#

I'm in the process of transplanting a unit test written in vb.net to the larger project written in c#. However, this little ditty has me looking for help. Public Sub object_DataChange(ByVal ...
0
votes
2answers
160 views

Translate this VB.Net LinQ statement to C#, having trouble

If Not IsPostBack Then Dim q=From f In System.Drawing.FontFamily.Families _ Select f.Name ListBox1.DataSource = q ListBox1.DataBind() End If I'm new to LinQ and I'm following a VB.Net tutorial so I ...
-1
votes
3answers
103 views

How do I translate this VB.NET assignment to C#?

I usually program in VB.NET, but am trying to use C#. In VB.NET, if form1 has a toolStripButton1 and in UserControl I usually write like this: Dim first As New form1 first.toolStripButton1.enable ...
-6
votes
2answers
114 views

How to convert the following VB code to C#? [closed]

Public Function ToBase36(ByVal IBase36 As Double) As String Dim Base36() As String = {"0", "1", "2", "3", "4", "5", "6", "7", "8", "9", "A", "B", "C", "D", ...