在我們的模板之一報表打印有如下代碼:測試值拳頭字符 - C#
if (!string.IsNullOrEmpty(assetModel.Belongings))
{
description = string.Format("{0}{1}{2}",
description,
string.IsNullOrEmpty(description) ? "" : ", ",
assetModel.Belongings);
}
我想測試財物場的第一個字符。如果它不是一個「」那麼上面的代碼應該使用,但如果它是一個「」代碼應該是這樣的:
if (!string.IsNullOrEmpty(assetModel.Belongings))
{
description = string.Format("{0}{1}{2}",
description,
string.IsNullOrEmpty(description) ? "" : "",
assetModel.Belongings);
}
請幫幫忙,我如何測試的第一個字符的這個值?
可以使用[String.StartsWith](https://msdn.microsoft.com/en-us/library/baketfxw(V = VS .110).aspx) – bansi