Class that store a Blob
Inheritance: Object
Example #1
0
        public static Item[] DiffBlobs(Blob blobA, Blob blobB)
        {
            if (blobA.IsText () && blobB.IsText ())
                return DiffText (blobA.GetText (), blobB.GetText (), false, false, false);

            throw new ArgumentException ("non or one of the blobs is a text");
        }