From 1c71bd58d5b4bfcb43f87ddab8b8d16b245e2101 Mon Sep 17 00:00:00 2001 From: Marcin Celej Date: Sun, 4 Sep 2016 07:44:16 +0200 Subject: [PATCH] Create documentation #13 --- README.md | 1 + 1 file changed, 1 insertion(+) 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.