标签:com info str err show message mes vat sage
private void Load_Control_ReCombine<T>(List<T> list, string propertyName, string RecombineID)
{
try
{
FieldInfo fieldInfo = typeof(T).GetField(propertyName);
foreach (T te in list)
{
string LabelID = (string)(fieldInfo.GetValue(te));
catch (Exception error)
{
MessageBox.Show(error.Message);
}
}
标签:com info str err show message mes vat sage
原文地址:https://www.cnblogs.com/Micah-blog/p/13962127.html