static void Main(string[] args) {
string[] prices= { “10.20”, “8.77121”, “11.112398”, “51.23122” };
int[] decmalPoints = { 1,3, 0,4};
for (int i = 0; i < prices.Length; i++){
Console.WriteLine(Math.Round(Convert.ToDecimal(prices[i]), decmalPoints[i]));
}
}
Blog