我正在做一个货币转换项目,现在我已经构建了一个小脚本来从我的数据库中提取转换率和描述,但我似乎无法找到将变量 (Rate) 拉出的方法数据读取器创建的字符串。
这是代码片段:
if (reader.HasRows)
//The reader will only read the rows if the ISO code matches the options avalible within the DB
{
Console.WriteLine("Result Found!");
while (reader.Read())
{
Console.WriteLine("Rate: {0}\t Conversion Rate: {1}",
reader[0], reader[1]);
}
reader.Close();
}
现在我想要 Rate 变量,它是一个小数,而不必转换它或将它推到适配器中(我是 C# 的新手)。
tl;博士我只想要“Rate:{0}”的输出,所以我可以用它来转换货币。
有任何想法吗?