System.Reflection.RuntimeReflectionExtensions.GetRuntimeFields C# (CSharp) Метод

GetRuntimeFields() публичный статический Метод

public static GetRuntimeFields ( this type ) : IEnumerable
type this
Результат IEnumerable
		public static IEnumerable<FieldInfo> GetRuntimeFields (this Type type)
		{
			if (type == null)
				throw new ArgumentNullException ("type");

			return type.GetFields (AllMembersBindingFlags);
		}