Iaik.Utils.SimpleFormatter.DefineTextMacro C# (CSharp) Method

DefineTextMacro() public method

Defines a text macro
public DefineTextMacro ( string name, string value ) : void
name string
value string
return void
        public void DefineTextMacro(string name, string value)
        {
            if (_textMacros.ContainsKey (name) == false)
                _textMacros.Add (name, "");

            _textMacros[name] = value;
        }