GUID (Structures)
Last changed: -163.230.251.197

.
Summary
A made-up class that can be used when you need a pointer to a GUID and when you need to be able to pass null.

C# Definition:

[StructLayout(LayoutKind.Sequential)]
public class GuidClass
{
    public Guid TheGuid;
}

VB Definition:

Structure GuidClass
   Public Guid TheGuid
End Structure

Notes:

Instead of this, you could choose to define such a parameter as an array of System.Guids and only ever use the first element.

Documentation
GuidClass on MSDN