pub type StringBuilder = crateRustcCLRInteropManagedClassSystem.Runtime","System.Text.StringBuilder">;
impl StringBuilder{
#[inline(always)]
pub fn empty()->Self{
Self::ctor0_()
}
#[inline(always)]
pub fn append_mchar(self,chr:crate::DotNetChar)->Self{
self.instance1_::<"Append",crate::DotNetChar,Self>(chr)
}
#[inline(always)]
pub fn append_char(self,chr:char)->Self{
self.append_mchar(crate::DotNetChar::single_codepoint_unchecked(chr))
}
}