CSharp examples for System.Reflection:MethodInfo
Should Serialize Method
using System.Threading.Tasks; using System.Text; using System.Runtime.Serialization; using System.Runtime.CompilerServices; using System.Reflection.Emit; using System.Reflection; using System.Linq; using System.IO;//from w w w . j a v a 2 s . c o m using System.Globalization; using System.Collections.Generic; using System; public class Main{ public static MethodInfo ShouldSerializeMethod(this PropertyInfo prop, Type serializingType) { var mtdName = "ShouldSerialize" + prop.Name; var ret = serializingType .GetMethods(BindingFlags.Instance | BindingFlags.Public | BindingFlags.NonPublic) .Where(m => m.Name == mtdName && m.ReturnType == typeof(bool) && m.GetParameters().Length == 0) .SingleOrDefault(); return ret; } public static Type ReturnType(this MemberInfo m) { var asField = m as FieldInfo; var asProp = m as PropertyInfo; return asField != null ? asField.FieldType : asProp.PropertyType; } }