how to convert 44/5 in C# to get decimal values actual result will be like this 13.75 but i got only 13
need 13.75 how to get tried many solutions but not possible to get please help to find
-----------Tried Methods--------------------
protected void txtbox_TextChanged(object sender, EventArgs e)
{
int cal= 55 / 4; //13
decimal cal= 55 / 4; //13
string cal= String.Format("{0:0.00}", 55 / 4); //13.00
decimal cal= decimal.Floor(55 / 4); //13
SalesPrice.Text = cal.ToString();
}