Skip to content

Instantly share code, notes, and snippets.

View tarrball's full-sized avatar
💭
💭🔥🔥🔥

Andrew Tarr tarrball

💭
💭🔥🔥🔥
  • Dont' Panic Labs
  • Lincoln, NE
View GitHub Profile
@tarrball
tarrball / Example.cs
Created September 18, 2019 20:40
C# - Creating an empty array of things
void Main()
{
var things = CreateEmptyArray();
}
public Thing[] CreateEmptyArray()
{
return new Thing[]
{
Enumerable