C#枚举器赋值

时间:2015-03-29 07:08:59

标签: c#

想要为IEnumerable排序分配几个值。

IEnumerable<short> someValues= ????

预期:某些值= 0,1,2,3

2 个答案:

答案 0 :(得分:3)

字符串:

IEnumerable<string> m_oEnum = new string[]{"1","2","3"};

INT:

IEnumerable<int> m_oEnum = new int[]{ 1,2,3};

短:

IEnumerable<short> m_oEnum = new short[]{ 1,2,3};

对象:

class Book
{
public string val1{get;set;}
public string val2{get;set;}
.
.
}

IEnumerable<Book> books = new List<Book>();

答案 1 :(得分:0)

   IEnumerable<short> shortValues = new short[] { 3,6}         

  IEnumerable<int> Values = from value in Enumerable.Range(1, 10) select value;

你可以试试这个。