CentralServerDemo.ExRichTextBox.RemoveBadChars C# (CSharp) 메소드

RemoveBadChars() 개인적인 메소드

Called by overrided RichTextBox.Rtf accessor. Removes the null character from the RTF. This is residue from developing the control for a specific instant messaging protocol and can be ommitted.
private RemoveBadChars ( string _originalRtf ) : string
_originalRtf string
리턴 string
        private string RemoveBadChars(string _originalRtf) {			
            return _originalRtf.Replace("\0", "");
        }