Again this is a limitation of .net. The Common Language Runtime is similar to java's virtual machine and just in time compiled languages create programs that execute faster than interpreted languages, but still lag behind unmanaged C and C++ generally.
November 25th, 2012, 11:37 PM
kevin619
Re: Quick Array Copy
> Dear developers,
> I have a question. Is there a faster array copy than a for loop. What
> would you suggest for this code sample?
>
> void get(char* src, char* dest, int i) {
> for (int j = 0; j < recordLen; j++, i++) {
> dest[j] = src[i];
> }
> }
>
> Thank you for int main()