How do we generate the ITokenBuilder class/interface in C# that has all the necessary tags and stuff like in the code snippet below:
 /// <summary>
 ///  Initializes a new instance of the <see cref="Token"/> class.
 /// </summary>
 /// <param name="builder">Token builder</param>
 protected Token(ITokenBuilder builder)
 {
     Lexeme = builder.Lexeme;
     LeftTrivia = builder.LeftTrivia;
     RightTrivia = builder.RightTrivia;
 }
Do I need to manually type in the /// <summary> stuff?
