このような文字列オブジェクトを作成したい
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
}
を使用できることはわかっていますがStringBuilder
、それを使用すると、コードの行数が多すぎます。私はここでミニマルな解決策を探しています。