0
votes
5answers
57 views
C# Typecast Basic querry
Hi
I am new to C#
I have a struct like
struct Package
{
Public int[] intvalues;
Public char[] charvalues;
Public string strvalue;
}
Now I have a string
string strquery;
I wa …
0
votes
4answers
85 views
Can I get Actionscript3 to type cast Numbers and ints in XML files as numbers and ints?
Everything seems to be a string right now & that kinda ruins the whole xml as an internal data structure thing, I don't need a big tree of string I need typed data :-/ Are ther …
0
votes
2answers
387 views
convert string list to int list in haskell
Hi,
I've got a list of strings, is it possible to convert it to an list of ints?
eg:
["1","2"] -> [1,2]
THANKS,
4
votes
7answers
202 views
C#: Any difference whatsoever between “(subtype)data” and “data as subtype” typecasting?
Assuming I have an instance of an object that I know belongs to a subclass of a certain subtype passed to me through a reference of a supertype in C#, I'm used to seeing typecastin …
-2
votes
2answers
186 views
typecast from integer in to structure in C
Hi
I am trying to access Byte array from an int array which contain address of byte array. i.e
MSMQ_SEND *ReadBytesFromArr = NULL;
ReadBytesFromArr = (MSMQ_SEND*)Queue_Element_S …
0
votes
4answers
198 views
Typecast:LPCTSTR to Char * for string concatenate operation
Can u Give solution for this code of typecasting, LPCTSTR to Char*
for below code snippet ,
char* s="HKEY_CURRENT_USER\\";
strcat(s,**(char*)lpSubKey** );
printf("%S",s);
here …
0
votes
3answers
401 views
PHP Array extracting object
Suppose I have an array of a objects of user defined class. Wanted to know how do I extract the elements of the array in PHP.
// class definition
class User
{
public $fname;
publi …
1
vote
5answers
57 views
Do special processing for a type in a generic class
Do special processing for a type in a generic class Pinnew member dan neely 19mins ago
I'm trying to roll up some old (originally .net 1.1) abstract classes into generics. The c …
0
votes
1answer
240 views
Swig c++ w/ Java loses type on polymorphic callback functions
Question:
Why is my C++ swigged object losing its type when passed to a Java callback function?
Setup:
I've taken the Swig Java example for doing callbacks and added an object to …
1
vote
1answer
161 views
Swig typecast to derived class?
I notice that Swig provides a whole host of functions to allow for typecasting objects to their parent classes. However, in C++ one can produce a function like the following:
A * …
1
vote
2answers
173 views
MySQL Type Conversion: Why is float the lowest common denominator type?
I recently ran into an issue where a query was causing a full table scan, and it came down to a column had a different definition that I thought, it was a VARCHAR not an INT. When …
0
votes
3answers
173 views
Modify contents in foreach
I tend to use ArrayLists of structures. It is then very easy to cycle through the list with a foreach.
The problem I have is I cant use a foreach to modify the structures contents …
4
votes
2answers
197 views
How can I call explicitly implemented interface method from PowerShell?
Code:
add-type @"
public interface IFoo
{
void Foo();
}
public class Bar : IFoo
{
void IFoo.Foo()
{
}
}
"@ -Language Cshar …
0
votes
6answers
771 views
Is it possible to assign a base class object to a derived class reference with an explicit typecast in C#?.
Is it possible to assign a base class object to a derived class reference with an explicit typecast in C#?.
I have tried it and it creates a run-time error.
1
vote
4answers
2k views
Need help-typecasting in Python
Help me people
Last week I asked about unicode conversion.I got only one reply.I need more suggestions.
I need to convert strings in Python to other types such as unsigned and …
