在C#中将字符串类型转换为货币

时间:2015-01-01 21:22:19

标签: c# math console type-conversion

我正在尝试将TR的字符串输入和字符串PMP转换为货币然后相乘以获得美元货币的输出。

       string SP;  // Sales Price

       string TR;  //Total Revenue

       string PMP; //Property management percentage

       string PMF; //Property Management Monthly Fee


       Console.WriteLine("What is the total rent revenue?");
       TR = Console.ReadLine();
       Console.WriteLine("what is the percentage you pay to property managment?");
       PMP = Console.ReadLine();
       Console.WriteLine("you will be buying {0}", PMF );


        SP = Console.ReadLine();
        TR = Console.ReadLine();
        PMP = Console.ReadLine();
        PMF = string.Format("{TR:C,PMP:C}") <------- THIS IS WHERE I AM TRYING TO CONVERT AND MULTIPLY****

任何帮助都将不胜感激。谢谢

PS我不是交易程序员(主要是网络工程和服务器管理员),这是我编程的第一个20小时。

2 个答案:

答案 0 :(得分:0)

  1. Format语法更像string.Format("{0:C},{1:C}", TR, PMP)
  2. 您只能格式化数字类型,例如decimal。考虑decimal.TryParse以查看用户键入的内容,看起来是数字,然后格式化结果数字。
  3. 对于乘法,您当然需要数字类型,例如decimal,并使用星号符号*作为乘法运算符。

答案 1 :(得分:0)

如果是我,我会首先创建一个从用户那里获取有效十进制数的方法(因为我们这样做了几次,并且在用户输入无效条目时应该有一些错误处理)。类似的东西:

public static decimal GetDecimalFromUser(string prompt,
    string errorMessage = "Invalid entry. Please try again.")
{
    decimal value;

    while (true)
    {
        if (prompt != null) Console.Write(prompt);
        if (decimal.TryParse(Console.ReadLine(), out value)) break;
        if (errorMessage != null) Console.WriteLine(errorMessage);
    }

    return value;
}

然后,我会调用此方法来获取用户的输入,进行所需的计算(您没有指定公式,因此我即兴创作),并将值输出给用户:

decimal totalRevenue = GetDecimalFromUser("Enter the monthly rent revenue: $");
decimal propMgmtPct = GetDecimalFromUser("Enter the percentage you pay " +
    "for property management: ");
decimal propMgmtFee = totalRevenue * propMgmtPct;

Console.WriteLine("The monthly property management fee will be: {0}",
    propMgmtFee.ToString("C2", CultureInfo.CreateSpecificCulture("en-US")));