Code
Module Module1
Sub Main(ByVal CmdArgs() As String)

Dim ArgNum As Integer
For ArgNum = 0 To UBound(CmdArgs)
Console.WriteLine("Argument " & ArgNum.ToString() & ": " & CmdArgs(ArgNum).ToString())
Next ArgNum
End Sub
End Module

This is the err i got when i tried to run a console application in vb.net with the above code

An unhandled exception of type 'System.io.filenotfoundexception' occured in unknown module

Pls help me..