Skip to content

Instantly share code, notes, and snippets.

@juanplopes
juanplopes / gist:975740
Created May 17, 2011 01:48
Property paradox
public class PropertyWrapper : IFixture
{
class TestClass
{
public string TestProperty { get; set; }
}
public void Execute(Runner my)
{
var prop = typeof(TestClass).GetProperty("TestProperty");