3
votes
5answers
486 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 …
2
votes
1answer
82 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 [Enum].Ge …
2
votes
3answers
251 views
C++ ctype facet for UTF-8 in mingw
In a project all internal strings are kept in utf-8 encoding. The project is ported to Linux and Windows. There is a need for a to_lower functionality now.
On POSIX OS I could use …
0
votes
1answer
31 views
charlower with gcc
I am trying to convert the following code from msvc to gcc
#define ltolower(ch) CharLower((LPSTR)(UCHAR)(ch))
char * aStr;
* aStr = (char)ltolower(*aStr);
This code i …
0
votes
3answers
386 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 …
