Implicit Operator
Implicit(TicketFlags to Byte)
Implicitly convert TicketFlags to a langword_csharp_byte.
C#
public static implicit operator byte (TicketFlags flags)
Parameters
Type | Name | Description |
---|---|---|
TicketFlags | flags | Flag object to convert. |
Returns
System.Byte
Implicit(Byte to TicketFlags)
Implicitly convert a langword_csharp_byte to a TicketFlags object.
C#
public static implicit operator TicketFlags(byte b)
Parameters
Type | Name | Description |
---|---|---|
System.Byte | b | A byte containing the flags. |
Returns