string test = "";
string test1 = string.Empty;
But i use decimal as empty
decimal test3 = "";
decimal test3 = "";
this is show
Cannot Implicitly convert type 'string' to 'decimal'
and try another to refer in online to use for fix this
string test1 = string.Empty;
decimal test2 = decimal.Parse(test1);
decimal test2 = decimal.Parse(test1);
but it shows
Input string was not in a correct format.

RajaPosted Apr 12, 2017, 8:53 AM
Ramesh Palanivel
Ramesh PalanivelPosted Apr 12, 2017, 8:43 AM
RajaPosted Apr 12, 2017, 8:41 AM
Ramesh Palanivel
Ramesh PalanivelPosted Apr 12, 2017, 7:54 AM
Avinash AherPosted Apr 12, 2017, 7:42 AM
Ranjeet PatraPosted Apr 12, 2017, 7:18 AM