putLong() public méthode

public putLong ( long src ) : ByteBuffer
src long
Résultat ByteBuffer
Exemple #1
0
 public LongBuffer put(long[] src)
 {
     for (int i = 0; i < src.Length; ++i)
     {
         bytebuffer.putLong(src[i]);
     }
     return(this);
 }