Open
Description
I was wondering how I could go about adding a method summary to this code that would list all the methods in a class?
'''
/// summary>
/// Class of Pugs
/// /summary>
/// method name="bark">
/// method name="sniff">
public class pugs{
public pugs(string name){
}
public void bark(string sound){
}
public void sniff(){
}
}
'''
Activity