ABT.StructOrUnionType.CreateIncompleteUnion C# (CSharp) Method

CreateIncompleteUnion() public static method

public static CreateIncompleteUnion ( String name, System.Boolean is_const, System.Boolean is_volatile ) : StructOrUnionType
name String
is_const System.Boolean
is_volatile System.Boolean
return StructOrUnionType
        public static StructOrUnionType CreateIncompleteUnion(String name, Boolean is_const, Boolean is_volatile) =>
            new StructOrUnionType(new StructOrUnionLayout($"union {name}"), is_const, is_volatile);