FreeSWITCH.Native.freeswitch.switch_replace_char C# (CSharp) 메소드

switch_replace_char() 공개 정적인 메소드

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
리턴 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