I have a function like
Instead of rewriting the whole function for UInt64[] and for string[] I would like to write it in a generic way using something like
Is this possible in C# and what problems can I expect while using it?
Code:
UInt32[] MyFunction(UInt32[] Inputs, bool bOrder)
Code:
<T>[] MyFunction(<T>[] Inputs, bool bOrder)
Comment