mycorrhiza 0.0.0

Rust/.NET interop layer
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
pub type StringBuilder = crate::intrinsics::RustcCLRInteropManagedClass<"System.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))
    }
}