Skip to content

Instantly share code, notes, and snippets.

View Keboo's full-sized avatar

Kevin B Keboo

View GitHub Profile
@Keboo
Keboo / SpekkCheck.csx
Last active December 4, 2015 06:32
Serialize Spell Check
#r "C:\Dev\microsoft\packages\Newtonsoft.Json.7.0.1\lib\portable-net45+wp80+win8+wpa81+dnxcore50\Newtonsoft.Json.dll"
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Net;
using System.Threading.Tasks;
using Newtonsoft.Json;
public class Spell
@Keboo
Keboo / ExceptionFiltersFizzBuzz.cs
Created March 24, 2015 04:45
An example of C# exception filter.
using Microsoft.VisualStudio.TestTools.UnitTesting;
using System;
using static System.Diagnostics.Debug;
namespace Example
{
[TestClass]
public class ExceptionFiltersFizzBuzz
{
[TestMethod]