Exemplo n.º 1
0
        public static List <string> VersionRange(string fromVersion, string toVersion)
        {
            var fromIndex = Ids.IndexOf(fromVersion);
            var toIndex   = Ids.IndexOf(toVersion);

            return(Ids.GetRange(fromIndex, toIndex - fromIndex));
        }