FreeSWITCH.Native.freeswitch.switch_replace_char C# (CSharp) Method

switch_replace_char() public static method

public static switch_replace_char ( string str, char from, char to, switch_bool_t dup ) : string
str string
from char
to char
dup switch_bool_t
return string
        public static string switch_replace_char(string str, char from, char to, switch_bool_t dup)
        {
            string ret = freeswitchPINVOKE.switch_replace_char(str, from, to, (int)dup);
            return ret;
        }
freeswitch