Terraria
v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
◆
RotateRight()
[1/2]
static byte
IBinaryInteger
< byte >. System.Byte.RotateRight
(
byte
value
,
int
rotateAmount
)
inline
static
Definition at line
307
of file
Byte.cs
.
308
{
309
return
(
byte
)((
value
>> (rotateAmount & 7)) | (
value
<< ((8 - rotateAmount) & 7)));
310
}
System.ExceptionArgument.value
@ value
References
System.value
.
System
Byte
Generated by
1.10.0