Tagged Questions
The generic-method tag has no wiki summary.
10
votes
3answers
781 views
C# Generic Method Without Specifying Type
Ok so I'm a Java guy starting to use C# and I was coding and started making a generic method and what I wrote runs and compiles but it goes against everything I know about how generics should work so ...
7
votes
5answers
950 views
Operator '&' cannot be applied to operands of type 'T' and 'T'
My application defines several enums that include the [Flags] attribute.
I wanted to write a small utility method to check if a flag was set for any of those enums and I came up with the following.
...
5
votes
4answers
132 views
How to avoid “Type mismatch” in static generic factory method?
Either I'm too stupid to use google, or nobody else encountered this problem so far.
I'm trying to compile the following code:
public interface MyClass {
public class Util {
private static ...
4
votes
3answers
132 views
How is a variable in a lambda expression given its value
How does index in the below example obtain its value? I understand that n is automatically obtained from the source numbers, but, while the meaning is clear, I do not see how index is given its ...
4
votes
5answers
355 views
scala generic method overriding
I have an abstract class :
abstract class Foo(...){
def bar1(f : Foo) : Boolean
def bar2(f : Foo) : Foo
}
multiple classes extend Foo and override the methods
class FooImpl(...) extends Foo{
...
4
votes
4answers
1k views
C#: How to use generic method with “out” variable
I want to create a simple generic function
void Assign<T>(out T result)
{
Type type = typeof(T);
if (type.Name == "String")
{
// result = "hello";
}
else if (type.Name == ...
2
votes
1answer
121 views
Generic Method to Populate a List Cannot Create T()
I have the generic method below which would serve its purpose if it worked! But the items.Add(new T(mo)); part wont compile because im using a constructor. Can anyone help?
private List<T> ...
2
votes
4answers
197 views
Is there a way to define a generic method that checks for null and then create the object?
I'd like to write a method that checks where the argument is null, and if it is, returns a new object of that type. it looks like:
public static <T> T checkNull(T obj) {
if (null == obj) ...
2
votes
2answers
1k views
How to get MethodInfo of a generic method on a non generic .NET type?
I have this little problem, that I cannot figure out which arguments to pass to Type.GetMethod in order to get back the MethodInfo of a generic method on a non generic type.
Specifically, I have this ...
2
votes
5answers
815 views
IList<IClient> method<T>() where T : Iclient can not add client object to list
public IList<T> GetClientsByListofID<T>(IList<int> ids) where T : IClient
{
IList<T> clients = new List<T>();
clients.Add( new Client(3));
}
I am getting a ...
1
vote
5answers
991 views
Java generic method inheritance and override rules
I have an abstract class that has a generic method and I want to override the generic method by substituting specific types for the generic parameter. So in pseudo-code I have the following:
public ...
1
vote
1answer
861 views
C# Reflection, using MakeGenericMethod with method that has the 'new()' type constraint
I am trying to use the MethodInfo MakeGenericMethod as follows:
foreach (var type in types)
{
object output = null;
var method = typeof ...
0
votes
0answers
255 views
'ObjectDataSource1' could not find a non-generic method 'DeleteBookById' that takes parameters of type 'WebApplication1.BookSVC.Book'
I have been trying to encapsulate a WCF service with an ObjectDataSource and am falling short.
These are the files:
the bookServiceDataSource file includes these two methods (which work when not ...
0
votes
2answers
119 views
Generic method in Java
I don't know how to give this a better title as I don't really know what this pattern is called in Java.
Right now I have a method with this signature:
public Directory getDirectory(Class<? ...
0
votes
2answers
442 views
Use Reflection to call generic method on object instance with signature: SomeObject.SomeGenericInstanceMethod<T>(T argument)
How do I call SomeObject.SomeGenericInstanceMethod<T>(T arg) ?
There are a few posts about calling generic methods, but not quite like this one. The problem is that the method argument ...
0
votes
1answer
595 views
How do I AssertWasCalled a generic method with three different types using RhinoMocks?
I'm trying to learn Rhino Mocks AAA syntax, and I'm having trouble asserting a certain method (with any argument value) was called. I'm using Machine.Specifications as my testing framework.
This ...
0
votes
4answers
962 views
C# call Generic method dynamically
Given the following Interfaces:
interface IEntity
{
int Id{get;}
}
interface IPerson : IEntity
{
string Name{get;}
int Age{get;}
}
interface ITeacher : IPerson
{
string ...
-1
votes
3answers
145 views
Weird compilation error when indirectly refer to an assembly that declares a generic extension method with type restriction
Well, it's clear for me that the title of my question is too complicated. I just tried to make it as specific as possible. So, I'll try to explain the problem better.
Problem context
Let's assume we ...