AForge.Imaging.Formats.ImageInfo.Clone C# (CSharp) Method

Clone() public method

Creates a new object that is a copy of the current instance.
public Clone ( ) : object
return object
        public virtual object Clone( )
        {
            return new ImageInfo( width, height, bitsPerPixel, frameIndex, totalFrames );
        }
    }