using Sandbox; /// /// This class has a description! /// public class DescriptionTest { /// /// This property has a description! /// public int Foo { get; set; } /// /// This method has a description! /// /// /// This parameter has a description! /// /// /// Here's a description of the return value! /// public int Bar( int baz ) { return baz; } public int Boo( int bep ) { return bep; } /// /// Method description. See also: ! /// Here's a parameter reference: . /// /// How about some code: Console.WriteLine("Hello, World!"); /// /// /// Here's some more refs: /// , /// , /// . /// /// /// A useful argument. public int ComplexDescription( int arg ) { return arg; } public class NestedType { } } public class GenericTest { public int SomeProperty { get; set; } }