About 742,000 results
Open links in new tab
  1. 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, …

  2. 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?

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

  4. How to add a generic credential for a specific Windows User using ...

    Jun 14, 2024 · I'd like to add a generic credential to the Credential Manager on a Windows VM using a Powershell script which is executed by conducting a GitHub Action workflow. The …

  5. How to make a Java Generic method static? - Stack Overflow

    The following is a snippet on how to make a java generic class to append a single item to an array. How can I make appendToArray a static method. Adding static to the method signature …

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

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

  8. How do I make the return type of a method generic?

    If you would want to return a value which is not type casteable to the generic type you pass, you might have to alter the code or make sure you pass a type that is casteable for the return …

  9. How can I return NULL from a generic method in C#?

    I think the problem with this is that if you're using this generic method to say, convert a Database object from DbNull to Int and it returns default (T) where T is an int, it'll return 0. If this number …

  10. How can I create a generic array in Java? - Stack Overflow

    8 Java generics work by checking types at compile time and inserting appropriate casts, but erasing the types in the compiled files. This makes generic libraries usable by code which …