diff --git a/README.md b/README.md index 7d2a370..958ba45 100644 --- a/README.md +++ b/README.md @@ -18,3 +18,4 @@ public static Contractor CreatePerson([NotNull] string firstName, [NotNull] stri throw Fail.Because("Not implemented yet"); } ``` +What you can find above is some attributes from ReSharper's [static nullability analysis](https://www.jetbrains.com/resharper/help/Code_Analysis__Code_Annotations.html). The `[NotNull]` or `[CanBeNull]` attributes inform ReSharper about nullability contract of your method.