我刚刚开始查看 C# 文档标准。这是我拥有的一种方法:
/// <summary>
/// Reformats a key in x.x format to 0x0x format
/// </summary>
/// <param name="dotFormatRowKey">key in ##.## format</param>
public static string DotFormatToRowKey(this string dotFormatRowKey)
{
if (! Regex.IsMatch(dotFormatRowKey, @"\d+\.\d+"))
throw new ArgumentException("Expected ##.##, was " + dotFormatRowKey);
var splits = dotFormatRowKey.Split('.')
.Select(x => String.Format("{0:d2}", Int32.Parse(x)))
.ToList();
var joined = String.Join(String.Empty, splits.ToArray())
return joined;
}
有人可以就如何记录此方法的输入和返回参数给我建议。另外,当我这样做时,如果某人使用 VS2010 智能感知,他们是否可以使用记录在案的评论?