Read() 개인적인 메소드

private Read ( Stream stream ) : void
stream System.IO.Stream
리턴 void
예제 #1
0
        public static GifCommentExtension ReadComment(Stream stream)
        {
            var comment = new GifCommentExtension();

            comment.Read(stream);
            return(comment);
        }
예제 #2
0
 public static GifCommentExtension ReadComment(Stream stream)
 {
     var comment = new GifCommentExtension();
     comment.Read(stream);
     return comment;
 }