MCPcopy Create free account
hub / github.com/apache/fory / WriteUInt8

Method WriteUInt8

csharp/src/Fory/ByteBuffer.cs:44–50  ·  view source on GitHub ↗
(byte value)

Source from the content-addressed store, hash-verified

42 }
43
44 [MethodImpl(MethodImplOptions.AggressiveInlining)]
45 public void WriteUInt8(byte value)
46 {
47 EnsureCapacity(1);
48 _storage[_count] = value;
49 _count += 1;
50 }
51
52 [MethodImpl(MethodImplOptions.AggressiveInlining)]
53 public void WriteInt8(sbyte value)

Callers 15

WriteDataMethod · 0.80
WriteDataMethod · 0.80
WriteCollectionDataMethod · 0.80
WriteLatin1Method · 0.80
WriteMapChunkTypeInfoMethod · 0.80
WriteMethod · 0.80
WriteMapMethod · 0.80
WriteHeadMethod · 0.80
WriteListHeaderMethod · 0.80
WriteDataMethod · 0.80
WriteDataMethod · 0.80
WriteDataMethod · 0.80

Calls

no outgoing calls