Terraria
v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
◆
OfType< TResult >()
IEnumerable
<
TResult
>
System.Collections.Immutable.ImmutableArray
<
T
>.
OfType
<
TResult
>
(
)
inline
Definition at line
1331
of file
ImmutableArray.cs
.
1332
{
1333
ImmutableArray<T>
immutableArray
=
this
;
1334
if
(
immutableArray
.array ==
null
||
immutableArray
.array.Length == 0)
1335
{
1336
return
Enumerable
.Empty<
TResult
>();
1337
}
1338
return
immutableArray
.array.OfType<
TResult
>();
1339
}
System.Collections.Generic.Dictionary
Definition
Dictionary.cs:14
System.Linq.Enumerable
Definition
Enumerable.cs:9
TResult
System
Collections
Immutable
ImmutableArray
Generated by
1.10.0