.NET的字符串操作问题

Sre*_*har 1 .net c#

如果其他地方什么都不做,我怎么能从下面删除第一个逗号+空格.

string comments = ", 38, ";
Run Code Online (Sandbox Code Playgroud)

Zac*_*tes 5

if( comments.StartsWith(", ") && comments.Length > 2 ) {
  comments = comments.Substring(2);
}
Run Code Online (Sandbox Code Playgroud)