Terraria
v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
VectorEncoder.cs
Go to the documentation of this file.
1
namespace
System.Reflection.Metadata.Ecma335
;
2
3
public
readonly
struct
VectorEncoder
4
{
5
public
BlobBuilder
Builder
{
get
; }
6
7
public
VectorEncoder
(
BlobBuilder
builder)
8
{
9
Builder
= builder;
10
}
11
12
public
LiteralsEncoder
Count
(
int
count
)
13
{
14
if
(
count
< 0)
15
{
16
Throw
.
ArgumentOutOfRange
(
"count"
);
17
}
18
Builder
.
WriteUInt32
((uint)
count
);
19
return
new
LiteralsEncoder
(
Builder
);
20
}
21
}
System.Reflection.Metadata.BlobBuilder.WriteUInt32
void WriteUInt32(uint value)
Definition
BlobBuilder.cs:730
System.Reflection.Metadata.BlobBuilder
Definition
BlobBuilder.cs:14
System.Reflection.Throw.ArgumentOutOfRange
static void ArgumentOutOfRange(string parameterName)
Definition
Throw.cs:145
System.Reflection.Throw
Definition
Throw.cs:9
System.Reflection.Metadata.Ecma335
Definition
ArrayShapeEncoder.cs:3
System.ExceptionArgument.count
@ count
System.Reflection.Metadata.Ecma335.LiteralsEncoder
Definition
LiteralsEncoder.cs:4
System.Reflection.Metadata.Ecma335.VectorEncoder.Count
LiteralsEncoder Count(int count)
Definition
VectorEncoder.cs:12
System.Reflection.Metadata.Ecma335.VectorEncoder.VectorEncoder
VectorEncoder(BlobBuilder builder)
Definition
VectorEncoder.cs:7
System.Reflection.Metadata.Ecma335.VectorEncoder.Builder
BlobBuilder Builder
Definition
VectorEncoder.cs:5
System.Reflection.Metadata.Ecma335.VectorEncoder
Definition
VectorEncoder.cs:4
source
System.Reflection.Metadata
System.Reflection.Metadata.Ecma335
VectorEncoder.cs
Generated by
1.10.0