我基本上将值保存并加载到数组中以提供给JSON库,我只是想找到一种更优雅的方法来实现这一点:
数组属性
return new object[] { path, pathDir, name };
数组到类属性
c.path = values[0];
c.pathDir = values[1];
c.name = values[2];
理想情况下,简单的解决方案不需要额外的运行时间开销,例如Reflection。
我可以这样做吗?
c.{path, pathDir, name} = values[0...2]
编辑:我特别要求数组。我知道序列化,JSON和Protobuf以及每个人都在暗示的其他内容。
答案 0 :(得分:1)
这不会成功吗?
return new {path= "/Some/Path", pathDir= "SiteRoot", name="MyPath"}
编辑:
//Mock function to simulate creating 5 objects with 'CreateArrayOb' function
public void CreatingObjects()
{
var lst = new List<object>();
for (var x = 0; x < 5; x++)
{
lst.Add(CreateArrayOb(new string[] {"Path" + x, "Dir" + x, "Path" + x}));
}
}
public object CreateArrayOb(object[] vals)
{
if (vals != null && vals.Any())
{
//Switch cases in the event that you would like to alter the object type returned
//based on the number of parameters sent
switch (vals.Count())
{
case 0:
break;
case 1:
break;
case 2:
break;
case 3:
return new { path = vals.ElementAt(0), pathDir = vals.ElementAt(1), name = vals.ElementAt(2) };
}
}
return null;
}