namespace Developpez.Dotnet.Windows.Behaviors.Gif { internal class GifTrailer : GifBlock { internal const int TrailerByte = 0x3B; private GifTrailer() { } internal override GifBlockKind Kind { get { return GifBlockKind.Other; } } internal static GifTrailer ReadTrailer() { return new GifTrailer(); } } }