Rank: Newbie Groups: Member
Joined: 9/1/2008 Posts: 1 Points: 3 Location: Shanghai
|
When executing the following command by AutoCode. The function broken.
Command: Dictionary<string, string> stringMap p notice: there's a space in the <string, string>
Result: private Dictionary<string, _string>; public Dictionary<string, String> { get { return _string>; } set { _string> = value; } }
However, as a workaround if there is no space in the <string, string>. It works fine.
Command: Dictionary<string,string> stringMap p
-misaxi
|
Rank: Administration Groups: Administration
Joined: 3/16/2008 Posts: 22 Points: 72 Location: Spain
|
You are right. The command separator is set to one blank space by default. In this case the command 'p' expects 2 params separated by one space: <type> <name> p. If the <type> param has spaces it will trick the command. In these cases avoiding the space is the best solution.
Thanks.
|