Skip to content

Instantly share code, notes, and snippets.

View gmbalaa14's full-sized avatar
🎯
Focusing

Balagurunathan Marimuthu gmbalaa14

🎯
Focusing
  • UFours IT Solution Private Limited
  • Madurai
View GitHub Profile
@m-jovanovic
m-jovanovic / Result.cs
Created September 7, 2023 08:03
Result type
public class Result
{
protected internal Result(bool isSuccess, Error error)
{
if (isSuccess && error != Error.None)
{
throw new InvalidOperationException();
}
if (!isSuccess && error == Error.None)