Nieminen247
Newcomer
- Joined
- Jun 21, 2008
- Messages
- 4
In VB.NET there is the My.Application.CommandLineArgs, but is there any similar class in C# that will watch, what file and where from the application is started ???
I need to compile this to C#
I need to compile this to C#
Code:
Dim Parameter As String
If My.Application.CommandLineArgs.Count > 0 Then
For Each Parameter In My.Application.CommandLineArgs
MsgBox(Parameter)
Next
End If