0
votes
2answers
29 views
VB.NET Conversion problem when trying to convert from base class to subclass (BC30311: “Value of type ‘<type1>’ cannot be converted to ‘<type2>’”)
Hello!
Please take a look at the following code:
Public Sub Method(Of TEntity As EntityObject)(ByVal entity As TEntity)
If TypeOf entity Is Contact Then
Dim contact …
1
vote
1answer
28 views
Why do I need to type-cast an object when sending it an “isKindOf:” message?
If I'm trying to find out if an object is a type of a certain class (or any of that class's descendants), it seems that I should use "isKindOf:"
if ([foo isKindOfClass:[bar class] …
2
votes
5answers
92 views
Casting generic object array to two types
I've got a method that receives an Object[] and then performs actions on that array.
At first I was passing in this array as an IEnumerable<T> however the T can be of two di …
0
votes
3answers
47 views
Casting JSON/XML in AS3
Having used FlashDevelop with a project, and switched to FDT/Eclipse. I am sorting through hundreds of warnings in my code.
Quite a few relate to XML and JSON syntax this project …
1
vote
2answers
168 views
Converting an object of the type Object to another type using a Type object
Having an object like this:
object integerObject=1;
And an object like this:
Type integerType=typeof(Int32);
How can be the integerType object used to cast the integerObjec …
0
votes
3answers
226 views
Groovy type conversion
Hi,
In Groovy you can do surprising type conversions using either the as operator or the asType method. Examples include
Short s = new Integer(6) as Short
List collection = new H …
1
vote
1answer
49 views
DirectCast not accepting valid casts at compiletime (VB.NET)
How come this is not a valid DirectCast:
Public Sub FB(OF T0 As IGH_Goo, T1 As IGH_Goo) _
(ByVal A As DataTree(Of T0), _
ByVal B As DataTree(Of T1))
…
0
votes
2answers
57 views
How to type cast in TI DSP C
I am porting some C code to a TI DSP chip environment. I'm grappling with the C compiler.
I have a data structure that includes a pointer to a function. I have a function that i …
0
votes
3answers
57 views
Cast a variable to a type represented by another Type variable?
I'm aware that questions like this have been asked before and I doubt it's possible, but I just wanted to make 100% sure that it isn't.
In VB.net or C# (either language, it doesn' …
3
votes
2answers
83 views
Why do i need to wrap this code in a cast to short?
If i have some code like the following:
short myShortA = 54;
short myShortB = 12;
short myShortC = (short)(myShortA - myShortB);
Both operands are shorts and it's going into a s …
1
vote
1answer
58 views
Ansi SQL type casting
Is it allowed to cast types in ANSI SQL like in postgres for example:
SELECT SUM( CAST(qnty AS int) - CAST(reserve AS int) ) AS sum
...
qnty and reserve are character columns.
0
votes
3answers
176 views
ASP.Net Error - Unable to cast object of type ‘System.String’ to type ‘System.Data.DataTable’.
I get the below error
Unable to cast object of type 'System.String' to type 'System.Data.DataTable'.
This is the code I'm using
Dim str As String = String.Empty
If (Session …
1
vote
4answers
146 views
C++ Templates type casting with derivates
Hi,
I'm trying to cast from one generic to another, say:
myClass<MoreAbstract> anItem = myclass<DerivateFromMoreAbstract> anotherObject;
Or do something like
aFunc …
2
votes
4answers
317 views
Type casting for user defined objects
Hi
Just like we do with __ToString, is there a way to define a method for casting?
$obj = (MyClass) $another_class_obj;
1
vote
5answers
122 views
Getting rid of error C2243
Is it possible to getting rid of error C2243?
class B {};
class D : protected B {};
D d;
B *p = &d; // conversion from 'D *' to 'B &' exists, but is inaccessible
I ha …
