Represents a locally unique identifier (LUID).
Namespace: DotRas
Assembly: DotRas (in DotRas.dll) Version: 1.3.5166.33435 (1.3.0.0)
Syntax
C# |
[SerializableAttribute]
public struct Luid : IEquatable<Luid>,
IFormattable
|
Visual Basic |
<SerializableAttribute>
Public Structure Luid
Implements IEquatable(Of Luid), IFormattable
|
Visual C++ |
[SerializableAttribute]
public value class Luid : IEquatable<Luid>,
IFormattable
|
F# |
[<SealedAttribute>]
[<SerializableAttribute>]
type Luid =
struct
interface IEquatable<Luid>
interface IFormattable
end
|
Examples
This example shows how to create a new
Luid structure.
C# | Copy |
---|
Luid l = Luid.NewLuid(); |
Visual Basic | Copy |
---|
Dim l As Luid = Luid.NewLuid() |
See Also