예제 #1
0
        public MicroblogParser(String str, IMicroblogBinder mbinder)
        {
            String content = str.Replace(Environment.NewLine, " ").Replace("\n", " ").Replace("\r", " ");

            this.charSrc = content.ToCharArray();
            this.mb      = mbinder;
        }
예제 #2
0
 public MicroblogParser( String str, IMicroblogBinder mbinder )
 {
     String content = str.Replace( Environment.NewLine, " " ).Replace( "\n", " " ).Replace( "\r", " " );
     this.charSrc = content.ToCharArray();
     this.mb = mbinder;
 }