bigloo.foreign.blit_string C# (CSharp) Method

blit_string() public static method

public static blit_string ( byte src, int i1, byte dst, int i2, int n ) : Object
src byte
i1 int
dst byte
i2 int
n int
return Object
        public static Object blit_string( byte[] src, int i1,
					byte[] dst, int i2,
					int n )
        {
            bcopy( src, i1, dst, i2, n );
            return unspecified._unspecified;
        }
foreign