Skip to content

Instantly share code, notes, and snippets.

@bvst
Last active August 29, 2015 13:55
Show Gist options
  • Save bvst/8731110 to your computer and use it in GitHub Desktop.
Save bvst/8731110 to your computer and use it in GitHub Desktop.
public void Ok()
{
var s = "This is the rythem";
if(true | ReturnFalse | Yolo(s, out s))
{
s+="the night!"
}
s+= "Aww yeah."
}
private bool ReturnFalse
{
get
{
return false;
}
}
private bool Yolo(string st, out string s)
{
s = st+"of the night";
return true;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment