Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
TypeForwardedFromAttribute.cs
Go to the documentation of this file.
2
3[AttributeUsage(AttributeTargets.Class | AttributeTargets.Struct | AttributeTargets.Enum | AttributeTargets.Interface | AttributeTargets.Delegate, Inherited = false, AllowMultiple = false)]
5{
6 public string AssemblyFullName { get; }
7
8 public TypeForwardedFromAttribute(string assemblyFullName)
9 {
10 if (string.IsNullOrEmpty(assemblyFullName))
11 {
12 throw new ArgumentNullException("assemblyFullName");
13 }
14 AssemblyFullName = assemblyFullName;
15 }
16}