File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 22
33## Version Changes
44
5+ ### 1.0.0 - 2022-01-02
6+
7+ - C# 10 adopted
8+ - .Net Standard support deprecated
9+ - Support from .Net6 onwards
10+ - New CSA tools added into the build pipeline
11+
512### 0.3.6 - 2021-01-25
613
714- Added ToCamelCase string extension methods.
Original file line number Diff line number Diff line change 88
99Common utility classes, guard clauses, and more.
1010
11- Targeted to .Net Standard 2.0
11+ Targeted to .Net6 onwards
1212
1313## Installation
1414
@@ -36,7 +36,7 @@ All the documentation can be found on the [github page](https://bytedecoder.me/B
3636
3737They are a piece of code in charge of protecting params at the top of methods against undesirable values.
3838
39- Supported * Guard Clauses * :
39+ Supported _ Guard Clauses _ :
4040
4141- IfArgumentIsNull
4242- IfArgumentIsNullOrEmpty
@@ -51,15 +51,15 @@ using ByteDecoder.Common.GuardClauses;
5151public void MethodOne (IEnumerable < string > collection )
5252{
5353 Guard .Break .IfArgumentIsNull (collection , nameof (collection ));
54-
54+
5555 // More logic code if the param is suitable after the guard evaluates the condition.
5656 }
5757
5858// String is NUll or Empty Guard check
5959public void MethodTwo (string word )
6060{
6161 Guard .Break .IfArgumentIsNull (word , nameof (word ));
62-
62+
6363 // More logic code if the param is suitable after the guard evaluates the condition.
6464 }
6565
You can’t perform that action at this time.
0 commit comments