SKFourByteTag.Implicit Operator
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
| Name | Description |
|---|---|
| Implicit(SKFourByteTag to UInt32) |
Implicitly converts an SKFourByteTag to its underlying 32-bit unsigned integer value. |
| Implicit(UInt32 to SKFourByteTag) |
Implicitly converts a 32-bit unsigned integer to an SKFourByteTag. |
Implicit(SKFourByteTag to UInt32)
Implicitly converts an SKFourByteTag to its underlying 32-bit unsigned integer value.
public static implicit operator uint(SkiaSharp.SKFourByteTag tag);
Parameters
- tag
- SKFourByteTag
The SKFourByteTag to convert.
Returns
The underlying 32-bit packed value of the tag.
Applies to
Implicit(UInt32 to SKFourByteTag)
Implicitly converts a 32-bit unsigned integer to an SKFourByteTag.
public static implicit operator SkiaSharp.SKFourByteTag(uint tag);
Parameters
- tag
- UInt32
The raw 32-bit packed value to store.
Returns
An SKFourByteTag wrapping the specified value.