SyntaxFix
Write A Post
Hire A Developer
Questions
In case you don't have Linq, I solved it the following way:
private T[] GetArray<T>(IList<T> iList) where T: new() { var result = new T[iList.Count]; iList.CopyTo(result, 0); return result; }
Hope it helps