结构体操作列表c#

时间:2014-03-31 12:31:11

标签: c# list struct

我有包含字符串和整数的结构

    public struct TxTemp
    {
        public int Channel;
        public string Temperture;
        public string TargetPwr;  
    }

从中我构建另一个结构

    public struct Phys
    {
        public TxTemp[] NumberOfChannels;
        public List<ChPWrWord> FullPhyChPwrWord;
    }

其中ChPwrTemp是另一个复杂的结构

现在我想创建一个仅列出TargetPwr的列表 我真的希望它可以作为简短的转换,可能是某种查询。

 List<string> TargetTemp = phys_ToTest24[Iphy].NumberOfChannels.OrderBy(x => x.TargetPwr).ToList(); 

以及其他一些无效的解决方案,我在这里缺少什么?

一般来说,如何创建一个由其他list<object>的子对象组成的列表?

非常感谢你!

0 个答案:

没有答案