How do you quickly find the implementation(s) of an interface’s method? [duplicate]

Since I don’t like to use the mouse while coding, I usually move the cursor over the method type ctrl+k clrl+t to open the Call Hierarchy window move down to Implements node. type Return to go to the selected implementation AFAIK this is the quickest way to find the implementation of a method, without ReSharper. … Read more

What interfaces do all arrays implement in C#?

From the documentation (emphasis mine): […] the Array class implements the System.Collections.Generic.IList<T>, System.Collections.Generic.ICollection<T>, and System.Collections.Generic.IEnumerable<T> generic interfaces. The implementations are provided to arrays at run time, and therefore are not visible to the documentation build tools. EDIT: as Jb Evain points out in his comment, only vectors (one-dimensional arrays) implement the generic interfaces. As to … Read more