diff --git a/README.md b/README.md index 3e836eb..57ee4b4 100644 --- a/README.md +++ b/README.md @@ -52,8 +52,7 @@ public void Example1() Option option = 1; // Most Performant - int value; - if (option.TryGetValue(out value)) + if (option.TryGetValue(out int value)) // C# 7 out variables { // Do something with the value Console.WriteLine(value);