Collections Data Structure C#

using System;
using System.Collections;
using System.Collections.Specialized;
public class SamplesStringCollection  {
   public static void Main()  {
      StringCollection myCol = new StringCollection();
      String[] myArr = new String[] { "a", "o" };
      
      myCol.AddRange( myArr );
      PrintValues( myCol );
      
      if ( myCol.Contains( "a" ) )
         Console.WriteLine( myCol.IndexOf( "orange" ) );
      else
         Console.WriteLine( "does not contain " );
   }
   public static void PrintValues( IEnumerable myCol )  {
      foreach ( Object obj in myCol )
         Console.WriteLine( "   {0}", obj );
      Console.WriteLine();
   }
}