### YamlMime:ManagedReference items: - uid: TinyLife.Localization commentId: T:TinyLife.Localization id: Localization parent: TinyLife children: - TinyLife.Localization.Get(TinyLife.LnCategory,System.String,System.Object[]) - TinyLife.Localization.Get(TinyLife.LnCategory,System.String) - TinyLife.Localization.GetKeys(TinyLife.LnCategory) - TinyLife.Localization.LanguageNames - TinyLife.Localization.Names - TinyLife.Localization.Reload - TinyLife.Localization.SetLanguage(System.String) langs: - csharp - vb name: Localization nameWithType: Localization fullName: TinyLife.Localization type: Class source: remote: path: TinyLife/Localization.cs branch: main repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Localization path: ../TinyLife/Localization.cs startLine: 22 assemblies: - Tiny Life namespace: TinyLife summary: "\nA class that houses the currently loaded language as well as allows for switching the currently selected language\n" example: [] syntax: content: public static class Localization content.vb: Public Module Localization inheritance: - System.Object inheritedMembers: - System.Object.Equals(System.Object) - System.Object.Equals(System.Object,System.Object) - System.Object.GetHashCode - System.Object.GetType - System.Object.MemberwiseClone - System.Object.ReferenceEquals(System.Object,System.Object) - System.Object.ToString - uid: TinyLife.Localization.LanguageNames commentId: F:TinyLife.Localization.LanguageNames id: LanguageNames parent: TinyLife.Localization langs: - csharp - vb name: LanguageNames nameWithType: Localization.LanguageNames fullName: TinyLife.Localization.LanguageNames type: Field source: remote: path: TinyLife/Localization.cs branch: main repo: https://git.ellpeck.de/Ellpeck/TinyLife id: LanguageNames path: ../TinyLife/Localization.cs startLine: 27 assemblies: - Tiny Life namespace: TinyLife summary: "\nA list of the full names of all of the languages that the game supports\n" example: [] syntax: content: public static readonly Dictionary LanguageNames return: type: System.Collections.Generic.Dictionary{System.String,System.String} content.vb: Public Shared ReadOnly LanguageNames As Dictionary(Of String, String) - uid: TinyLife.Localization.Names commentId: F:TinyLife.Localization.Names id: Names parent: TinyLife.Localization langs: - csharp - vb name: Names nameWithType: Localization.Names fullName: TinyLife.Localization.Names type: Field source: remote: path: TinyLife/Localization.cs branch: main repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Names path: ../TinyLife/Localization.cs startLine: 32 assemblies: - Tiny Life namespace: TinyLife summary: "\nA dictionary that maps a key to all of the names matching the specified key.\nBy default, this dictionary contains "FirstNames" and "LastNames", which are the randomly generated names for people, and "ModNames", which are the default names for the action.\n" example: [] syntax: content: public static readonly Dictionary Names return: type: System.Collections.Generic.Dictionary{System.String,System.String[]} content.vb: Public Shared ReadOnly Names As Dictionary(Of String, String()) - uid: TinyLife.Localization.SetLanguage(System.String) commentId: M:TinyLife.Localization.SetLanguage(System.String) id: SetLanguage(System.String) parent: TinyLife.Localization langs: - csharp - vb name: SetLanguage(string) nameWithType: Localization.SetLanguage(string) fullName: TinyLife.Localization.SetLanguage(string) type: Method source: remote: path: TinyLife/Localization.cs branch: main repo: https://git.ellpeck.de/Ellpeck/TinyLife id: SetLanguage path: ../TinyLife/Localization.cs startLine: 50 assemblies: - Tiny Life namespace: TinyLife summary: "\nSwitches the current language to the language given.\nNote that, for most ui elements to update, they have to be re-created.\n" example: [] syntax: content: public static void SetLanguage(string language) parameters: - id: language type: System.String description: The code of the language to set content.vb: Public Shared Sub SetLanguage(language As String) overload: TinyLife.Localization.SetLanguage* nameWithType.vb: Localization.SetLanguage(String) fullName.vb: TinyLife.Localization.SetLanguage(String) name.vb: SetLanguage(String) - uid: TinyLife.Localization.Reload commentId: M:TinyLife.Localization.Reload id: Reload parent: TinyLife.Localization langs: - csharp - vb name: Reload() nameWithType: Localization.Reload() fullName: TinyLife.Localization.Reload() type: Method source: remote: path: TinyLife/Localization.cs branch: main repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Reload path: ../TinyLife/Localization.cs startLine: 61 assemblies: - Tiny Life namespace: TinyLife summary: "\nReloads the strings for the current language () for the base game and all mods.\nNote that, for most ui elements to update, they have to be re-created.\n" example: [] syntax: content: public static void Reload() content.vb: Public Shared Sub Reload() overload: TinyLife.Localization.Reload* - uid: TinyLife.Localization.Get(TinyLife.LnCategory,System.String) commentId: M:TinyLife.Localization.Get(TinyLife.LnCategory,System.String) id: Get(TinyLife.LnCategory,System.String) parent: TinyLife.Localization langs: - csharp - vb name: Get(LnCategory, string) nameWithType: Localization.Get(LnCategory, string) fullName: TinyLife.Localization.Get(TinyLife.LnCategory, string) type: Method source: remote: path: TinyLife/Localization.cs branch: main repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Get path: ../TinyLife/Localization.cs startLine: 86 assemblies: - Tiny Life namespace: TinyLife summary: "\nGets a localized string in the given category with the given key.\nIf the localization is not found, the key, surrounded by question marks, is returned instead.\n" example: [] syntax: content: public static string Get(LnCategory category, string key) parameters: - id: category type: TinyLife.LnCategory description: The category that contains the localization - id: key type: System.String description: The key to localize return: type: System.String description: The localization of the key content.vb: Public Shared Function [Get](category As LnCategory, key As String) As String overload: TinyLife.Localization.Get* nameWithType.vb: Localization.Get(LnCategory, String) fullName.vb: TinyLife.Localization.Get(TinyLife.LnCategory, String) name.vb: Get(LnCategory, String) - uid: TinyLife.Localization.Get(TinyLife.LnCategory,System.String,System.Object[]) commentId: M:TinyLife.Localization.Get(TinyLife.LnCategory,System.String,System.Object[]) id: Get(TinyLife.LnCategory,System.String,System.Object[]) parent: TinyLife.Localization langs: - csharp - vb name: Get(LnCategory, string, params object[]) nameWithType: Localization.Get(LnCategory, string, params object[]) fullName: TinyLife.Localization.Get(TinyLife.LnCategory, string, params object[]) type: Method source: remote: path: TinyLife/Localization.cs branch: main repo: https://git.ellpeck.de/Ellpeck/TinyLife id: Get path: ../TinyLife/Localization.cs startLine: 104 assemblies: - Tiny Life namespace: TinyLife summary: "\nGets a localized string in the given category with the given key.\nIf the localization is not found, the key, surrounded by question marks, is returned instead.\n" example: [] syntax: content: public static string Get(LnCategory category, string key, params object[] args) parameters: - id: category type: TinyLife.LnCategory description: The category that contains the localization - id: key type: System.String description: The key to localize - id: args type: System.Object[] description: An optional set of arguments that are passed to return: type: System.String description: The localization of the key content.vb: Public Shared Function [Get](category As LnCategory, key As String, ParamArray args As Object()) As String overload: TinyLife.Localization.Get* nameWithType.vb: Localization.Get(LnCategory, String, ParamArray Object()) fullName.vb: TinyLife.Localization.Get(TinyLife.LnCategory, String, ParamArray Object()) name.vb: Get(LnCategory, String, ParamArray Object()) - uid: TinyLife.Localization.GetKeys(TinyLife.LnCategory) commentId: M:TinyLife.Localization.GetKeys(TinyLife.LnCategory) id: GetKeys(TinyLife.LnCategory) parent: TinyLife.Localization langs: - csharp - vb name: GetKeys(LnCategory) nameWithType: Localization.GetKeys(LnCategory) fullName: TinyLife.Localization.GetKeys(TinyLife.LnCategory) type: Method source: remote: path: TinyLife/Localization.cs branch: main repo: https://git.ellpeck.de/Ellpeck/TinyLife id: GetKeys path: ../TinyLife/Localization.cs startLine: 113 assemblies: - Tiny Life namespace: TinyLife summary: "\nReturns all of the keys that are registered for localization for a given \n" example: [] syntax: content: public static IEnumerable GetKeys(LnCategory category) parameters: - id: category type: TinyLife.LnCategory description: The localization category return: type: System.Collections.Generic.IEnumerable{System.String} description: A set of keys content.vb: Public Shared Function GetKeys(category As LnCategory) As IEnumerable(Of String) overload: TinyLife.Localization.GetKeys* references: - uid: TinyLife commentId: N:TinyLife name: TinyLife nameWithType: TinyLife fullName: TinyLife - uid: System.Object commentId: T:System.Object parent: System isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object name: object nameWithType: object fullName: object nameWithType.vb: Object fullName.vb: Object name.vb: Object - uid: System.Object.Equals(System.Object) commentId: M:System.Object.Equals(System.Object) parent: System.Object isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) name: Equals(object) nameWithType: object.Equals(object) fullName: object.Equals(object) nameWithType.vb: Object.Equals(Object) fullName.vb: Object.Equals(Object) name.vb: Equals(Object) spec.csharp: - uid: System.Object.Equals(System.Object) name: Equals isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - name: ( - uid: System.Object name: object isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object - name: ) spec.vb: - uid: System.Object.Equals(System.Object) name: Equals isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - name: ( - uid: System.Object name: Object isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object - name: ) - uid: System.Object.Equals(System.Object,System.Object) commentId: M:System.Object.Equals(System.Object,System.Object) parent: System.Object isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) name: Equals(object, object) nameWithType: object.Equals(object, object) fullName: object.Equals(object, object) nameWithType.vb: Object.Equals(Object, Object) fullName.vb: Object.Equals(Object, Object) name.vb: Equals(Object, Object) spec.csharp: - uid: System.Object.Equals(System.Object,System.Object) name: Equals isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - name: ( - uid: System.Object name: object isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object - name: ',' - name: " " - uid: System.Object name: object isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object - name: ) spec.vb: - uid: System.Object.Equals(System.Object,System.Object) name: Equals isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - name: ( - uid: System.Object name: Object isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object - name: ',' - name: " " - uid: System.Object name: Object isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object - name: ) - uid: System.Object.GetHashCode commentId: M:System.Object.GetHashCode parent: System.Object isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode name: GetHashCode() nameWithType: object.GetHashCode() fullName: object.GetHashCode() nameWithType.vb: Object.GetHashCode() fullName.vb: Object.GetHashCode() spec.csharp: - uid: System.Object.GetHashCode name: GetHashCode isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode - name: ( - name: ) spec.vb: - uid: System.Object.GetHashCode name: GetHashCode isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode - name: ( - name: ) - uid: System.Object.GetType commentId: M:System.Object.GetType parent: System.Object isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object.gettype name: GetType() nameWithType: object.GetType() fullName: object.GetType() nameWithType.vb: Object.GetType() fullName.vb: Object.GetType() spec.csharp: - uid: System.Object.GetType name: GetType isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object.gettype - name: ( - name: ) spec.vb: - uid: System.Object.GetType name: GetType isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object.gettype - name: ( - name: ) - uid: System.Object.MemberwiseClone commentId: M:System.Object.MemberwiseClone parent: System.Object isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone name: MemberwiseClone() nameWithType: object.MemberwiseClone() fullName: object.MemberwiseClone() nameWithType.vb: Object.MemberwiseClone() fullName.vb: Object.MemberwiseClone() spec.csharp: - uid: System.Object.MemberwiseClone name: MemberwiseClone isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - name: ( - name: ) spec.vb: - uid: System.Object.MemberwiseClone name: MemberwiseClone isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - name: ( - name: ) - uid: System.Object.ReferenceEquals(System.Object,System.Object) commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) parent: System.Object isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals name: ReferenceEquals(object, object) nameWithType: object.ReferenceEquals(object, object) fullName: object.ReferenceEquals(object, object) nameWithType.vb: Object.ReferenceEquals(Object, Object) fullName.vb: Object.ReferenceEquals(Object, Object) name.vb: ReferenceEquals(Object, Object) spec.csharp: - uid: System.Object.ReferenceEquals(System.Object,System.Object) name: ReferenceEquals isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - name: ( - uid: System.Object name: object isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object - name: ',' - name: " " - uid: System.Object name: object isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object - name: ) spec.vb: - uid: System.Object.ReferenceEquals(System.Object,System.Object) name: ReferenceEquals isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - name: ( - uid: System.Object name: Object isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object - name: ',' - name: " " - uid: System.Object name: Object isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object - name: ) - uid: System.Object.ToString commentId: M:System.Object.ToString parent: System.Object isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object.tostring name: ToString() nameWithType: object.ToString() fullName: object.ToString() nameWithType.vb: Object.ToString() fullName.vb: Object.ToString() spec.csharp: - uid: System.Object.ToString name: ToString isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object.tostring - name: ( - name: ) spec.vb: - uid: System.Object.ToString name: ToString isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object.tostring - name: ( - name: ) - uid: System commentId: N:System isExternal: true href: https://learn.microsoft.com/dotnet/api/system name: System nameWithType: System fullName: System - uid: System.Collections.Generic.Dictionary{System.String,System.String} commentId: T:System.Collections.Generic.Dictionary{System.String,System.String} parent: System.Collections.Generic definition: System.Collections.Generic.Dictionary`2 href: https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary-2 name: Dictionary nameWithType: Dictionary fullName: System.Collections.Generic.Dictionary nameWithType.vb: Dictionary(Of String, String) fullName.vb: System.Collections.Generic.Dictionary(Of String, String) name.vb: Dictionary(Of String, String) spec.csharp: - uid: System.Collections.Generic.Dictionary`2 name: Dictionary isExternal: true href: https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary-2 - name: < - uid: System.String name: string isExternal: true href: https://learn.microsoft.com/dotnet/api/system.string - name: ',' - name: " " - uid: System.String name: string isExternal: true href: https://learn.microsoft.com/dotnet/api/system.string - name: '>' spec.vb: - uid: System.Collections.Generic.Dictionary`2 name: Dictionary isExternal: true href: https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary-2 - name: ( - name: Of - name: " " - uid: System.String name: String isExternal: true href: https://learn.microsoft.com/dotnet/api/system.string - name: ',' - name: " " - uid: System.String name: String isExternal: true href: https://learn.microsoft.com/dotnet/api/system.string - name: ) - uid: System.Collections.Generic.Dictionary`2 commentId: T:System.Collections.Generic.Dictionary`2 isExternal: true href: https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary-2 name: Dictionary nameWithType: Dictionary fullName: System.Collections.Generic.Dictionary nameWithType.vb: Dictionary(Of TKey, TValue) fullName.vb: System.Collections.Generic.Dictionary(Of TKey, TValue) name.vb: Dictionary(Of TKey, TValue) spec.csharp: - uid: System.Collections.Generic.Dictionary`2 name: Dictionary isExternal: true href: https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary-2 - name: < - name: TKey - name: ',' - name: " " - name: TValue - name: '>' spec.vb: - uid: System.Collections.Generic.Dictionary`2 name: Dictionary isExternal: true href: https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary-2 - name: ( - name: Of - name: " " - name: TKey - name: ',' - name: " " - name: TValue - name: ) - uid: System.Collections.Generic commentId: N:System.Collections.Generic isExternal: true href: https://learn.microsoft.com/dotnet/api/system name: System.Collections.Generic nameWithType: System.Collections.Generic fullName: System.Collections.Generic spec.csharp: - uid: System name: System isExternal: true href: https://learn.microsoft.com/dotnet/api/system - name: . - uid: System.Collections name: Collections isExternal: true href: https://learn.microsoft.com/dotnet/api/system.collections - name: . - uid: System.Collections.Generic name: Generic isExternal: true href: https://learn.microsoft.com/dotnet/api/system.collections.generic spec.vb: - uid: System name: System isExternal: true href: https://learn.microsoft.com/dotnet/api/system - name: . - uid: System.Collections name: Collections isExternal: true href: https://learn.microsoft.com/dotnet/api/system.collections - name: . - uid: System.Collections.Generic name: Generic isExternal: true href: https://learn.microsoft.com/dotnet/api/system.collections.generic - uid: TinyLife.Actions.ActionType.ModGame commentId: F:TinyLife.Actions.ActionType.ModGame name: ModGame nameWithType: ActionType.ModGame fullName: TinyLife.Actions.ActionType.ModGame - uid: System.Collections.Generic.Dictionary{System.String,System.String[]} commentId: T:System.Collections.Generic.Dictionary{System.String,System.String[]} parent: System.Collections.Generic definition: System.Collections.Generic.Dictionary`2 href: https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary-2 name: Dictionary nameWithType: Dictionary fullName: System.Collections.Generic.Dictionary nameWithType.vb: Dictionary(Of String, String()) fullName.vb: System.Collections.Generic.Dictionary(Of String, String()) name.vb: Dictionary(Of String, String()) spec.csharp: - uid: System.Collections.Generic.Dictionary`2 name: Dictionary isExternal: true href: https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary-2 - name: < - uid: System.String name: string isExternal: true href: https://learn.microsoft.com/dotnet/api/system.string - name: ',' - name: " " - uid: System.String name: string isExternal: true href: https://learn.microsoft.com/dotnet/api/system.string - name: '[' - name: ']' - name: '>' spec.vb: - uid: System.Collections.Generic.Dictionary`2 name: Dictionary isExternal: true href: https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary-2 - name: ( - name: Of - name: " " - uid: System.String name: String isExternal: true href: https://learn.microsoft.com/dotnet/api/system.string - name: ',' - name: " " - uid: System.String name: String isExternal: true href: https://learn.microsoft.com/dotnet/api/system.string - name: ( - name: ) - name: ) - uid: TinyLife.Localization.SetLanguage* commentId: Overload:TinyLife.Localization.SetLanguage name: SetLanguage nameWithType: Localization.SetLanguage fullName: TinyLife.Localization.SetLanguage - uid: System.String commentId: T:System.String parent: System isExternal: true href: https://learn.microsoft.com/dotnet/api/system.string name: string nameWithType: string fullName: string nameWithType.vb: String fullName.vb: String name.vb: String - uid: TinyLife.Localization.SetLanguage(System.String) commentId: M:TinyLife.Localization.SetLanguage(System.String) isExternal: true href: https://learn.microsoft.com/dotnet/api/system.string name: SetLanguage(string) nameWithType: Localization.SetLanguage(string) fullName: TinyLife.Localization.SetLanguage(string) nameWithType.vb: Localization.SetLanguage(String) fullName.vb: TinyLife.Localization.SetLanguage(String) name.vb: SetLanguage(String) spec.csharp: - uid: TinyLife.Localization.SetLanguage(System.String) name: SetLanguage - name: ( - uid: System.String name: string isExternal: true href: https://learn.microsoft.com/dotnet/api/system.string - name: ) spec.vb: - uid: TinyLife.Localization.SetLanguage(System.String) name: SetLanguage - name: ( - uid: System.String name: String isExternal: true href: https://learn.microsoft.com/dotnet/api/system.string - name: ) - uid: TinyLife.Localization.Reload* commentId: Overload:TinyLife.Localization.Reload name: Reload nameWithType: Localization.Reload fullName: TinyLife.Localization.Reload - uid: TinyLife.Localization.Get* commentId: Overload:TinyLife.Localization.Get name: Get nameWithType: Localization.Get fullName: TinyLife.Localization.Get - uid: TinyLife.LnCategory commentId: T:TinyLife.LnCategory parent: TinyLife name: LnCategory nameWithType: LnCategory fullName: TinyLife.LnCategory - uid: System.String.Format(System.IFormatProvider,System.String,System.Object) commentId: M:System.String.Format(System.IFormatProvider,System.String,System.Object) isExternal: true href: https://learn.microsoft.com/dotnet/api/system.string.format#system-string-format(system-iformatprovider-system-string-system-object) name: Format(IFormatProvider, string, object) nameWithType: string.Format(IFormatProvider, string, object) fullName: string.Format(System.IFormatProvider, string, object) nameWithType.vb: String.Format(IFormatProvider, String, Object) fullName.vb: String.Format(System.IFormatProvider, String, Object) name.vb: Format(IFormatProvider, String, Object) spec.csharp: - uid: System.String.Format(System.IFormatProvider,System.String,System.Object) name: Format isExternal: true href: https://learn.microsoft.com/dotnet/api/system.string.format#system-string-format(system-iformatprovider-system-string-system-object) - name: ( - uid: System.IFormatProvider name: IFormatProvider isExternal: true href: https://learn.microsoft.com/dotnet/api/system.iformatprovider - name: ',' - name: " " - uid: System.String name: string isExternal: true href: https://learn.microsoft.com/dotnet/api/system.string - name: ',' - name: " " - uid: System.Object name: object isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object - name: ) spec.vb: - uid: System.String.Format(System.IFormatProvider,System.String,System.Object) name: Format isExternal: true href: https://learn.microsoft.com/dotnet/api/system.string.format#system-string-format(system-iformatprovider-system-string-system-object) - name: ( - uid: System.IFormatProvider name: IFormatProvider isExternal: true href: https://learn.microsoft.com/dotnet/api/system.iformatprovider - name: ',' - name: " " - uid: System.String name: String isExternal: true href: https://learn.microsoft.com/dotnet/api/system.string - name: ',' - name: " " - uid: System.Object name: Object isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object - name: ) - uid: System.Object[] isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object name: object[] nameWithType: object[] fullName: object[] nameWithType.vb: Object() fullName.vb: Object() name.vb: Object() spec.csharp: - uid: System.Object name: object isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object - name: '[' - name: ']' spec.vb: - uid: System.Object name: Object isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object - name: ( - name: ) - uid: TinyLife.Localization.GetKeys* commentId: Overload:TinyLife.Localization.GetKeys name: GetKeys nameWithType: Localization.GetKeys fullName: TinyLife.Localization.GetKeys - uid: System.Collections.Generic.IEnumerable{System.String} commentId: T:System.Collections.Generic.IEnumerable{System.String} parent: System.Collections.Generic definition: System.Collections.Generic.IEnumerable`1 href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 name: IEnumerable nameWithType: IEnumerable fullName: System.Collections.Generic.IEnumerable nameWithType.vb: IEnumerable(Of String) fullName.vb: System.Collections.Generic.IEnumerable(Of String) name.vb: IEnumerable(Of String) spec.csharp: - uid: System.Collections.Generic.IEnumerable`1 name: IEnumerable isExternal: true href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - name: < - uid: System.String name: string isExternal: true href: https://learn.microsoft.com/dotnet/api/system.string - name: '>' spec.vb: - uid: System.Collections.Generic.IEnumerable`1 name: IEnumerable isExternal: true href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - name: ( - name: Of - name: " " - uid: System.String name: String isExternal: true href: https://learn.microsoft.com/dotnet/api/system.string - name: ) - uid: System.Collections.Generic.IEnumerable`1 commentId: T:System.Collections.Generic.IEnumerable`1 isExternal: true href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 name: IEnumerable nameWithType: IEnumerable fullName: System.Collections.Generic.IEnumerable nameWithType.vb: IEnumerable(Of T) fullName.vb: System.Collections.Generic.IEnumerable(Of T) name.vb: IEnumerable(Of T) spec.csharp: - uid: System.Collections.Generic.IEnumerable`1 name: IEnumerable isExternal: true href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - name: < - name: T - name: '>' spec.vb: - uid: System.Collections.Generic.IEnumerable`1 name: IEnumerable isExternal: true href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1 - name: ( - name: Of - name: " " - name: T - name: )