System.Reflection.RuntimeReflectionExtensions.GetRuntimeFields C# (CSharp) Method

GetRuntimeFields() public static method

public static GetRuntimeFields ( this type ) : IEnumerable
type this
return IEnumerable
		public static IEnumerable<FieldInfo> GetRuntimeFields (this Type type)
		{
			if (type == null)
				throw new ArgumentNullException ("type");

			return type.GetFields (AllMembersBindingFlags);
		}