| c# Programming Glossary: pi.nameEnumerating through an object's properties (string) in C# http://stackoverflow.com/questions/1447308/enumerating-through-an-objects-properties-string-in-c-sharp  typeof string pi.GetGetMethod null .Select pi new  Name pi.Name Value pi.GetGetMethod .Invoke myObject null Usage foreach var.. 
 How can I get the primitive name of a type in C#? http://stackoverflow.com/questions/4369737/how-can-i-get-the-primitive-name-of-a-type-in-c  e.g. foreach var pi in mi.GetParameters Console.WriteLine pi.Name pi.ParameterType.ToString This works pretty well but it prints.. 
 Comparing object properties in c# http://stackoverflow.com/questions/506096/comparing-object-properties-in-c-sharp  pi in sourceProperties  if sourceType.GetProperty pi.Name .GetValue this null null destinationType.GetProperty pi.Name.. .GetValue this null null destinationType.GetProperty pi.Name .GetValue comparisonObject null null   if both are null don't.. compare throws exception  else if sourceType.GetProperty pi.Name .GetValue this null .ToString destinationType.GetProperty pi.Name.. 
 How to recursively Iterate over properties of an Entity http://stackoverflow.com/questions/5381851/how-to-recursively-iterate-over-properties-of-an-entity  actualDescendant.Name  else  Console.WriteLine pi.Name pi.GetValue ObjectToRecurse null  EDIT This code came from some..  BadTypes.Contains pi.PropertyType  pi.Name.Equals Extension.GetPropertyName new FMVHistory .FMVHistoryId.. 
 |