[ComVisible(true)]
public string MyParam
{
get
{
return myParam;
}
set
{
myParam = value;
}
}
I then launch a program like this:
[ComVisible(true)]
public void LaunchPlayer()
{
Process.Start("wmplayer.exe", "ANYFOLDER");
}
The problem is that how do I launch the program so that it uses the current value on myparam on "anyfolder"?








