Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
SafeArrayTypeMismatchException.cs
Go to the documentation of this file.
3
5
7[TypeForwardedFrom("mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089")]
9{
11 : base(SR.Arg_SafeArrayTypeMismatchException)
12 {
13 base.HResult = -2146233037;
14 }
15
16 public SafeArrayTypeMismatchException(string? message)
17 : base(message)
18 {
19 base.HResult = -2146233037;
20 }
21
22 public SafeArrayTypeMismatchException(string? message, Exception? inner)
23 : base(message, inner)
24 {
25 base.HResult = -2146233037;
26 }
27
29 : base(info, context)
30 {
31 }
32}
SafeArrayTypeMismatchException(SerializationInfo info, StreamingContext context)
Definition SR.cs:7