Utils.CopyArray is a method in Visual Basic.net but what's its replicate in C#?
I tried looking at msdn but no clue.
2 Answers
You can easily reference the Microsoft.VisualBasic namespace, including the Utils class, from C#. But this particular method is mainly for compatibility when porting old VB code forward to .Net. New code, whether VB or C#, should use Array.Copy() instead.
Utils.CopyArray, butArray.Copyis probably similar.