Example #1
0
        public static void SetTags(this ID2D1DeviceContext context, ulong tag1, ulong tag2 = 0)
        {
            if (context == null)
            {
                throw new ArgumentNullException(nameof(context));
            }

            context.SetTags(tag1, tag2);
        }