Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
MethodImplAttribute.cs
Go to the documentation of this file.
2
3[AttributeUsage(AttributeTargets.Constructor | AttributeTargets.Method, Inherited = false)]
4public sealed class MethodImplAttribute : Attribute
5{
7
8 public MethodImplOptions Value { get; }
9
10 public MethodImplAttribute(MethodImplOptions methodImplOptions)
11 {
12 Value = methodImplOptions;
13 }
14
16 {
18 }
19
21 {
22 }
23}
MethodImplAttribute(MethodImplOptions methodImplOptions)