-
Notifications
You must be signed in to change notification settings - Fork 0
BooleanResult
Kyle Lauffer edited this page Aug 8, 2021
·
1 revision
var booleanResult = new BooleanResult.True();
var myString = booleanResult.Match(() => "I'll return this value", () => "I won't return this value");var booleanResult = new BooleanResult.False();
var myString = booleanResult.Match(() => "I won't return this value", () => "I'll return this value");