Skip to content

Instantly share code, notes, and snippets.

View kiwidev's full-sized avatar

Mark Young kiwidev

  • Microsoft
  • New Zealand
View GitHub Profile
using System;
using System.CodeDom.Compiler;
using System.Collections.Generic;
using System.Diagnostics;
using System.Linq;
using System.Reflection;
using System.Threading;
using System.Threading.Tasks;
using Xunit;
using Xunit.Abstractions;
using System;
namespace Immutable
{
enum Qux { Qux1, Qux2 }
class Baz
{
public Baz(Qux qux)
{
using System;
namespace Immutable
{
enum Qux { Qux1, Qux2 }
static class Option
{
public static Option<T> Value<T>(T value)
{
using System;
using System.Collections.Generic;
using System.Net.Http;
using System.Threading.Tasks;
using Xunit;
public class Fixture
{
[Fact]
public void Should_FactMethodName()