Skip to content

Commit

Permalink
#9 Delete true from ToOther parameters (docs)
Browse files Browse the repository at this point in the history
  • Loading branch information
kurnakovv committed Mar 4, 2024
1 parent 11da217 commit c183d54
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion DocsReadMe.md
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ IEnumerable<InputEnum> inputEnums = new List<InputEnum>()
{
InputEnum.First, InputEnum.Second, InputEnum.Third,
};
IEnumerable<OutputEnum> output = inputEnums.ToOther<InputEnum, OutputEnum>(true);
IEnumerable<OutputEnum> output = inputEnums.ToOther<InputEnum, OutputEnum>(); // or false if case is important.
// output
// 1 - OutputEnum.First
Expand Down

0 comments on commit c183d54

Please sign in to comment.