Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Add missing types
  • Loading branch information
cston authored and github-actions committed Sep 6, 2022
commit 76bff4e9d0b883d4d5dcde443126c5425e2246d5
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,14 @@ public struct RuntimeMethodHandle { }
public struct RuntimeFieldHandle { }

public class Attribute { }
public class AttributeUsageAttribute : Attribute
{
public AttributeUsageAttribute(AttributeTargets targets) { }
public bool AllowMultiple { get; set; }
public bool Inherited { get; set; }
}

public enum AttributeTargets { }

public class ThreadStaticAttribute : Attribute { }

Expand Down