System.Reflection.TypeInfo.GetDeclaredMethods C# (CSharp) 메소드

GetDeclaredMethods() 공개 메소드

public GetDeclaredMethods ( string name ) : IEnumerable
name string
리턴 IEnumerable
		public virtual IEnumerable<MethodInfo> GetDeclaredMethods (string name)
		{
			foreach (var method in GetMethods (declaredFlags))
				if (method.Name.Equals (name))
					yield return method;
		}