要約とパラメータのテキストを書くために、どのくらい詳細に入る必要があるか、完全な文を使用するかどうか、または何かについてのベスト プラクティスはありますか? これらをもっと使い始めると、確立するためのいくつかの良い習慣を探しています. ありがとう!
public class JustinBieber{
private readonly bool HasTalent;
JustinBieber(){
HasTalent = false;
}
/// <summary>
/// JustinBieber object sings a song in specified style
/// </summary>
/// <param name="songName">The song to be sung</param>
/// <param name="style">The style in which the song is sung</param>
public void SingSong(string songName, string style){
...
}
}