System.Reflection.RuntimeReflectionExtensions.GetRuntimeFields C# (CSharp) Méthode

GetRuntimeFields() public static méthode

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

			return type.GetFields (AllMembersBindingFlags);
		}