Patcher.Rules.CodeBuilder.CodeBuilder C# (CSharp) Method

CodeBuilder() public method

public CodeBuilder ( string namespaceName, string className, string comment ) : System
namespaceName string
className string
comment string
return System
        public CodeBuilder(string namespaceName, string className, string comment)
        {
            this.namespaceName = namespaceName;
            this.className = className;
            this.comment = comment;
        }