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);
		}