我想创建一个这样的字符串对象
string data = "85-null-null-null-null-price-down-1-20"; // null if zero
我有这样的方法。
public static DataSet LoadProducts(int CategoryId, string Size,
string Colour, Decimal LowerPrice,
Decimal HigherPrice, string SortExpression,
int PageNumber, int PageSize,
Boolean OnlyClearance)
{
/// Code goes here
/// i am goona pass that string to one more method here
var result = ProductDataSource.Load(stringtoPass) // which accepts only the above format
}
我知道我可以使用 a StringBuilder
,但是使用它需要太多的代码行。我在这里寻找一个简约的解决方案。