bigloo.foreign.bgl_string_to_mmap C# (CSharp) Method

bgl_string_to_mmap() public static method

public static bgl_string_to_mmap ( byte s, bool r, bool w ) : mmap
s byte
r bool
w bool
return mmap
        public static mmap bgl_string_to_mmap( byte[] s, bool r, bool w )
        {
            return new mmaps( s, r, w );
        }
foreign