Humpback.Tests.TestMigrationProvider.GetMigrationsContents C# (CSharp) Method

GetMigrationsContents() public method

public GetMigrationsContents ( ) : string>.SortedDictionary
return string>.SortedDictionary
        public SortedDictionary<int, string> GetMigrationsContents()
        {
            var rv = new SortedDictionary<int, string>();
            foreach(var key in functions_dictionary.Keys) {
                rv.Add(key, functions_dictionary[key]().Value);
            }
            return rv;
        }