コード例 #1
0
 public void Variable_Fails_On_Constant()
 {
     Reflect.Variable(() => 1);
 }
コード例 #2
0
 public GenericClass(IModel <TModel> model)
 {
     Assert.AreEqual("model", Reflect.VariableName(() => model));
 }
コード例 #3
0
 public string GetNameOfProperty()
 {
     return(Reflect.Property(() => Target.SomeProperty).Name);
 }
コード例 #4
0
        static void TestGenericMethod <TModel>(IModel <TModel> model)
        {
            var name = Reflect.Variable(() => model).Name;

            Assert.AreEqual("model", name);
        }