public static TValue NotNull()

in JetBrains.Etw.HostService.Updater/src/Util/ValidationUtil.cs [9:14]


    public static TValue NotNull<TValue>([CanBeNull] this TValue value) where TValue : class
    {
      if (value == null)
        throw new NullReferenceException();
      return value;
    }