RuntimeNullables icon indicating copy to clipboard operation
RuntimeNullables copied to clipboard

Automatic null check injection for runtime C# 8+ Nullable Reference Type (NRT) contract validation.

Results 2 RuntimeNullables issues
Sort by recently updated
recently updated
newest added

First of all thank you very much for a great library! Here is a case: 1. Create an ASP.NET Core project and add `RuntimeNullables` package 2. Create endpoint and request...

Wondering if it's something you've thought about. Semantically, I'm thinking it'd be equivalent to this: ```csharp public void Foo(ref int i) { if (Unsafe.IsNullRef(ref i)) throw ...; ... } ```