public static float GetSingle([NotNull] this Directory directory, int tagType)
        {
            if (directory.TryGetSingle(tagType, out float value))
            {
                return(value);
            }

            return(ThrowValueNotPossible <float>(directory, tagType));
        }