Skip to content

Instantly share code, notes, and snippets.

@jonpryor
Created November 27, 2012 15:47
Show Gist options
  • Save jonpryor/4154971 to your computer and use it in GitHub Desktop.
Save jonpryor/4154971 to your computer and use it in GitHub Desktop.
$ csharp
Mono C# Shell, type "help;" for help
Enter statements below.
csharp> class X { public int Foo {get;set;} }
csharp> var x = typeof(X);
csharp> x.GetProperty("Foo").GetGetMethod().IsVirtual;
false
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment