System.Security.Cryptography.DerEncoder.ConstructSegmentedSet C# (CSharp) Method

ConstructSegmentedSet() static private method

Make a constructed SET of the byte-triplets of the contents, but leave the value in a segmented form (to be included in a larger SEQUENCE).
static private ConstructSegmentedSet ( ) : byte[][]
return byte[][]
        internal static byte[][] ConstructSegmentedSet(params byte[][][] items)
        {
            Debug.Assert(items != null);

            byte[] data = ConcatenateArrays(items);

            return new byte[][]
            {
                new byte[] { ConstructedSetTag },
                EncodeLength(data.Length),
                data,
            };
        }