Exemple #1
0
        internal static GifCommentExtension ReadComment(Stream stream)
        {
            var comment = new GifCommentExtension();

            comment.Read(stream);
            return(comment);
        }
Exemple #2
0
        internal static GifCommentExtension ReadComment(Stream stream)
        {
            GifCommentExtension extension = new GifCommentExtension();

            extension.Read(stream);
            return(extension);
        }
 internal static GifCommentExtension ReadComment(Stream stream)
 {
     var comment = new GifCommentExtension();
     comment.Read(stream);
     return comment;
 }