System.Reflection.TypeInfo.GetDeclaredMethods C# (CSharp) Method

GetDeclaredMethods() public method

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