Interface and class documentation comments C# with Example



Interface and class documentation comments C# with Example

///  
/// This interface can do Foo 
///  
public interface ICanDoFoo 
{ 
// ... 
} 
///  
/// This Bar class implements ICanDoFoo interface 
///  
public class Bar : ICanDoFoo 
{ 
// ... 
} 
Result 
Interface summary 
Class summary 
 

0 Comment's

Comment Form

Submit Comment