in C# , how can i check whether the value stored inside a string object( Ex : string strOrderId=\"435242A\") is decimal or not?
Think simple.
decimal decNumber = decimal.Parse("9.99"); if (decNumber % 1 > 0) { //decimal area } else { //int area }