Skip to content

Instantly share code, notes, and snippets.

@IntegerMan
Created November 7, 2022 03:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save IntegerMan/ffd37a16c769915f643df0ebcfc6aea7 to your computer and use it in GitHub Desktop.
Save IntegerMan/ffd37a16c769915f643df0ebcfc6aea7 to your computer and use it in GitHub Desktop.
public void WithdrawMoney(decimal amount)
{
if (amount <= 0)
{
throw new InvalidOperationException();
}
// Actual withdraw code
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment