func init // adds using namespace sys.add_use('System') end func doCopy(source, destination, length) blk.println('Array.Copy(', d("Source"), ', ', d("Destination"), ', ', d("Length"), ');') end func doCopy2(source, sourceIndex, destination, destinationIndex, length) blk.println('Array.Copy(', d("Source"), ', ', d("SourceIndex"), ', ', d("Destination"), ', ', d("DestinationIndex"), ', ', d("Length"), ');') end