in C# , how can i check whether the value stored inside a string object( Ex : string strOrderId=\"435242A\") is decimal or not?
Declare decimal out value in TryParse
if(Decimal.TryParse(stringValue,out decimal dec)) { // .... }