Here is my code:
receipt.AmountCharged = String.Format("{0:C}", recordPaymentRequest.Payment);
I am getting a message at "0:C" saying:
formatting is specified but argument is not IFormatable
If I try .tostring("C")l I get:
error CS1502: The best overloaded method match for 'string.ToString(System.IFormatProvider)' has some invalid arguments error CS1503: Argument 1: cannot convert from 'string' to 'System.IFormatProvider'
How do I convert this to currency or 2 decimals?
And what does that iformatprovider mean?
For clarification:
[DataContract]
public class RecordPaymentRequest : TokenRequest {
[DataMember]
public string Payment {
get { return payment; }
set { payment = value; }
}
Does that help?
recordPaymentRequest.Payment? – Magnus Aug 16 '12 at 17:47