in C# , how can i check whether the value stored inside a string object( Ex : string strOrderId=\"435242A\") is decimal or not?
decimal decValue; if (decimal.TryParse(strOrderID, out decValue) { / *this is a decimal */ } else { /* not a decimal */}