Skip to content

Instantly share code, notes, and snippets.

@jerstlouis
Created January 3, 2014 01:42
Show Gist options
  • Save jerstlouis/8231051 to your computer and use it in GitHub Desktop.
Save jerstlouis/8231051 to your computer and use it in GitHub Desktop.
property Container<int> foo
{
set
{
BuiltInContainer<int> * array = (void *)value;
// Use array->count and array->data
}
get
{
int count;
BuiltInContainer<int> * array = new0 BuiltInContainer<int>[1];
// Set array->count, allocate memory for array->data, write into array->data
return (Container<int>)array;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment