I want to add figures together from model and display them formatted like a dollar amount.
Here is the code I'm attempting to format:
<td class="confirmationlabel">$@(Model.Amount + Model.FeeAmount) </td>
How do I go about formatting the output to be in $0.00 format? I tried adding tostring to the end but it didn't recognize it. Right now, if it is a whole dollar, it comes out without the .00 at the end.