Terraria
v1.4.4.9
Terraria source code documentation
Toggle main menu visibility
Main Page
Namespaces
Namespace List
Namespace Members
All
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
Functions
a
b
c
d
e
f
g
h
i
j
l
m
n
o
p
r
s
t
u
v
w
x
Enumerations
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
Classes
Class List
Class Index
Class Hierarchy
Class Members
All
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
Functions
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
Variables
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Enumerations
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
Properties
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Events
_
a
c
d
e
f
i
l
m
o
p
r
s
t
u
w
Files
File List
File Members
All
Enumerations
Macros
•
All
Classes
Namespaces
Files
Functions
Variables
Enumerations
Enumerator
Properties
Events
Macros
Loading...
Searching...
No Matches
MethodSignature.cs
Go to the documentation of this file.
1
using
System.Collections.Immutable
;
2
3
namespace
System.Reflection.Metadata
;
4
5
public
readonly
struct
MethodSignature
<TType>
6
{
7
public
SignatureHeader
Header
{
get
; }
8
9
public
TType
ReturnType
{
get
; }
10
11
public
int
RequiredParameterCount
{
get
; }
12
13
public
int
GenericParameterCount
{
get
; }
14
15
public
ImmutableArray<TType>
ParameterTypes
{
get
; }
16
17
public
MethodSignature
(
SignatureHeader
header, TType returnType,
int
requiredParameterCount,
int
genericParameterCount,
ImmutableArray<TType>
parameterTypes)
18
{
19
Header
= header;
20
ReturnType
= returnType;
21
GenericParameterCount
= genericParameterCount;
22
RequiredParameterCount
= requiredParameterCount;
23
ParameterTypes
= parameterTypes;
24
}
17
public
MethodSignature
(
SignatureHeader
header, TType returnType,
int
requiredParameterCount,
int
genericParameterCount,
ImmutableArray<TType>
parameterTypes) {
…
}
25
}
5
public
readonly
struct
MethodSignature
<TType> {
…
};
System.Collections.Immutable.ImmutableArray
Definition
ImmutableArray.cs:223
System.Collections.Immutable
Definition
AllocFreeConcurrentStack.cs:4
System.Reflection.Metadata
Definition
AssemblyExtensions.cs:4
System.Reflection.Metadata.MethodSignature.Header
SignatureHeader Header
Definition
MethodSignature.cs:7
System.Reflection.Metadata.MethodSignature.ParameterTypes
ImmutableArray< TType > ParameterTypes
Definition
MethodSignature.cs:15
System.Reflection.Metadata.MethodSignature.RequiredParameterCount
int RequiredParameterCount
Definition
MethodSignature.cs:11
System.Reflection.Metadata.MethodSignature.ReturnType
TType ReturnType
Definition
MethodSignature.cs:9
System.Reflection.Metadata.MethodSignature.GenericParameterCount
int GenericParameterCount
Definition
MethodSignature.cs:13
System.Reflection.Metadata.MethodSignature.MethodSignature
MethodSignature(SignatureHeader header, TType returnType, int requiredParameterCount, int genericParameterCount, ImmutableArray< TType > parameterTypes)
Definition
MethodSignature.cs:17
System.Reflection.Metadata.MethodSignature
Definition
MethodSignature.cs:6
System.Reflection.Metadata.SignatureHeader
Definition
SignatureHeader.cs:7
source
System.Reflection.Metadata
System.Reflection.Metadata
MethodSignature.cs
Generated by
1.10.0