This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using UnsignedInteger = System.UInt16; // Sorry, I can't unabbreviate it on the RHS | |
// https://twitter.com/taylonr/status/712277308363542530 | |
namespace FizzBuzz | |
{ | |
class Program | |
{ | |
static void Main(System.String[] args) | |
{ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// make sure to add autofac to the project | |
using System; | |
using System.Collections.Generic; | |
using System.Linq; | |
using System.Text; | |
using Autofac; | |
using Autofac.Configuration; | |
namespace ValidationTest |