procedure CopyIntoArray(var DestArray: Array of Byte; SourceArray: Array of Byte; StartIndex: integer);
var
  i: integer;
...

Delphi Array Helper Functions

by jamiei, February 02, 2009 00:04, 3 refactorings, tagged with pointers, array, delphi

To get this Section started...

Ec72b0ab3eb1855c56fd04bcc886f65c Talk
using System;
using System.Collections.Generic;
using System.Linq;
...

C# Pointers in C#

by Andre Steenveld, May 06, 2008 10:39, 1 refactoring, tagged with C#, Unsafe, pointers, unmanaged

I am trying to work out how...

D41d8cd98f00b204e9800998ecf8427e Talk