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

◆ ThrowForUnsupportedIntrinsicsVectorBaseType< T >()

static void System.ThrowHelper.ThrowForUnsupportedIntrinsicsVectorBaseType< T > ( )
inlinestaticpackage
Type Constraints
T :struct 

Definition at line 506 of file ThrowHelper.cs.

506 : struct
507 {
508 if (typeof(T) != typeof(byte) && typeof(T) != typeof(sbyte) && typeof(T) != typeof(short) && typeof(T) != typeof(ushort) && typeof(T) != typeof(int) && typeof(T) != typeof(uint) && typeof(T) != typeof(long) && typeof(T) != typeof(ulong) && typeof(T) != typeof(float) && typeof(T) != typeof(double))
509 {
510 ThrowNotSupportedException(ExceptionResource.Arg_TypeNotSupported);
511 }
512 }
static void ThrowNotSupportedException()

References System.Runtime.Serialization.Dictionary, and System.ThrowHelper.ThrowNotSupportedException().