1
Answer

C# syntax - what does <> mean?

Steve Favis

Steve Favis

14y
2.3k
1

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)