FlatRedBall.Glue.CodeGeneration.CodeBuilder.CodeLine.Replace C# (CSharp) Method

Replace() public method

public Replace ( string pOldValue, string pNewValue ) : void
pOldValue string
pNewValue string
return void
        public void Replace(string pOldValue, string pNewValue)
        {
            _value = _value.Replace(pOldValue, pNewValue);
        }
    }