mirror of
https://github.com/Ellpeck/TinyLifeWeb.git
synced 2024-11-01 03:10:49 +01:00
900 lines
30 KiB
YAML
Generated
900 lines
30 KiB
YAML
Generated
### YamlMime:ManagedReference
|
|
items:
|
|
- uid: TinyLife.Localization
|
|
commentId: T:TinyLife.Localization
|
|
id: Localization
|
|
parent: TinyLife
|
|
children:
|
|
- TinyLife.Localization.Get(TinyLife.LnCategory,System.String)
|
|
- TinyLife.Localization.Get(TinyLife.LnCategory,System.String,System.Object[])
|
|
- 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
|
|
assemblies:
|
|
- Tiny Life
|
|
namespace: TinyLife
|
|
summary: A class that houses the currently loaded language as well as allows for switching the currently selected language
|
|
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
|
|
assemblies:
|
|
- Tiny Life
|
|
namespace: TinyLife
|
|
summary: A list of the full names of all of the languages that the game supports
|
|
example: []
|
|
syntax:
|
|
content: public static readonly Dictionary<string, string> 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
|
|
assemblies:
|
|
- Tiny Life
|
|
namespace: TinyLife
|
|
summary: A dictionary that contains pre-defined names, used by all languages, for Tinies as well as other named objects, usually related to a <xref href="TinyLife.Goals.Project" data-throw-if-not-resolved="false"></xref>.
|
|
example: []
|
|
syntax:
|
|
content: public static readonly Dictionary<NameCategory, List<string>> Names
|
|
return:
|
|
type: System.Collections.Generic.Dictionary{TinyLife.NameCategory,System.Collections.Generic.List{System.String}}
|
|
content.vb: Public Shared ReadOnly Names As Dictionary(Of NameCategory, List(Of 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
|
|
assemblies:
|
|
- Tiny Life
|
|
namespace: TinyLife
|
|
summary: >-
|
|
Switches the current language to the language given.
|
|
|
|
Note that, for most ui elements to update, they have to be re-created.
|
|
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
|
|
assemblies:
|
|
- Tiny Life
|
|
namespace: TinyLife
|
|
summary: >-
|
|
Reloads the strings for the current language (<xref href="TinyLife.Localization.SetLanguage(System.String)" data-throw-if-not-resolved="false"></xref>) for the base game and all mods.
|
|
|
|
Note that, for most ui elements to update, they have to be re-created.
|
|
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
|
|
assemblies:
|
|
- Tiny Life
|
|
namespace: TinyLife
|
|
summary: >-
|
|
Gets a localized string in the given category with the given key.
|
|
|
|
If the localization is not found, the key, surrounded by question marks, is returned instead.
|
|
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
|
|
assemblies:
|
|
- Tiny Life
|
|
namespace: TinyLife
|
|
summary: >-
|
|
Gets a localized string in the given category with the given key.
|
|
|
|
If the localization is not found, the key, surrounded by question marks, is returned instead.
|
|
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 <xref href="System.String.Format(System.IFormatProvider%2cSystem.String%2cSystem.Object)" data-throw-if-not-resolved="false"></xref>
|
|
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
|
|
assemblies:
|
|
- Tiny Life
|
|
namespace: TinyLife
|
|
summary: Returns all of the keys that are registered for localization for a given <xref href="TinyLife.LnCategory" data-throw-if-not-resolved="false"></xref>
|
|
example: []
|
|
syntax:
|
|
content: public static IEnumerable<string> 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
|
|
href: TinyLife.html
|
|
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<string, string>
|
|
nameWithType: Dictionary<string, string>
|
|
fullName: System.Collections.Generic.Dictionary<string, string>
|
|
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<TKey, TValue>
|
|
nameWithType: Dictionary<TKey, TValue>
|
|
fullName: System.Collections.Generic.Dictionary<TKey, TValue>
|
|
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.Goals.Project
|
|
commentId: T:TinyLife.Goals.Project
|
|
parent: TinyLife.Goals
|
|
href: TinyLife.Goals.Project.html
|
|
name: Project
|
|
nameWithType: Project
|
|
fullName: TinyLife.Goals.Project
|
|
- uid: System.Collections.Generic.Dictionary{TinyLife.NameCategory,System.Collections.Generic.List{System.String}}
|
|
commentId: T:System.Collections.Generic.Dictionary{TinyLife.NameCategory,System.Collections.Generic.List{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<NameCategory, List<string>>
|
|
nameWithType: Dictionary<NameCategory, List<string>>
|
|
fullName: System.Collections.Generic.Dictionary<TinyLife.NameCategory, System.Collections.Generic.List<string>>
|
|
nameWithType.vb: Dictionary(Of NameCategory, List(Of String))
|
|
fullName.vb: System.Collections.Generic.Dictionary(Of TinyLife.NameCategory, System.Collections.Generic.List(Of String))
|
|
name.vb: Dictionary(Of NameCategory, List(Of 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: TinyLife.NameCategory
|
|
name: NameCategory
|
|
href: TinyLife.NameCategory.html
|
|
- name: ','
|
|
- name: " "
|
|
- uid: System.Collections.Generic.List`1
|
|
name: List
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1
|
|
- name: <
|
|
- uid: System.String
|
|
name: string
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.string
|
|
- 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: TinyLife.NameCategory
|
|
name: NameCategory
|
|
href: TinyLife.NameCategory.html
|
|
- name: ','
|
|
- name: " "
|
|
- uid: System.Collections.Generic.List`1
|
|
name: List
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1
|
|
- name: (
|
|
- name: Of
|
|
- name: " "
|
|
- uid: System.String
|
|
name: String
|
|
isExternal: true
|
|
href: https://learn.microsoft.com/dotnet/api/system.string
|
|
- name: )
|
|
- name: )
|
|
- uid: TinyLife.Goals
|
|
commentId: N:TinyLife.Goals
|
|
href: TinyLife.html
|
|
name: TinyLife.Goals
|
|
nameWithType: TinyLife.Goals
|
|
fullName: TinyLife.Goals
|
|
spec.csharp:
|
|
- uid: TinyLife
|
|
name: TinyLife
|
|
href: TinyLife.html
|
|
- name: .
|
|
- uid: TinyLife.Goals
|
|
name: Goals
|
|
href: TinyLife.Goals.html
|
|
spec.vb:
|
|
- uid: TinyLife
|
|
name: TinyLife
|
|
href: TinyLife.html
|
|
- name: .
|
|
- uid: TinyLife.Goals
|
|
name: Goals
|
|
href: TinyLife.Goals.html
|
|
- uid: TinyLife.Localization.SetLanguage*
|
|
commentId: Overload:TinyLife.Localization.SetLanguage
|
|
href: TinyLife.Localization.html#TinyLife_Localization_SetLanguage_System_String_
|
|
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: TinyLife.Localization.html#TinyLife_Localization_SetLanguage_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
|
|
href: TinyLife.Localization.html#TinyLife_Localization_SetLanguage_System_String_
|
|
- 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
|
|
href: TinyLife.Localization.html#TinyLife_Localization_SetLanguage_System_String_
|
|
- 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
|
|
href: TinyLife.Localization.html#TinyLife_Localization_Reload
|
|
name: Reload
|
|
nameWithType: Localization.Reload
|
|
fullName: TinyLife.Localization.Reload
|
|
- uid: TinyLife.Localization.Get*
|
|
commentId: Overload:TinyLife.Localization.Get
|
|
href: TinyLife.Localization.html#TinyLife_Localization_Get_TinyLife_LnCategory_System_String_
|
|
name: Get
|
|
nameWithType: Localization.Get
|
|
fullName: TinyLife.Localization.Get
|
|
- uid: TinyLife.LnCategory
|
|
commentId: T:TinyLife.LnCategory
|
|
parent: TinyLife
|
|
href: TinyLife.LnCategory.html
|
|
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
|
|
href: TinyLife.Localization.html#TinyLife_Localization_GetKeys_TinyLife_LnCategory_
|
|
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<string>
|
|
nameWithType: IEnumerable<string>
|
|
fullName: System.Collections.Generic.IEnumerable<string>
|
|
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<T>
|
|
nameWithType: IEnumerable<T>
|
|
fullName: System.Collections.Generic.IEnumerable<T>
|
|
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: )
|