Skip to content

Instantly share code, notes, and snippets.

View JerryNixon's full-sized avatar
🤔
Trying to make a living.

Jerry Nixon JerryNixon

🤔
Trying to make a living.
View GitHub Profile
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@JerryNixon
JerryNixon / Seven.cs
Last active May 23, 2016 22:57
Prep for presentation
// C# 6 return complex types
public class result
{
public int Sum {get;set;}
public int Count {get;set;}
}
public result Total(int[] values)
{
return new result