uuh I wrote this, but it looks really ugly and dumd any better ways?
VB Code:
  1. Dim args As New ArrayList
  2.             args.AddRange(Environment.GetCommandLineArgs())
  3.  
  4.             If args.Count > 1 Then
  5.                 args.RemoveAt(0)
  6.  
  7.                 Dim filenames() As String
  8.                 filenames = CType(args.ToArray(GetType(String)), String())
  9. ....

I just want to remove the first element of args(). That works but looks akward... just wondering if there is a better way