first(): MemberType;
The first method of the JadeBytes class returns the first byte (that is, the
The following example shows the use of the first method.
vars bytes : JadeBytes; begin beginTransaction; create bytes; bytes.setContent("JADE".Binary); commitTransaction; write bytes.first; // Writes 74 (ASCII value "J") epilog delete bytes; end;