我正在尝试编写一个函数,该函数将使用如下语法提取属性的名称和类型:
private class SomeClass
{
Public string Col1;
}
PropertyMapper<Somewhere> propertyMapper = new PropertyMapper<Somewhere>();
propertyMapper.MapProperty(x => x.Col1)
有没有什么方法可以将属性传递给函数,而无需对该语法进行任何重大更改?
我想获取属性名称和属性类型。
所以在下面的例子中我想检索
Name = "Col1"
和Type = "System.String"
任何人都可以帮忙吗?