File: src\Tools\Shared\CommandLine\Ensure.cs | Web Access |
Project: src\src\Tools\dotnet-sql-cache\src\dotnet-sql-cache.csproj (dotnet-sql-cache) |
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. using System; namespace Microsoft.Extensions.Tools.Internal; internal static class Ensure { public static T NotNull<T>(T obj, string paramName) where T : class { if (obj == null) { throw new ArgumentNullException(paramName); } return obj; } } |