It works after a minor fix.
The problem was an error in the ToString() method
string.Format expects 6 params, but 3 are given.
Before:
public override string ToString()
{
return string.Format("{0}{1} ({2}, {3}, {4}, {5})",
IndicatorName,
(IndParam.CheckParam[0].Checked ? "*" : ""),
IndParam.NumParam[0].ValueToString;
}
After:
public override string ToString()
{
return string.Format("{0}{1} ({2})",
IndicatorName,
(IndParam.CheckParam[0].Checked ? "*" : ""),
IndParam.NumParam[0].ValueToString);
}
Post's attachmentsGann Hi-Lo Activator SSL.cs 15.71 kb, 34 downloads since 2014-04-06
You don't have the permssions to download the attachments of this post.