About 736,000 results
Open links in new tab
  1. How do I call a generic method using a Type variable?

    What's the best way to call a generic method when the type parameter isn't known at compile time, but instead is obtained dynamically at runtime? Consider the following sample code - …

  2. Syntax and Sample Usage of _Generic in C11 - Stack Overflow

    Mar 26, 2015 · Note about the placing of the function parameter list When using a Generic() to select a function based on the controlling-expression you have the choice of including the …

  3. How can I pass in a func with a generic type parameter?

    Mar 24, 2014 · You can certainly define generic delegates, after all, that's exactly what Func and Action are. They are treated as generic definitions, just like generic interfaces and classes are. …

  4. void in C# generics? - Stack Overflow

    I have a generic method that takes a request and provides a response. public Tres DoSomething<Tres, Treq>(Tres response, Treq request) {/*stuff*/} But I don't always want a …

  5. c# - MediatR generic handlers - Stack Overflow

    Sep 18, 2022 · This will also register all the generic handlers and you won't even have to register it explicitly inside the DI. btw The method you used to handle generic registration is the way …

  6. How do I get a class instance of generic type T? - Stack Overflow

    I have a generics class, Foo<T>. In a method of Foo, I want to get the class instance of type T, but I just can't call T.class. What is the preferred way to get around it using T.class?

  7. c# - How to compare values of generic types? - Stack Overflow

    So, two questions: Why do we observe this weird behaviour? What keeps us from comparing the values of generic types which are known to be IComparable? Doesn't it somehow defeat the …

  8. How to create a generic extension method? - Stack Overflow

    Dec 1, 2009 · A generic method or class is designed to work for any type. This is most easily illustrated in the List<T> class, where it can be tailored to be a list of any type. This gives you …

  9. c# - Generic TryParse - Stack Overflow

    Jun 3, 2010 · I am trying to create a generic extension that uses 'TryParse' to check if a string is a given type: public static bool Is&lt;T&gt;(this string input) { T notUsed; return T.TryParse(input,...

  10. Generics in C#, using type of a variable as parameter

    Feb 11, 2015 · Why? Because under the hood, the compiler will go away and create a new type (sometimes called a closed generic type) for each different usage of the "open" generic type. …