>Code below illustrate how to process a list of T and validating or checking the value of one of the property of object T using C# 3.0 extension methods.
///
/// Method that returns Value of Property from an Object
///
///
///
///
public static string GetPropertyValue(this object obj, string propertyName)
{
if (obj == null)
{
throw new ArgumentNullException(“obj”);
}
PropertyInfo propertyInfo = obj.GetType().GetProperty(propertyName);
if (propertyInfo != null)
{
object prop = propertyInfo.GetValue(obj, null);
return prop.ToString();
}
else
{
return string.Empty;
}
}
Sample Usage:
///
//////
[TestMethod()]
public void GetPropertyValueTest()
{
List
{
new TestClass
{
GUID = “Not this value”
},
new TestClass
{
GUID = “ThisValue”
}
};
ProcessList(list);
}
private void ProcessList
{
//Check the value of certain property in T object
var query = list.Find(i => i.GetPropertyValue(“GUID”) == “ThisValue”);
if(query != null)
{
//Match Found.. Do processing here
}
else
{
//No Match found..
}
}