Browse Source

Fixed ReducedFrom description.

pull/32/merge
Mike Krüger 13 years ago
parent
commit
7479801ff9
  1. 3
      ICSharpCode.NRefactory/TypeSystem/IMethod.cs

3
ICSharpCode.NRefactory/TypeSystem/IMethod.cs

@ -134,7 +134,8 @@ namespace ICSharpCode.NRefactory.TypeSystem @@ -134,7 +134,8 @@ namespace ICSharpCode.NRefactory.TypeSystem
IMember AccessorOwner { get; }
/// <summary>
/// If this method is reduced from an extension method return the original method, <c>null</c> otherwhise.
/// If this method is reduced from an extension method return the original method, <c>null</c> otherwise.
/// A reduced method doesn't contain the extension method parameter. That means that has one parameter less than it's definition.
/// </summary>
IMethod ReducedFrom { get; }
}

Loading…
Cancel
Save