// Compiler options: -doc:xml-029.xml using System; class Test1 { /// /// Some test documentation /// void Foo(){} public static void Main () {} } /// /// Publicly available interface /// public interface ITest2 { /// /// Some test documentation /// void Foo(); /// /// Some test documentation /// long Bar { get; } /// /// Some test documentation /// event EventHandler EventRaised; }