Skip to content

Instantly share code, notes, and snippets.

@kellerd
kellerd / V1.cs
Last active January 22, 2016 13:52
Functional vs OOP
public class Adder
{
public int Value { get; set; }
public Adder(int Value)
{
this.Value = Value;
}
//Make it fluent
public int Add(int Number)
@kellerd
kellerd / index.aspx.part
Last active October 23, 2015 15:30
Code for failing to export to excel
<asp:Button ID="btnExportToExcel" runat="server" Text="Export to Excel"></asp:Button>