I have a variable which is storing as decimal:
decimal firststYrComp = Int16.Parse(tb1stYr.Text.ToString());
Now I have this to get typecasted
Just Try
Decimal yourDecimal = 3.222222m; Convert.ToDouble(yourDecimal);