我有多行,我明确地说我想将某些东西转换为string
or bool
or date
etc..
是否有可能以某种方式将它封装在我传递我想要转换的对象并传递我想要得到的东西作为回报的方法中?
我现在拥有的
foreach (var item in archive.Items)
{
var newItem = new Item();
newItem.Notes = Convert.ToString(item.FirstOrDefault(x => x.Key == "notes").Value);
newItem.IsPublic = Convert.ToBoolean(item.FirstOrDefault(x => x.Key == "ispublic").Value);
}
我想要的(伪)
foreach (var item in archive.Items)
{
var newItem = new Item();
newItem.Notes = GetValue("notes", string)
newItem.IsPublic = GetValue("ispublic", bool)
}
// ...
public T GetValue(string key, T type)
{
return object.FirstOrDefault(x => x.Key == key).Value; // Convert this object to T and return?
}
这样的事情甚至可能吗?