IsSafeToCopy() public static method

Safe to copy chunk: fourth letter is lower case
public static IsSafeToCopy ( String id ) : bool
id String
return bool
Esempio n. 1
0
 public PngChunk(string id, ImageInfo imgInfo)
 {
     Id         = id;
     ImgInfo    = imgInfo;
     Crit       = ChunkHelper.IsCritical(id);
     Pub        = ChunkHelper.IsPublic(id);
     Safe       = ChunkHelper.IsSafeToCopy(id);
     Priority   = false;
     ChunkGroup = -1;
     Length     = -1;
     Offset     = 0L;
 }