Skip to content

Instantly share code, notes, and snippets.

@rrgahan
rrgahan / Example.cs
Created November 12, 2019 18:19 — forked from tarrball/Example.cs
C# - Creating an empty array of things
void Main()
{
var things = CreateEmptyArray();
}
public Thing[] CreateEmptyArray()
{
return new Thing[]
{
Enumerable