Skip to content

Instantly share code, notes, and snippets.

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

tarrball

💭
🔥🔥🔥
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