.net how to create a IEnumerable initilize code example
Example: .net create ienumerable of strings
IEnumerable<string> m_oEnum = new List<string>() { "1", "2", "3"};
IEnumerable<string> m_oEnum = new List<string>() { "1", "2", "3"};