Sha256: b2ff4536610943eb7706509ca038c0f9480a27567db697dac3aeaab0c29117f9
Contents?: true
Size: 287 Bytes
Versions: 7
Compression:
Stored size: 287 Bytes
Contents
#include "StdAfx.h" #include "ArrayHelper.h" int ArrayHelper::Copy(array<int, 1>^ source, int destination[]) { if( NULL != destination ) { auto index = 0; for each(auto value in source) { destination[index++] = value; } } return source->Length; }
Version data entries
7 entries across 7 versions & 1 rubygems