using System; namespace Wox.Infrastructure { static class Helper { /// /// http://www.yinwang.org/blog-cn/2015/11/21/programming-philosophy /// public static T RequireNonNull(this T obj) { if (obj == null) { throw new NullReferenceException(); } else { return obj; } } } }