Read() private méthode

private Read ( Stream stream ) : void
stream System.IO.Stream
Résultat void
Exemple #1
0
        public static GifCommentExtension ReadComment(Stream stream)
        {
            var comment = new GifCommentExtension();

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