Steve Favis

Steve Favis

  • NA
  • 6
  • 10.3k

C# syntax - what does <> mean?

Dec 9 2010 4:29 PM

I have no idea what the less than / greater than "<>" mean in C#, and what are the preconditions for calling the below function?
public static string ArrayToStringGeneric<T>(IList<T> array, string delimeter)
{
    ...blah
    return outputString;
}
what would the function call syntax look like? Thanks in advance!


Answers (1)