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 ...
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 ...
2
votes
2answers
259 views

How to return a function pointer from CPython to Python then call a C function with ctypes?

I have CPython function: void my_cfunc(int arg) { printf("Hello from C; arg=%d\n", arg); } PyObject *get_fptr(PyObject * /*self*/, PyObject * /*args*/) { return PyCObject_FromVoidPtr(my_cfunc, ...
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
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
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...!