1
Reply

C# syntax - what does <> mean?

Steve Favis

Steve Favis

Dec 9 2010 4:29 PM
1.7k
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)