how to create instance of ienumerable in c# 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"};