Tagged Questions
1
vote
3answers
73 views
Generic lists and co/contravariance
Let's say I have a generic List<ICalculation> which serves as a repository for all predefined calculations in my application...
I have a generic interface called ICalculation<T, U> which ...
2
votes
1answer
115 views
VB generics with constraints — type casting and inheritance?
Take this scenario:
Public Interface IMyClass
End Interface
Public mustinherit class MyBaseClass : implements IMyClass
End Class
public class MyClass : inherits MyBaseClass
End Class
public class ...
1
vote
1answer
47 views
Is there a solution that feels less clumsy than Convert.ChangeType to get the value from a HashTable
I'm in the midst of refactoring some .NET 1.1 code to be a bit more maintainable .NET 4.0 code, and get a feel for what a total overhaul of the code would have.
A big part of the current code depends ...
1
vote
1answer
150 views
MEF 2 can't import generic implementation of generic interface
I'm using latest MEF 2 preview from Codeplex homepage, and it's supposed to add open-generics support. It does, but in this specific case, MEF fails to compose generic implementation of generic ...
1
vote
4answers
52 views
Passing Constrained Generic Type to Non-Generic Method
Why can't I pass an instance of this class...
class Item<T> where T : Thing { }
...into this method:
void DoSomething(Item<Thing> item);
Since I've constrained Item<T> to be an ...
2
votes
1answer
76 views
Generic class and IEquatable problems
I want a generic class to implement the IEquatable<T> interface. The class has data items of type T. For the generic class to be equatable the data items need to be that as well.
Here is my ...
3
votes
1answer
142 views
Using dynamic keyword and calling generic method in base class results in StackOverflowException
According to my question (Reusable non generic method for generic methods) i have implemented the provided solution, but after some refactoring (moving code to base class) my code results in a ...
27
votes
3answers
523 views
I can only cast a contravariant delegate with “as”
I'm trying to cast a contravariant delegate but for some reason I can only do it using the "as" operator.
interface MyInterface { }
delegate void MyFuncType<in InType>(InType input);
class ...
0
votes
4answers
104 views
How can I use generics to convert a TValue from a dictionary into a List<TValue>
First, I'm new to generics, so I apologize in advance for any mistake.
I would like to be able to compare different types of dictionaries in a unified way.
I to compare 2 dictionaries that might have ...
1
vote
1answer
114 views
“delegate {}” matches “Func<int,int,..>”?
I was reading Jon Skeet's answer here
and one of his samples was :
static void Main()
{
int x = 0;
Foo( delegate { return x; } );
}
static void Foo(Func<int, ...
2
votes
1answer
149 views
Are there ant Design Solution than Generics when I want to use different types in my class/method
I have the following Controllers (in diagram) which Call the Static method to get the data. As I am going to use the data at many other pages , I dont want to requets for the data again and again. ...
1
vote
1answer
87 views
Assigning a method to a generic property
I am trying to design a class that will be flexible enough to chart data about different kinds of data. I'm new to OOP in C#, so I'm fumbling around trying to achieve this using some combination of ...
0
votes
1answer
64 views
Is there a way to constrain a type parameter to SqlDbType?
I'm looking to constrain a type parameter to SqlDbType for a generic factory method. Here's my attempt at the signature:
private static SqlParameter SqlParameterFactory<ValTYpe>(String
...
2
votes
2answers
192 views
Confuse with Generics and Entity Framework
I am new to c# and now bit confused with Generics and Entity Framework. I have two tables in database, which I retrieve in my code using Entity Framework. On my aspx page, I have a grid which should ...
-1
votes
1answer
294 views
Why System.Windows.Automation.Peers.AutomationPeer.GetPattern() method does not use Generics? [closed]
The GetPattern() method implementation of WPF UI Automation system is implemented taking the enum parameter PatternInterface and we normally use it in the following way:
//Code with original ...
14
votes
4answers
327 views
A List<> of Func<>s, compile error with generic return type, but why?
This is a bit of a lengthy question, so please bear with me.
I need to create a mapping between a set of strings and corresponding generic method calls for each string. However I've run into a ...
2
votes
3answers
276 views
Get type of T in IEnumerable<T>
This is My Generic Class:
public class MyClass<T>
{
public T MainModel { get; set; }
public Type GetType()
{
//here
}
}
Then I use it this form:
...
5
votes
1answer
321 views
Generic vs Non-Generic Overload Calling
When I declare a method like this:
void DoWork<T>(T a) { }
void DoWork(int a) { }
And call it with this:
int a = 1;
DoWork(a);
What DoWork method will it call and why? I can't seem to find ...
4
votes
4answers
171 views
How do I reference a parent from a child object with generic interfaces in C#?
I have the following interface declarations:
interface IOrder<T> where T: IOrderItem
{
IList<T> Items { get; set; }
}
interface IOrderItem
{
IOrder<IOrderItem> Parent { ...
0
votes
2answers
71 views
C# compiler is afraid from casting when reference conversion?
Ive seen this code :
StringBuilder Foo<T> (T arg)
{
if (arg is StringBuilder)
return (StringBuilder) arg; // Will not compile
...
}
however :
StringBuilder Foo<T> (T arg)
{
...
7
votes
4answers
391 views
How to add an item of type T to a List<T> without knowing what T is?
I'm handling an event which passes event args pointing to a List and a T newitem, and my job is to add the newitem to the List.
How can I do this without checking for all the types I know T might be?
...
5
votes
2answers
289 views
Getting an Enum or Static Property from Generic Reference Type <T>
So if there is an enum property in a class called Bar, why can't I access the enum property or any static property of type <T> in this situation. I am implicitly declaring that <T> is of ...
7
votes
6answers
321 views
Who actually last decide what is the Generic Type?
I have this function
public static T2 MyFunc<T1, T2>( T1 a, T1 b, T2 c)
{
return c;
}
I'm creating 2 Persons class instances:
class Person
{ }
...
2
votes
3answers
651 views
WCF Generic Class
How can this work as a WCF Service?
public class BusinessObject<T> where T : IEntity
{
public T Entity { get; set; }
public BusinessObject(T entity)
{
this.Entity = entity;
...
5
votes
4answers
422 views
C# - Create Dictionary<T, Manager<T>>
I have a generic class named Manager<T>, and I want to create a dictionary that maps a type to an instance of the Manager class of this type.
I thought about creating a Dictionary class that ...
9
votes
1answer
875 views
Apply Linq Func<T, TResult> key selector at single element level
Sorry if the title is misleading, wasn't sure how to describe this one.
My end goal is to have an extension method of IQueryable<T> and some form (see below for example) of expression that will ...
0
votes
1answer
175 views
Can a delegate declaration inherit from another delegate declaration?
Is there a way I can write the following without typing out the whole signature again?
//desired base signature
public delegate string BaseDelegate<TProfile, TResult>(string requestorID, ...
11
votes
3answers
229 views
Unexpected behavior in c# generic method on .Equals
Why does the Equals method return a different result from within the generic method? I think that there's some automatic boxing here that I don't understand.
Here's an example that reproduces the ...
6
votes
3answers
380 views
A generic method can use contravariant/covariant types?
I'm writting a generalized method to use it in a special task at a T4 template. The method should allow me to use specialized types from a general interface. I though about the following signatures:
...
4
votes
2answers
112 views
Pass a constrained type to a method
There a few similar questions here on SO, but none seem to quite answer my question..
I want to create a method which takes an Enum Type, and generates a List of ListItems for the UI. Something with ...
0
votes
2answers
263 views
Need to write a Generic method which returns a list of data objects obtained from wrapper objects (passed to it)
Ok, so basically I need to create a generic method which takes a list of frontend objects, retrieves the wrapped data object of each frontend object and returns a list of data objects.
I have written ...
0
votes
5answers
120 views
C# Generics: Can I use them in this example?
How can I do this with generics?
In my current code, I am writing something like this for each feature on a vehicle.
foreach (var vaudioSystem in VehicleAudioSystem)
{
...
0
votes
4answers
175 views
Can I pass T to a class constuctor
I have a class such as:
public MyClass
{
public myEnumType Status {get;set;}
public DataTable Result{get;set;}
}
Because DataTables suck I want to implement an object orientated approach. ...
5
votes
1answer
786 views
Actual Method Signature Using Reflection
I am trying to build a T4 template that will take the method definitions in an interface and reproduce the signature and call a base method with the passed parameters. The interface defines a ...
0
votes
2answers
322 views
Generic Collection - CollectionBase, IBindingList and Firing Events on Item Changes/Edits
I've implemented a GenericCollection using IBindingList, and it works great and fires events for when items are added or removed. It doesn't fire events when items are changed/edited as expected. Is ...
4
votes
4answers
409 views
Dynamically infer generic types via. reflection
Any help would be appreciated on this one. I'm trying to implement a dynamic object wrapper over a static type. This wrapper should then allow me to call static functions dynamically at run time.
...
2
votes
1answer
175 views
Check if a specified type is a match for a generic type?
Lets say I have the following dictionary:
protected Dictionary<Type, Type> MatchingTypes = new Dictionary<Type, Type>()
{
{ typeof(ObservableList<>), ...
1
vote
1answer
446 views
Generic class definition with both generic type constraint and inherited type?
I was wondering if it possible to have both a generic type constraint and an inherited type?
I could not figure the syntax out for myself or think of a possible example I could look at.
Code ...
0
votes
3answers
42 views
How do I map similar linq2sql generated results to a single object?
I am trying to refactor some methods to avoid repeating myself in the object mappings. The functions are laid out in this SO question.
I have a generic method that will call one of 4 stored ...
3
votes
1answer
147 views
How do I pass function delegates to be called with LINQ? [closed]
I think I'm asking the right question here...
I have 4 stored procedures that return different subsets of the same data.
I map this data to the same object in my server application.
I've set my ...
1
vote
4answers
171 views
C# declaration of generic type
Is it possible to get the "c# name" of a type obtained with reflexion like:
System.Collections.Generic.List`1[[System.String, mscorlib, Version=4.0.0.0, Culture=neutral, ...
0
votes
3answers
926 views
Why does the Linq OrderBy extension not affect the list it is called on?
I am attempting to write a generic sort extension method to List based on a string column name and linq.
I have most of it here, but it doesn't work just yet. The logic is taken from this site.
...
19
votes
6answers
6k views
C# Create New T()
You can see what I'm trying (but failing) to do with the following code:
protected T GetObject()
{
return new T();
}
Any help would be greatly appreciated.
EDIT:
The context was as follows. ...
0
votes
1answer
51 views
Opposite to a Structure?
I'm sure there is an answer to this somewhere but I'm clearly using the wrong terminology in my searches, so I apologise in advance for this inevitably being a duplicate.
Take the function CType. ...
2
votes
1answer
98 views
Unable to cast from DerivedT<Derived2T> to BaseT<base2T>
I have those classes, an implementation of active record pattern:
public abstract class RecordCollection<T> : ObservableCollection<T> where T : Record
public abstract class Record : ...
0
votes
2answers
480 views
How to Dynamically Pass a Type to a Generic Factory?
I have a factory defined like so :
public IPopulator CreatePopulator<T>(ReportItem Item) where T : IReportElement
{
if (typeof(T) == typeof(BarChartElement))
{
...
2
votes
1answer
467 views
Creating a Generic Field in a Class
I'm writing a file processing service to parse and process different kinds of transaction files. I have a generic file parser with implementations for different types of transactions as follows.
...
0
votes
2answers
328 views
Get strongly typed list item data type?
Lets say I have a List<object> which is passed into a class as an argument, this list should contain a bunch of models for my application all of the same type. Is it then possible for me to ...
2
votes
4answers
488 views
Build and use generic list?
Can anyone help me figure out how I could simplify this code, without using an ArrayList?
List<Pair> material = new List<Pair>();
List<string> list = new List<string>();
...
5
votes
1answer
969 views
Generic/type safe ICommand implementation?
I recently started using WPF and the MVVM framework, one thing that I have wanted to do is to have a type safe implementation of ICommand so I do not have to cast all the command paramaters.
Does ...

