.NET создать ienumerable из строк

IEnumerable<string> m_oEnum = new List<string>() { "1", "2", "3"};
Precious Pigeon