using System.Collections.Generic; using AspClassic.Scripting.Hosting; namespace AspClassic.Scripting.Runtime; public abstract class DocumentationProvider { public abstract ICollection GetMembers(object value); public abstract ICollection GetOverloads(object value); }