mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-10 12:32:20 +02:00
Add more constructors to ObsoleteAttribute
This commit is contained in:
parent
5b80116c8d
commit
3e210999ce
1 changed files with 10 additions and 0 deletions
|
@ -505,11 +505,21 @@ namespace System
|
|||
[AttributeUsage(.Method | .Constructor | .Class | .Struct | .Alias | .Interface | .Property)]
|
||||
public struct ObsoleteAttribute : Attribute
|
||||
{
|
||||
public this()
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
public this(bool isError)
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
public this(String error)
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
public this(String error, bool isError)
|
||||
{
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue