MongoDB.Collection.IndexName C# (CSharp) Метод

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

private static IndexName ( MongoDB.Index index ) : string
index MongoDB.Index
Результат string
        private static string IndexName(Index index)
        {
            return string.Join("_", index.Select(x => string.Join("_", x.Key, (int)x.Value)));
        }