Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/xamarin/NRefactory.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'ICSharpCode.NRefactory/TypeSystem/ExtensionMethods.cs')
-rw-r--r--ICSharpCode.NRefactory/TypeSystem/ExtensionMethods.cs6
1 files changed, 2 insertions, 4 deletions
diff --git a/ICSharpCode.NRefactory/TypeSystem/ExtensionMethods.cs b/ICSharpCode.NRefactory/TypeSystem/ExtensionMethods.cs
index 7a946fd5..a0a59c35 100644
--- a/ICSharpCode.NRefactory/TypeSystem/ExtensionMethods.cs
+++ b/ICSharpCode.NRefactory/TypeSystem/ExtensionMethods.cs
@@ -410,16 +410,14 @@ namespace ICSharpCode.NRefactory.TypeSystem
#region ITypeReference.Resolve(ICompilation)
/// <summary>
- /// Resolves a type reference.
+ /// Resolves a type reference in the compilation's main type resolve context.
+ /// Some type references require a more specific type resolve context and will not resolve using this method.
/// </summary>
/// <returns>
/// Returns the resolved type.
/// In case of an error, returns <see cref="SpecialType.UnknownType"/>.
/// Never returns null.
/// </returns>
- /// <param name='compilation'>
- /// The compilation in which the type should be resolved.
- /// </param>
public static IType Resolve (this ITypeReference reference, ICompilation compilation)
{
if (reference == null)