Command line arguments to PC Project.EXE ?

Hello !
how to send an argument to the Game.exe ?
My script :

i run project

Application no install argument !
how send argument to application ?

http://msdn.microsoft.com/library/system.environment.getcommandlineargs(v=vs.110).aspx

Code :

using UnityEngine;
using System.Collections;
using System;

public class L : MonoBehaviour
{
public static string UserLogin = “”;
public static string UserPassword = “”;

void Start ()
{
String[ ] Data = Environment.GetCommandLineArgs();
if (Data.Length == 3)
{
UserLogin = Data[1];
UserPassword = Data[2];
Application.LoadLevel(“Login”);
}
else
{
Application.Quit();
}
}

void OnGUI()
{
GUI.Label (new Rect(25, 25, 150, 25),UserLogin);
GUI.Label (new Rect(25, 50, 150, 25), UserPassword);
}
}

argument

start Game.exe YouLogin YouPassword