Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
InvalidCastException.cs
Go to the documentation of this file.
3
4namespace System;
5
7[TypeForwardedFrom("mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089")]
9{
11 : base(SR.Arg_InvalidCastException)
12 {
13 base.HResult = -2147467262;
14 }
15
16 public InvalidCastException(string? message)
17 : base(message)
18 {
19 base.HResult = -2147467262;
20 }
21
23 : base(message, innerException)
24 {
25 base.HResult = -2147467262;
26 }
27
28 public InvalidCastException(string? message, int errorCode)
29 : base(message)
30 {
32 }
33
35 : base(info, context)
36 {
37 }
38}
InvalidCastException(string? message, Exception? innerException)
InvalidCastException(string? message, int errorCode)
InvalidCastException(SerializationInfo info, StreamingContext context)
Definition SR.cs:7