Reporter | Stephen Swensen (Stephen.Swensen) |
---|---|
Created | Jan 16, 2012 5:19:01 PM |
Updated | Jan 16, 2012 5:19:01 PM |
Priority | Normal |
Type | Unspecified |
Fix versions | No Fix versions |
State | Submitted |
Assignee | Unassigned |
Subsystem | No subsystem |
Affected versions | No Affected versions |
Fixed in build | No Fixed in build |
In the following example, ReSharper says "Cannot resolve symbol '@this'"
public static bool SequenceEquals<T, R>(this IEnumerable<T> @this, IEnumerable<R> other, Func<T, R, bool> comparer) { if(@this == null) throw new ArgumentNullException("@this"); if (other == null) throw new ArgumentNullException("other"); return false; }