Top "Generic-method" questions

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 …

java inheritance overriding abstract-class generic-method
Invoking Java Generic Methods

I am studying Java generic feature and I am not sure how to explain the third line in the following …

java generics type-erasure generic-method
scala generic method overriding

I have an abstract class : abstract class Foo(...){ def bar1(f : Foo) : Boolean def bar2(f : Foo) : Foo } multiple classes …

scala overriding generic-method
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 : …

c# generics generic-method
How to create a generic method in Dart?

I'm trying to use generic methods in Dart (1.22.0-dev.10.3). Here is a simple example: abstract class VR<T> { …

generics dart generic-method
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, …

c# generics reflection methodinfo generic-method
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 …

c# .net generics .net-3.5 generic-method
Java method with generic return Type

Is there a way in Java to return different types with one declaration of a method? public Object loadSerialized(String …

java generics casting return-type generic-method
Java generic methods in generics classes

If you create a generic class in Java (the class has generic type parameters), can you use generic methods (the …

java generics language-design generic-method raw-types
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 …

.net reflection methodinfo generic-method