Tagged Questions
1
vote
1answer
78 views
Implicit downcast from 'System.IO.Stream' to 'System.IO.MemoryStream'
function SerializeObject(pObject : Object)
{
var XmlizedString : String = null;
var memoryStream : MemoryStream = new MemoryStream();
var xs : XmlSerializer = new ...
0
votes
2answers
344 views
Call a method that requires a derived class instance typed as base class in vb.net or c#
Ok, I will do my best to explain.
I have 2 objects - "Spaceship" and "Planet" derived from a base "Obj".
I have defined several classes - Circle, Triangle, Rectangle etc. which all inherit from a ...
1
vote
4answers
161 views
Is there an easier/better way to do this, since downcasting isn't allowed in C#?" [closed]
Potentially an argumentative topic, but... I really hate that I can't do the following:
class User
{
public string ImageURL {get;set;}
}
class UserUI : User
{
public Brush ImageBrush ...
2
votes
3answers
291 views
How can I avoid downcasting when passing information through a queue?
I'm writing a tool which enables a user to interact with a bit of hardware by changing settings and then streaming information.
To do this I have a couple of threads running: EquipmentInterface and ...
1
vote
2answers
168 views
Interface Downcasting
Please suppose I have the following extension method in order to be able to force evaluation of an IEnumerable:
public static List<T> EvaluateNow<T>(this IEnumerable<T> collection)
...
4
votes
2answers
626 views
Downcasting a generic type in C# 3.5
Why can I only upcast a generic and not downcast it?
How is it not clear to the compiler that if my constraint says where T : BaseClass and U is derived from BaseClass that (U)objectOfTypeT is valid?
2
votes
1answer
963 views
How to do dynamic downcasting in vb.net?
I have several classes, that all derives from SuperClass.
When the classes are created, they all are put into a List(Of SuperClass).
When I go through the list, i would like to downcast the ...