Banking.AU.Common.Converters.StringReplaceConverter.init C# (CSharp) Method

init() private method

private init ( string oldValue, string newValue ) : void
oldValue string
newValue string
return void
        private void init(string oldValue, string newValue)
        {
            if (_replaces == null)
                _replaces = new List<KeyValuePair<string, string>>();
            _replaces.Add(new KeyValuePair<string, string>(oldValue, newValue));
        }