Skip to content

Instantly share code, notes, and snippets.

@sogaiu
Created December 7, 2018 04:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sogaiu/5f269e8a0b68240ea4f66bf2ab5acb0a to your computer and use it in GitHub Desktop.
Save sogaiu/5f269e8a0b68240ea4f66bf2ab5acb0a to your computer and use it in GitHub Desktop.
sketch of Util.cs for specter
using System;
public class Util
{
public static Object[] makeObjectArray(int size)
{
return new Object[size];
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment