我有以下类型:
class TypeA
{
public string Name { get; set; }
public object Value { get; set; } // Holds either a primitive DataType or a List<TypeA>
public string IrrelevantInformation { get; set; }
}
class TypeB
{
public string Name { get; set; }
public object Value { get; set; } //Holds either a primitive DataType or a List<TypeB>
}
我想要的是将 TypeA 的层次结构转换为 TypeB。
我使用传统的递归方法做到了:
private TypeB ConvertToTypeB(TypeA Input)
{
return new TypeB() { Name = Input.Name, Value = ((Input.Value is List<TypeA>) ? ((List<TypeA>)Input.Value).Select(v=>ConvertToTypeB(v)).ToList() : Input.Value) };
}
我的问题是:这可以在没有 ConvertToTypeB 函数的情况下仅使用一个 Linq 查询来完成吗?