About 742,000 results
Open links in new tab
  1. C# Generics and Type Checking - Stack Overflow

    I have a method that uses an IList<T> as a parameter. I need to check what the type of that T object is and do something based on it. I was trying to use the T value, but the compiler does ...

  2. What's the difference between "general" and "generic"?

    Apr 30, 2014 · Generic is the opposite of specific. Generic and specific refer to the identification of a fact. Specific means a fact that has been specified. If you ask for (specify) a pain reliever, …

  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. Creating a generic method in C# - Stack Overflow

    Jan 27, 2010 · I am trying to combine a bunch of similar methods into a generic method. I have several methods that return the value of a querystring, or null if that querystring does not exist …

  5. Nullable type as a generic parameter possible? - Stack Overflow

    Oct 16, 2008 · The type 'int?' must be a non-nullable value type in order to use it as parameter 'T' in the generic type or method Is specifying a nullable type as a generic parameter at all possible?

  6. 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 …

  7. How do you provide a default type for generics? - Stack Overflow

    Jul 8, 2009 · The generic parameter type will be the same for all methods, so I would like it at the class level. I know I could make a generic version and then inherit from it for the int version, …

  8. Generic method multiple (OR) type constraint - Stack Overflow

    May 31, 2012 · Reading this, I learned it was possible to allow a method to accept parameters of multiple types by making it a generic method. In the example, the following code is used with a …

  9. java - Get generic type of class at runtime - Stack Overflow

    Aug 4, 2010 · What you want to do is (safely) "pass" the type of the generic type parameter up from the concerete class to the superclass. If you allow yourself to think of the class type as …

  10. A generic error occurred in GDI+, JPEG Image to MemoryStream

    Jun 27, 2009 · In the following code, the t.Save () method call throws our friend the generic exception when the pixel height is 65501 for me. For reasons of curiosity, I repeated the test …