public BaseOutStructure
 (
     StructureType sType     = default,
     BaseOutStructure *pNext = default
 )
 {
     SType = sType;
     PNext = pNext;
 }
Beispiel #2
0
        public BaseOutStructure
        (
            StructureType?sType     = null,
            BaseOutStructure *pNext = null
        ) : this()
        {
            if (sType is not null)
            {
                SType = sType.Value;
            }

            if (pNext is not null)
            {
                PNext = pNext;
            }
        }
        public BaseOutStructure
        (
            StructureType?type     = null,
            BaseOutStructure *next = null
        ) : this()
        {
            if (type is not null)
            {
                Type = type.Value;
            }

            if (next is not null)
            {
                Next = next;
            }
        }