3
votes
6answers
171 views
Is List<List<String>> an instance of Collection<Collection<T>>?
I wrote this handy, generic function for converting a collection of collections into a single set:
public static <T> Set<T> makeSet(Collection<Collection<T>&g …
0
votes
4answers
90 views
Are there any plans for Java to add generic collection covariance?
Today I was trying to write some code that looked like this:
public List<IObject> getObject(){
ArrayList<ConcreteObject> objects = new ArrayList<ConcreteObject> …
2
votes
4answers
79 views
Can an array be assigned to an array of an unknown type when you know the name of the field to assign to?
Hey guys,
I need to assign an array to a field. I dont know the fields type, but I do have a reference to an instance and the name of the field. I can assume the array can be cast …
3
votes
3answers
2k views
How is Generic Covariance & Contra-variance Implemented in C# 4.0?
I didn't attend PDC 2008, but I heard some news that C# 4.0 is announced to support Generic covariance and contra-variance. That is, List<string> can be assigned to List<o …
4
votes
4answers
127 views
Understanding Covariance and Contravariance in C# 4.0
I watched a video about it on Channel 9 but I didn't really understand it much.
Can someone please give me a simple example about these that's easy to understand? After that maybe …
0
votes
1answer
66 views
How to use correlogram to estimate variance?
From a book of computer simulation, I got this two equation.
The first is to calculate correlogram, the second is how to use correlogram to estimate variance.
The common approa …
5
votes
5answers
473 views
C# : Is Variance (Covariance / Contravariance) another word for Polymorphism ?
I am trying to figure out the exact meaning of the words Covariance and Contravariance from several articles online and questions on StackOverflow, and from what I can understand, …
1
vote
2answers
66 views
Possible to convert IQueryable<Derived> to IQueryable<Base>?
I know about covariance, and I know that in general it will not be possible in C# until v4.0.
However I am wondering about a specific case. Is there some way of getting convert …
14
votes
12answers
6k views
In C#, why can’t a List<string> object be stored in a List<object> variable
It seems that a List object cannot be stored in a List variable in C#, and can't even be explicitly cast that way.
List<string> sl = new List<string>();List<object> ol; …
13
votes
8answers
522 views
C#: Overriding return types
Is there way to override return types in C#? If so how, and if not why and what is a recommended way of doing it?
My case is that I have an interface with an abstract base class a …
1
vote
1answer
94 views
c# inherit how to override the type of a member in abstract class in child class
I have following code:
public abstract class TestProperty
{
public abstract Object PropertyValue { get; set; }
}
public class StringProperty: TestProperty
{
public overri …
1
vote
4answers
210 views
How to declare a method that returns a generic collection of “anything” (C#)
I am using a hierarchy of generic collection classes that derive from an abstract base class to store entity items that also derive from an abstract base class:
abstract class Ite …
8
votes
5answers
229 views
What are the benefits of covariance and contravariance?
C# 4.0 is going to support covariance and contravariance. But I don't clearly understand the benefits of this new feature. Can you explain me (clearly) why we need it?
3
votes
5answers
473 views
Covariance and contravariance in programming languages
Can anyone explain me, the concept of covariance and contravariance in
programming languages theory?
2
votes
3answers
286 views
C#-Array Covariance In Generic Classes
Hi,
I know that C# supports covariance in arrays like this :
object[] array = new string[3];
But I'm getting an error when it tries to compile the below code
class Dummy<K, …
