Encog.App.Analyst.Wizard.AnalystWizard.CreateSet C# (CSharp) Method

CreateSet() private static method

Create a "set" command to add to a task.
private static CreateSet ( String setTarget, String setSource ) : String
setTarget String The target.
setSource String The source.
return String
        private static String CreateSet(String setTarget, String setSource)
        {
            var result = new StringBuilder();
            result.Append("set ");
            result.Append(ScriptProperties.ToDots(setTarget));
            result.Append("=\"");
            result.Append(setSource);
            result.Append("\"");
            return result.ToString();
        }