示例#1
0
        private void CloneData(PngChunkSRGB other)
        {
            if (other is null)
            {
                throw new System.ArgumentNullException(nameof(other));
            }

            Intent = other.Intent;
        }
示例#2
0
        public override void CloneDataFromRead(PngChunk other)
        {
            PngChunkSRGB pngChunkSRGB = (PngChunkSRGB)other;

            Intent = pngChunkSRGB.Intent;
        }
        public override void CloneDataFromRead(PngChunk other)
        {
            PngChunkSRGB otherx = (PngChunkSRGB)other;

            Intent = otherx.Intent;
        }