using System.Collections.Generic; namespace Semmle.Extraction.CIL { /// /// A generic context which does not contain any type parameters. /// public class EmptyContext : GenericContext { public EmptyContext(Context cx) : base(cx) { } public override IEnumerable TypeParameters { get { yield break; } } public override IEnumerable MethodParameters { get { yield break; } } } }