Skip to content

Instantly share code, notes, and snippets.

@capnslipp
Created January 22, 2014 02:17
Show Gist options
  • Save capnslipp/8552399 to your computer and use it in GitHub Desktop.
Save capnslipp/8552399 to your computer and use it in GitHub Desktop.
C# modifier syntax wishlist
struct Plainy
{
public:
readonly:
int foo;
int bar;
}
static class Clingy
{
static:
public void DoFoo() {
DoBar();
}
private void DoBar() {}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment