Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

23
votes
10answers
4k views

C#'s equivalent to VB.Net's DirectCast?

This has probably been asked before, but if it has, I can't find it. Does C# have an equivalent to VB.Net's DirectCast? I am aware that it has () casts and the 'as' keyword, but those line up to CType ...
10
votes
3answers
4k views

Casting DataTypes with DirectCast, CType, TryCast

Ever since I moved from VB6 to VB.NET somewhere in 2005, I've been using CType to do casting from one data type to another. I do this because it is simply faster to type, used to exist in VB6 and I do ...
6
votes
2answers
2k views

Difference between DirectCast() and CType() in VB.Net

I am an experienced C/C++/C# programmer who has just gotten into VB.NET. I generally use CType (and CInt, CBool, CStr) for casts because it is less characters and was the first way of casting which I ...
3
votes
2answers
54 views

How can I do C style casting in VB.NET?

I have a object type variable (control .Tag) that I need to cast to a structured type, and change a member in. This is a contrived but representative example: Public Structure struct_COLOURS Dim ...
3
votes
1answer
106 views

How to get Resharper to show a Refactoring that it already has

Whenever Resharper encounters code like this: (treeListNode.Tag as GridLine).AdvertiserSeparation = 5; it presents you with a possible fix (since treeListNode.Tag as GridLine might be null). It ...
2
votes
1answer
682 views

Directcast & Ctype differences with enums

Public Enum Fruit Red_Apple = 1 Oranges Ripe_Banana End Enum Private Sub InitCombosRegular() Dim d1 As New Dictionary(Of Int16, String) For Each e In ...
1
vote
1answer
221 views

DirectCast not accepting valid casts at compiletime (VB.NET)

How come this is not a valid DirectCast: Public Sub FB(OF T0 As IGH_Goo, T1 As IGH_Goo) _ (ByVal A As DataTree(Of T0), _ ByVal B As DataTree(Of T1)) Dim val_A As T1 = ...
0
votes
2answers
50 views

'objType' is not defined… Actually, it is, so why is this happening?

As you seen in this picture below, for some reason my DirectCast wont except ANYTHING for the second argument. It says it requires a type, but, it won't take any object at all! Thanks for any ...
0
votes
1answer
116 views

changing the properties of dynamically created labels with a press of a button

I have made a program wherein you the labels are dynamically created with a press of a button. if you press on the label, the label would then change color from white to blue. my problem is that how ...
0
votes
4answers
220 views

vb.net string to object

i need help in casting a string into an object(which is a parameter of a procedure). i also tried Ctype but it didnt work. Public Sub procName(lbl1 as Label, lbl2 as Label, lbl3 as Label) 'supposed i ...
0
votes
1answer
242 views

DirectCast(False, Nullable(Of Boolean)) error

I took some code from a C# project and put it into a converter. The original code was: (Nullable<bool>)false and the converter said the VB equivalent is: DirectCast(False, Nullable(Of ...
0
votes
1answer
234 views

DetailView error: Object reference not set to an instance of an object

I am trying to update a user information and get the following error: Object reference not set to an instance of an object. Description: An unhandled exception occurred during the execution ...
0
votes
2answers
246 views

directcast in vb.net

i have 1 a.master page and 1 b.aspx with its b.aspx.vb page. I have the following property in the a.master.vb Public Property Page_Title() As String Get Return title_div.InnerHtml End ...
0
votes
2answers
152 views

Implicit VB performance question

Sometimes I have to implement an interface or inherit a virtual (MustInherit) that the base method expects an object, whilst I know that the value I will be passing will always be an Integer for ...
0
votes
2answers
667 views

Can I programmatically set the object type for a DirectCast command?

I'm helping a colleague develop a "catch all" type error handler for some controls his application. What he wants to do is pass the object that has the error, and the type of that object, such a ...