Пример #1
0
 /// <summary>
 /// Get all the methods with a specified name in this scope.
 /// </summary>
 /// <param name="name">The name of the method(s).</param>
 /// <returns>An array of all the methods called "name".</returns>
 public MethodRef[] GetMethods(string name)
 {
     Contract.Requires(name != null);
     return(defaultClass.GetMethods(name));
 }