如何在 C# 的以下代码中用 double 替换字符串以计算“距离”(而不是时间)?距离最初为 0.00。试图通过 Windows Phone 中的 Sqlite 发布值。
private string time = string.Empty;
public string Time
{
get { return time; }
set { if (SetProperty(ref time, value)) IsDirty = true; }
}
// 需要将值放在下面的行中。
internal CustomerViewModel(int id, double pace, string time, double distance )
{
this.id = id;
this.pace = pace;
this.time = time;
this.distance = distance;
this.isDirty = false;
}