ICSharpCode.NRefactory.MonoCSharp.Class.GetCompletionStartingWith C# (CSharp) Method

GetCompletionStartingWith() public method

public GetCompletionStartingWith ( string prefix, List results ) : void
prefix string
results List
return void
		public override void GetCompletionStartingWith (string prefix, List<string> results)
		{
			base.GetCompletionStartingWith (prefix, results);

			var bt = base_type;
			while (bt != null) {
				results.AddRange (MemberCache.GetCompletitionMembers (this, bt, prefix).Where (l => l.IsStatic).Select (l => l.Name));
				bt = bt.BaseType;
			}
		}