1
vote
2answers
46 views
Cast concrete class to generic base interface
Here's the scenario i am faced with:
public abstract class Record
{
}
public abstract class TableRecord : Record
{
}
public abstract class LookupTableRecord : TableRecord
{ …
0
votes
6answers
63 views
Cast/Convert IEnumerable<T> to IEnumerable<U> ?
The following complies but at run time throws an exception. What I am trying to do is to cast a class PersonWithAge to a class of Person. How do I do this and what is the work arou …
0
votes
2answers
110 views
How to cast from hexadecimal to string in C?
How to cast from hexadecimal to string in C?
2
votes
4answers
162 views
How to use argument in a cast with Delphi
How to do this in Delphi:
procedure ToggleVisibility(ControlClass : TControlClass);
var
i : integer;
begin
for i := 0 to ComponentCount - 1 do
if Components[i] is ControlC …
0
votes
3answers
109 views
Casting generic collection to concrete implementation in C# 2.0.
Chosen Solution
Thanks for the help everyone. I've decided to do the following.
public static class PersonCollection
{
public static List<string> GetNames(RecordCollec …
1
vote
6answers
110 views
Unexpected results using istringstream for string to double conversion in C++
I'm currently trying to take a string ("0.1") and convert it to a double using C++ in Xcode on 10.6 with gcc4.2.
I'm using a function I pinched from another question, but when I t …
3
votes
3answers
103 views
Enumerable.Cast<T> extension method fails to cast from int to long, why ? [closed]
Possible Duplicate:
Puzzling Enumerable.Cast InvalidCastException
Hi,
I just noticed something quite strange with the Enumerable.Cast<T> extension method... It seem …
0
votes
1answer
60 views
Cast function for Hibernate
Hi, all
I have tried to cast to float numbers from string in the database fields to compare with another numbers. The field in the database was String type. I have tried to use BE …
1
vote
5answers
205 views
Is %d a cast in C?
int a;
printf("%d\n", a);
I wonder if %d is a cast?
0
votes
6answers
108 views
C - Pointer to int to get elements in stack
Hello!
I wanted to write a standard stack in C but I am not sure if my stk_size() function could work on other platforms except for my 32bit pc. I read that its not good to cast a …
1
vote
5answers
158 views
Cannot convert type ‘System.Enum’ to int
(OK, I'll expose the depths of my ignorance here, please be gentle)
Background
I've got a method which looks (a bit) like this:
public void AddLink(Enum enumVal)
{
string i …
1
vote
9answers
273 views
error: cast from ‘void*’ to ‘int’ loses precision
I have a function with prototype void* myFcn(void* arg) which is used as the starting point for a pthread. I need to convert the argument to an int for later use:
int x = (int)ar …
0
votes
1answer
65 views
how to use boost::any_cast (c++ library) to cast to base types?
Hello,
I am using boost::any to have polymorphic types, I need to be able to cast an object to its base type.
class A {
public:
int x;
virtual int foo()= 0;
};
cla …
0
votes
5answers
72 views
Casting an object I recieve through reflection.
I have this function:
Program A
public ICollection<ReportLocationInfo> GetAllReportsInstalled()
{
return _Reports;
}
I am calling it through reflection dynamically:
…
0
votes
3answers
25 views
Workaround to allow a TEXT column in mysql MEMORY/HEAP table
I want to use a temporary MEMORY table to store some intermediate data, but I need/want it to support TEXT columns. I had found a workaround involving casting the TEXT to a VARCHAR …
