Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ GetCompressedIntegerSize()

static int System.Reflection.Metadata.BlobWriterImpl.GetCompressedIntegerSize ( int value)
inlinestaticpackage

Definition at line 15 of file BlobWriterImpl.cs.

16 {
17 if (value <= 127)
18 {
19 return 1;
20 }
21 if (value <= 16383)
22 {
23 return 2;
24 }
25 return 4;
26 }

References System.value.

Referenced by System.Reflection.Metadata.Ecma335.MetadataBuilder.GetOrAddBlob(), and System.Reflection.Metadata.Ecma335.MetadataBuilder.ReserveUserString().