Innovenergy_trunk/csharp/Lib/Utils/NullableUtils.cs

8 lines
180 B
C#
Raw Normal View History

2023-02-16 12:57:06 +00:00
namespace InnovEnergy.Lib.Utils;
public static class NullableUtils
{
// ReSharper disable once ReturnTypeCanBeNotNullable
public static T? AsNullable<T>(this T t) => t;
2023-02-16 12:57:06 +00:00
}