0
votes
Dynamically creating a new instance of IList’s type
The big problem here is: If you don't know the type, how do you know how to make a new one? Not every type in the world has a constructor that takes an int and a string.
…
3
votes
Cannot cast Dictionary ValueCollection to IEnumarable<T>. What am I missing?
Try this:
return _pool[myType].Values.Cast<EntityType>();
This has the effect of casting every element in the enumeration.
…
1
vote
.NET Casting Generic List
JMD's answer is correct. For a workaround, you can try this:
List<IPackable> orderItems = new List<IPackable>();
List<IShipMethod> shipMethods = GetForShipWeight( …
5
votes
Convert Generic Dictionary to different type
I suppose I would write
Handle(_commands.ToDictionary(p => p.Key, p => (object)p.Value));
Not the most efficient thing in the world to do, but until covarian …
2
votes
1
vote
C#: Using new in a Func<T>
The code in replacement wouldn't be run until the function was actually called, and the value was found to be missing in the table.
By the way, if you implement this as stated, …
1
vote
Parameter type using Generics constraint VS Explicit type declaration
There aren't any runtime performance penalties -- this is all handled by the compiler when generating IL for your code.
As for the syntax, I think the second makes it clearer that you are o …
1
vote
Concrete Implementation of Generic Form Not Working in Designer
Sorry, but this just isn't going to work (which is a shame -- I've wished in the past that you could do this, too.) The problem is the basic methodology of the designer.
To present you wit …
2
votes
Using Generics in Interfaces
OK, here's what you want:
public interface ICookieDataBase
{
DateTime Expires { get; set; }
}
public struct CookieData<T> : ICookieDataBase
{
public T Value { get; se …
2
votes
C# Generics and Type Checking
Your construction completely defeats the purpose of a generic method. It's ugly on purpose because there must be a better way to achieve what you're trying to accomplish, although you haven't give …
2
votes
Calling a method on a generic base class created with Activator.CreateInstance
A priori, you know nothing about the common features that might exist between GenericBase<Bar> and GenericBase<Baz>. It's possible they have nothing in common …
6
votes
Why does this generic cast fail?
You need to cast it because IEnumerable<T> is not covariant on T. You can do this:
return result.Cast<TeraRow>();
…
3
votes
How do I write a generic extension method to convert a List to a HashSet using HashSet.AddRange()?
Actually, HashSet<T> may not have an AddRange method, but it has a UnionWith method, which is semantically what you are looking for. The difference in …
3
votes
C# Improved algorithm
If not using Except, and if you wanted your solution to scale to large lists, your best bet would be to sort the second list or to make a hash table out of it, so that for every elemen …
