AnswerFactory.RecipeConfigParameter.ToString C# (CSharp) Method

ToString() public method

public ToString ( ) : string
return string
        public override string ToString()
        {
            return string.Format(
                "RecipeConfigParameter{name='{0}', value={1},type={2}}",
                this.name,
                this.value,
                this.type);
        }