I have a variable which is storing as decimal:
decimal firststYrComp = Int16.Parse(tb1stYr.Text.ToString());
Now I have this to get typecasted
You can use decimal's built in converter.
decimal decimalValue = 5; double doubleValue = decimal.ToDouble(decimalValue);