Posted 2/13/2010 19:13:51
|
|
|
|
| I'm trying to add Systemparater settings to the output pane. How can I convert it to a string? SystemData.Output.Add(OutputSeverityLevel.Informational,SystemParameters["Allocation"]);
|
|
Posted 2/14/2010 07:23:37
|
|
|
|
| SystemData.Output.Add(OutputSeverityLevel.Informational,SystemParameters["Allocation"].ToString()); You might also look at OutputMessage(string.Format("Allocation value= {0:F2}",SystemParameters["Allocation"]));
-Pete (See also rightedge-ats Yahoo group )
|
|
Posted 2/15/2010 15:05:49
|
|
|
|
| SystemParameters are doubles, you can do a ToString on them as well. phg's solution is fine too!
|
|
|
|