This file contains 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
namespace SView.Global | |
{ | |
using System; | |
using System.Linq.Expressions; | |
using System.Reflection; | |
/// <summary> | |
/// https://vagifabilov.wordpress.com/2010/04/02/dont-use-activator-createinstance-or-constructorinfo-invoke-use-compiled-lambda-expressions/ | |
/// </summary> | |
public class Activator |
This file contains 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
/* Use with caution! http://davesexton.com/blog/post/To-Use-Subject-Or-Not-To-Use-Subject.aspx */ | |
public class SomeClass { | |
private readonly Subject<int> triggerableObservable = | |
new Subject<int>(); | |
public IObservable<int> TriggeredObservable => triggerableObservable.AsObservable(); | |
private IDisposable subscription; | |
public SomeClass() |
This file contains 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 System; | |
using Moq; | |
using Refit; | |
using Xunit; | |
namespace Some.Kind.Of.Space | |
{ | |
[Collection("Feature Name")] | |
[Trait("Feature Aspect", "Classification")] | |
public class FeatureClassNameTests |
This file contains 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 System; | |
using System.Collections.Generic; | |
using System.Globalization; | |
using System.Text.RegularExpressions; | |
namespace Extensions | |
{ | |
public static class StringExtensions | |
{ | |
private static readonly Regex _keyRegex = new Regex("{([^{}:]+)(?::([^{}]+))?}", RegexOptions.Compiled); |
This file contains 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 System.Net.Http; | |
using System.Threading; | |
using System.Threading.Tasks; | |
namespace Namespace123 | |
{ | |
public class MockHttpMessageHandler : HttpMessageHandler | |
{ | |
private readonly HttpResponseMessage? message; |