Tagged Questions
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 ...
9
votes
1answer
197 views
Convert vs. CType
I am somewhat confused about presence of two seemingly identical VB.NET functions: CType(args) and Convert.ToType(args). I'm fairly new to .NET and VB in general, so I'm not quite sure whether one of ...
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 ...
4
votes
5answers
2k views
Casting in VB.Net
I would like to be able to cast a value dynamically where the type is known only on runtime.
something like this
myvalue = ctype (value, "String, Integer or Boolean")
the string that contains the ...
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 ...
2
votes
1answer
680 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
3answers
139 views
Invalid Types in VB.NET
I have a function which returns a list of products and a page which displays then, but when I try to load the list on the page, I get a cryptic error:
[A]System.Collections.Generic.List`1[Product] ...
0
votes
1answer
323 views
asp.net access user control in vb class
i have a usercontrol named filebox (which wraps a fileupload and some related stuff)
in a certain .net class i have need to use this type as a ctype
but i cant seem to call ctype(aobject,filebox)
...
0
votes
3answers
650 views
Beginner: Fastest way to cast/copy byte() into single()
I've got a byte() array returned as result of directx sound capture, but for other parts of my program I want to treat the results as single(). Is trundling down the array item by item the fastest way ...
-1
votes
0answers
14 views
How do vb.net implement directcast and ctype
It looks like directcast require actual implementation or inheritance and success. It looks to me the way it is implemented is that vb.net will simply change the pointer type without bother changing ...
-1
votes
1answer
44 views
Ctype casting to Decimal returning negative value
I am wondering if this is a bug. Can't understand why would CType work this way...!