CSJ2K.Icc.Tags.ICCTag.GetTagInt C# (CSharp) Метод

GetTagInt() статический приватный Метод

static private GetTagInt ( string tag ) : int
tag string
Результат int
        static int GetTagInt(string tag)
        {
            byte[] tagBytes=Encoding.UTF8.GetBytes(tag);
            Array.Reverse(tagBytes);
            return BitConverter.ToInt32(tagBytes, 0);
        }