TinyLifeWeb/docs/api/TinyLife.Debug.yml

726 lines
23 KiB
YAML
Raw Normal View History

2021-11-23 16:24:04 +01:00
### YamlMime:ManagedReference
items:
- uid: TinyLife.Debug
commentId: T:TinyLife.Debug
id: Debug
parent: TinyLife
children:
- TinyLife.Debug.Cheats
- TinyLife.Debug.DebugLines
2022-03-09 16:13:05 +01:00
- TinyLife.Debug.TryCheat(System.String)
2021-11-23 16:24:04 +01:00
langs:
- csharp
- vb
name: Debug
nameWithType: Debug
fullName: TinyLife.Debug
type: Class
source:
remote:
path: TinyLife/Debug.cs
2023-03-30 18:07:55 +02:00
branch: main
2021-11-26 23:42:22 +01:00
repo: https://git.ellpeck.de/Ellpeck/TinyLife
2021-11-23 16:24:04 +01:00
id: Debug
2022-03-09 16:13:05 +01:00
path: ../TinyLife/Debug.cs
2023-01-16 12:24:01 +01:00
startLine: 35
2021-11-23 16:24:04 +01:00
assemblies:
- Tiny Life
namespace: TinyLife
summary: "\nThis class contains a set of ways to include custom debug information in the game, including <xref href=\"TinyLife.Debug.Cheats\" data-throw-if-not-resolved=\"false\"></xref> and <xref href=\"TinyLife.Debug.DebugLines\" data-throw-if-not-resolved=\"false\"></xref>.\n"
example: []
syntax:
content: public class Debug
content.vb: Public Class Debug
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
extensionMethods:
- TinyLife.Debug.TinyLife.Utilities.Extensions.JsonCopy``1
- uid: TinyLife.Debug.Cheats
commentId: F:TinyLife.Debug.Cheats
id: Cheats
parent: TinyLife.Debug
langs:
- csharp
- vb
name: Cheats
nameWithType: Debug.Cheats
fullName: TinyLife.Debug.Cheats
type: Field
source:
remote:
path: TinyLife/Debug.cs
2023-03-30 18:07:55 +02:00
branch: main
2021-11-26 23:42:22 +01:00
repo: https://git.ellpeck.de/Ellpeck/TinyLife
2021-11-23 16:24:04 +01:00
id: Cheats
2022-03-09 16:13:05 +01:00
path: ../TinyLife/Debug.cs
2023-01-16 12:24:01 +01:00
startLine: 42
2021-11-23 16:24:04 +01:00
assemblies:
- Tiny Life
namespace: TinyLife
summary: "\nA set of regular expressions that resolve into a <xref href=\"TinyLife.Debug.CheatDelegate\" data-throw-if-not-resolved=\"false\"></xref>.\nWhen a cheat is entered in the F1 menu, and it matches the expression, the <xref href=\"TinyLife.Debug.CheatDelegate\" data-throw-if-not-resolved=\"false\"></xref> is invoked.\nTo register new cheats, simply add them to this dictionary.\n"
example: []
syntax:
content: public static readonly Dictionary<Regex, Debug.CheatDelegate> Cheats
return:
type: System.Collections.Generic.Dictionary{System.Text.RegularExpressions.Regex,TinyLife.Debug.CheatDelegate}
content.vb: Public Shared ReadOnly Cheats As Dictionary(Of Regex, Debug.CheatDelegate)
- uid: TinyLife.Debug.DebugLines
commentId: F:TinyLife.Debug.DebugLines
id: DebugLines
parent: TinyLife.Debug
langs:
- csharp
- vb
name: DebugLines
nameWithType: Debug.DebugLines
fullName: TinyLife.Debug.DebugLines
type: Field
source:
remote:
path: TinyLife/Debug.cs
2023-03-30 18:07:55 +02:00
branch: main
2021-11-26 23:42:22 +01:00
repo: https://git.ellpeck.de/Ellpeck/TinyLife
2021-11-23 16:24:04 +01:00
id: DebugLines
2022-03-09 16:13:05 +01:00
path: ../TinyLife/Debug.cs
2023-01-16 12:24:01 +01:00
startLine: 48
2021-11-23 16:24:04 +01:00
assemblies:
- Tiny Life
namespace: TinyLife
summary: "\nA set of <xref href=\"TinyLife.Debug.DebugDelegate\" data-throw-if-not-resolved=\"false\"></xref> that cause additional lines to displayed in the F1 menu.\nTo register new debug lines, simply add them to this list.\nKeep in mind that, if too many debug lines are registered, they will go off-screen, so consider only displaying yours when holding certain hotkeys, or when they are necessary.\n"
example: []
syntax:
content: public static readonly List<Debug.DebugDelegate> DebugLines
return:
type: System.Collections.Generic.List{TinyLife.Debug.DebugDelegate}
content.vb: Public Shared ReadOnly DebugLines As List(Of Debug.DebugDelegate)
2022-03-09 16:13:05 +01:00
- uid: TinyLife.Debug.TryCheat(System.String)
commentId: M:TinyLife.Debug.TryCheat(System.String)
id: TryCheat(System.String)
parent: TinyLife.Debug
langs:
- csharp
- vb
2023-03-30 18:07:55 +02:00
name: TryCheat(string)
nameWithType: Debug.TryCheat(string)
fullName: TinyLife.Debug.TryCheat(string)
2022-03-09 16:13:05 +01:00
type: Method
source:
remote:
path: TinyLife/Debug.cs
2023-03-30 18:07:55 +02:00
branch: main
2022-03-09 16:13:05 +01:00
repo: https://git.ellpeck.de/Ellpeck/TinyLife
id: TryCheat
path: ../TinyLife/Debug.cs
2023-05-26 15:16:22 +02:00
startLine: 612
2022-03-09 16:13:05 +01:00
assemblies:
- Tiny Life
namespace: TinyLife
2022-05-24 13:36:05 +02:00
summary: "\nTries to execute the cheat with the given name or regular expression match.\n"
example: []
2022-03-09 16:13:05 +01:00
syntax:
content: public static bool TryCheat(string text)
parameters:
- id: text
type: System.String
2022-05-24 13:36:05 +02:00
description: The cheat to execute.
2022-03-09 16:13:05 +01:00
return:
type: System.Boolean
2022-05-24 13:36:05 +02:00
description: Whether the cheat was successfully exeucted.
2022-03-09 16:13:05 +01:00
content.vb: Public Shared Function TryCheat(text As String) As Boolean
overload: TinyLife.Debug.TryCheat*
2023-03-30 18:07:55 +02:00
nameWithType.vb: Debug.TryCheat(String)
fullName.vb: TinyLife.Debug.TryCheat(String)
name.vb: TryCheat(String)
2021-11-23 16:24:04 +01:00
references:
- uid: TinyLife.Debug.Cheats
commentId: F:TinyLife.Debug.Cheats
2023-03-30 18:07:55 +02:00
name: Cheats
nameWithType: Debug.Cheats
fullName: TinyLife.Debug.Cheats
2021-11-23 16:24:04 +01:00
- uid: TinyLife.Debug.DebugLines
commentId: F:TinyLife.Debug.DebugLines
2023-03-30 18:07:55 +02:00
name: DebugLines
nameWithType: Debug.DebugLines
fullName: TinyLife.Debug.DebugLines
2021-11-23 16:24:04 +01:00
- uid: TinyLife
commentId: N:TinyLife
name: TinyLife
nameWithType: TinyLife
fullName: TinyLife
- uid: System.Object
commentId: T:System.Object
parent: System
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.object
name: object
nameWithType: object
fullName: object
nameWithType.vb: Object
fullName.vb: Object
name.vb: Object
2021-11-23 16:24:04 +01:00
- uid: System.Object.Equals(System.Object)
commentId: M:System.Object.Equals(System.Object)
parent: System.Object
isExternal: true
2023-03-30 18:07:55 +02:00
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)
2021-11-23 16:24:04 +01:00
spec.csharp:
- uid: System.Object.Equals(System.Object)
name: Equals
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)
2021-11-23 16:24:04 +01:00
- name: (
- uid: System.Object
2023-03-30 18:07:55 +02:00
name: object
2021-11-23 16:24:04 +01:00
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.object
2021-11-23 16:24:04 +01:00
- name: )
spec.vb:
- uid: System.Object.Equals(System.Object)
name: Equals
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)
2021-11-23 16:24:04 +01:00
- name: (
- uid: System.Object
name: Object
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.object
2021-11-23 16:24:04 +01:00
- name: )
- uid: System.Object.Equals(System.Object,System.Object)
commentId: M:System.Object.Equals(System.Object,System.Object)
parent: System.Object
isExternal: true
2023-03-30 18:07:55 +02:00
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)
2021-11-23 16:24:04 +01:00
spec.csharp:
- uid: System.Object.Equals(System.Object,System.Object)
name: Equals
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)
2021-11-23 16:24:04 +01:00
- name: (
- uid: System.Object
2023-03-30 18:07:55 +02:00
name: object
2021-11-23 16:24:04 +01:00
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.object
- name: ','
- name: " "
2021-11-23 16:24:04 +01:00
- uid: System.Object
2023-03-30 18:07:55 +02:00
name: object
2021-11-23 16:24:04 +01:00
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.object
2021-11-23 16:24:04 +01:00
- name: )
spec.vb:
- uid: System.Object.Equals(System.Object,System.Object)
name: Equals
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)
2021-11-23 16:24:04 +01:00
- name: (
- uid: System.Object
name: Object
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.object
- name: ','
- name: " "
2021-11-23 16:24:04 +01:00
- uid: System.Object
name: Object
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.object
2021-11-23 16:24:04 +01:00
- name: )
- uid: System.Object.GetHashCode
commentId: M:System.Object.GetHashCode
parent: System.Object
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode
2021-11-23 16:24:04 +01:00
name: GetHashCode()
2023-03-30 18:07:55 +02:00
nameWithType: object.GetHashCode()
fullName: object.GetHashCode()
nameWithType.vb: Object.GetHashCode()
fullName.vb: Object.GetHashCode()
2021-11-23 16:24:04 +01:00
spec.csharp:
- uid: System.Object.GetHashCode
name: GetHashCode
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode
2021-11-23 16:24:04 +01:00
- name: (
- name: )
spec.vb:
- uid: System.Object.GetHashCode
name: GetHashCode
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode
2021-11-23 16:24:04 +01:00
- name: (
- name: )
- uid: System.Object.GetType
commentId: M:System.Object.GetType
parent: System.Object
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.object.gettype
2021-11-23 16:24:04 +01:00
name: GetType()
2023-03-30 18:07:55 +02:00
nameWithType: object.GetType()
fullName: object.GetType()
nameWithType.vb: Object.GetType()
fullName.vb: Object.GetType()
2021-11-23 16:24:04 +01:00
spec.csharp:
- uid: System.Object.GetType
name: GetType
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.object.gettype
2021-11-23 16:24:04 +01:00
- name: (
- name: )
spec.vb:
- uid: System.Object.GetType
name: GetType
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.object.gettype
2021-11-23 16:24:04 +01:00
- name: (
- name: )
- uid: System.Object.MemberwiseClone
commentId: M:System.Object.MemberwiseClone
parent: System.Object
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone
2021-11-23 16:24:04 +01:00
name: MemberwiseClone()
2023-03-30 18:07:55 +02:00
nameWithType: object.MemberwiseClone()
fullName: object.MemberwiseClone()
nameWithType.vb: Object.MemberwiseClone()
fullName.vb: Object.MemberwiseClone()
2021-11-23 16:24:04 +01:00
spec.csharp:
- uid: System.Object.MemberwiseClone
name: MemberwiseClone
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone
2021-11-23 16:24:04 +01:00
- name: (
- name: )
spec.vb:
- uid: System.Object.MemberwiseClone
name: MemberwiseClone
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone
2021-11-23 16:24:04 +01:00
- name: (
- name: )
- uid: System.Object.ReferenceEquals(System.Object,System.Object)
commentId: M:System.Object.ReferenceEquals(System.Object,System.Object)
parent: System.Object
isExternal: true
2023-03-30 18:07:55 +02:00
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)
2021-11-23 16:24:04 +01:00
spec.csharp:
- uid: System.Object.ReferenceEquals(System.Object,System.Object)
name: ReferenceEquals
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals
2021-11-23 16:24:04 +01:00
- name: (
- uid: System.Object
2023-03-30 18:07:55 +02:00
name: object
2021-11-23 16:24:04 +01:00
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.object
- name: ','
- name: " "
2021-11-23 16:24:04 +01:00
- uid: System.Object
2023-03-30 18:07:55 +02:00
name: object
2021-11-23 16:24:04 +01:00
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.object
2021-11-23 16:24:04 +01:00
- name: )
spec.vb:
- uid: System.Object.ReferenceEquals(System.Object,System.Object)
name: ReferenceEquals
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals
2021-11-23 16:24:04 +01:00
- name: (
- uid: System.Object
name: Object
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.object
- name: ','
- name: " "
2021-11-23 16:24:04 +01:00
- uid: System.Object
name: Object
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.object
2021-11-23 16:24:04 +01:00
- name: )
- uid: System.Object.ToString
commentId: M:System.Object.ToString
parent: System.Object
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.object.tostring
2021-11-23 16:24:04 +01:00
name: ToString()
2023-03-30 18:07:55 +02:00
nameWithType: object.ToString()
fullName: object.ToString()
nameWithType.vb: Object.ToString()
fullName.vb: Object.ToString()
2021-11-23 16:24:04 +01:00
spec.csharp:
- uid: System.Object.ToString
name: ToString
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.object.tostring
2021-11-23 16:24:04 +01:00
- name: (
- name: )
spec.vb:
- uid: System.Object.ToString
name: ToString
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.object.tostring
2021-11-23 16:24:04 +01:00
- name: (
- name: )
- uid: TinyLife.Debug.TinyLife.Utilities.Extensions.JsonCopy``1
commentId: M:TinyLife.Utilities.Extensions.JsonCopy``1(``0)
parent: TinyLife.Utilities.Extensions
definition: TinyLife.Utilities.Extensions.JsonCopy``1(``0)
2023-03-30 18:07:55 +02:00
name: JsonCopy<Debug>(Debug)
nameWithType: Extensions.JsonCopy<Debug>(Debug)
fullName: TinyLife.Utilities.Extensions.JsonCopy<TinyLife.Debug>(TinyLife.Debug)
nameWithType.vb: Extensions.JsonCopy(Of Debug)(Debug)
fullName.vb: TinyLife.Utilities.Extensions.JsonCopy(Of TinyLife.Debug)(TinyLife.Debug)
name.vb: JsonCopy(Of Debug)(Debug)
2021-11-23 16:24:04 +01:00
spec.csharp:
2023-03-30 18:07:55 +02:00
- uid: TinyLife.Utilities.Extensions.JsonCopy``1(TinyLife.Debug)
name: JsonCopy
- name: <
- uid: TinyLife.Debug
name: Debug
- name: '>'
2021-11-23 16:24:04 +01:00
- name: (
2023-03-30 18:07:55 +02:00
- uid: TinyLife.Debug
name: Debug
2021-11-23 16:24:04 +01:00
- name: )
spec.vb:
2023-03-30 18:07:55 +02:00
- uid: TinyLife.Utilities.Extensions.JsonCopy``1(TinyLife.Debug)
name: JsonCopy
2021-11-23 16:24:04 +01:00
- name: (
2023-03-30 18:07:55 +02:00
- name: Of
- name: " "
- uid: TinyLife.Debug
name: Debug
- name: )
- name: (
- uid: TinyLife.Debug
name: Debug
2021-11-23 16:24:04 +01:00
- name: )
- uid: System
commentId: N:System
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system
2021-11-23 16:24:04 +01:00
name: System
nameWithType: System
fullName: System
- uid: TinyLife.Utilities.Extensions.JsonCopy``1(``0)
commentId: M:TinyLife.Utilities.Extensions.JsonCopy``1(``0)
name: JsonCopy<T>(T)
nameWithType: Extensions.JsonCopy<T>(T)
fullName: TinyLife.Utilities.Extensions.JsonCopy<T>(T)
nameWithType.vb: Extensions.JsonCopy(Of T)(T)
fullName.vb: TinyLife.Utilities.Extensions.JsonCopy(Of T)(T)
name.vb: JsonCopy(Of T)(T)
spec.csharp:
- uid: TinyLife.Utilities.Extensions.JsonCopy``1(``0)
2023-03-30 18:07:55 +02:00
name: JsonCopy
- name: <
- name: T
- name: '>'
2021-11-23 16:24:04 +01:00
- name: (
- name: T
- name: )
spec.vb:
- uid: TinyLife.Utilities.Extensions.JsonCopy``1(``0)
2023-03-30 18:07:55 +02:00
name: JsonCopy
- name: (
- name: Of
- name: " "
- name: T
- name: )
2021-11-23 16:24:04 +01:00
- name: (
- name: T
- name: )
- uid: TinyLife.Utilities.Extensions
commentId: T:TinyLife.Utilities.Extensions
parent: TinyLife.Utilities
name: Extensions
nameWithType: Extensions
fullName: TinyLife.Utilities.Extensions
- uid: TinyLife.Utilities
commentId: N:TinyLife.Utilities
name: TinyLife.Utilities
nameWithType: TinyLife.Utilities
fullName: TinyLife.Utilities
2023-03-30 18:07:55 +02:00
spec.csharp:
- uid: TinyLife
name: TinyLife
- name: .
- uid: TinyLife.Utilities
name: Utilities
spec.vb:
- uid: TinyLife
name: TinyLife
- name: .
- uid: TinyLife.Utilities
name: Utilities
2021-11-23 16:24:04 +01:00
- uid: TinyLife.Debug.CheatDelegate
commentId: T:TinyLife.Debug.CheatDelegate
name: Debug.CheatDelegate
nameWithType: Debug.CheatDelegate
fullName: TinyLife.Debug.CheatDelegate
2023-03-30 18:07:55 +02:00
spec.csharp:
- uid: TinyLife.Debug
name: Debug
- name: .
- uid: TinyLife.Debug.CheatDelegate
name: CheatDelegate
spec.vb:
- uid: TinyLife.Debug
name: Debug
- name: .
- uid: TinyLife.Debug.CheatDelegate
name: CheatDelegate
2021-11-23 16:24:04 +01:00
- uid: System.Collections.Generic.Dictionary{System.Text.RegularExpressions.Regex,TinyLife.Debug.CheatDelegate}
commentId: T:System.Collections.Generic.Dictionary{System.Text.RegularExpressions.Regex,TinyLife.Debug.CheatDelegate}
parent: System.Collections.Generic
definition: System.Collections.Generic.Dictionary`2
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary-2
2021-11-23 16:24:04 +01:00
name: Dictionary<Regex, Debug.CheatDelegate>
nameWithType: Dictionary<Regex, Debug.CheatDelegate>
fullName: System.Collections.Generic.Dictionary<System.Text.RegularExpressions.Regex, TinyLife.Debug.CheatDelegate>
nameWithType.vb: Dictionary(Of Regex, Debug.CheatDelegate)
fullName.vb: System.Collections.Generic.Dictionary(Of System.Text.RegularExpressions.Regex, TinyLife.Debug.CheatDelegate)
name.vb: Dictionary(Of Regex, Debug.CheatDelegate)
spec.csharp:
- uid: System.Collections.Generic.Dictionary`2
name: Dictionary
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary-2
2021-11-23 16:24:04 +01:00
- name: <
- uid: System.Text.RegularExpressions.Regex
name: Regex
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.text.regularexpressions.regex
- name: ','
- name: " "
- uid: TinyLife.Debug
name: Debug
- name: .
2021-11-23 16:24:04 +01:00
- uid: TinyLife.Debug.CheatDelegate
2023-03-30 18:07:55 +02:00
name: CheatDelegate
2021-11-23 16:24:04 +01:00
- name: '>'
spec.vb:
- uid: System.Collections.Generic.Dictionary`2
name: Dictionary
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary-2
- name: (
- name: Of
- name: " "
2021-11-23 16:24:04 +01:00
- uid: System.Text.RegularExpressions.Regex
name: Regex
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.text.regularexpressions.regex
- name: ','
- name: " "
- uid: TinyLife.Debug
name: Debug
- name: .
2021-11-23 16:24:04 +01:00
- uid: TinyLife.Debug.CheatDelegate
2023-03-30 18:07:55 +02:00
name: CheatDelegate
2021-11-23 16:24:04 +01:00
- name: )
- uid: System.Collections.Generic.Dictionary`2
commentId: T:System.Collections.Generic.Dictionary`2
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary-2
2021-11-23 16:24:04 +01:00
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
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary-2
2021-11-23 16:24:04 +01:00
- name: <
- name: TKey
2023-03-30 18:07:55 +02:00
- name: ','
- name: " "
2021-11-23 16:24:04 +01:00
- name: TValue
- name: '>'
spec.vb:
- uid: System.Collections.Generic.Dictionary`2
name: Dictionary
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary-2
- name: (
- name: Of
- name: " "
2021-11-23 16:24:04 +01:00
- name: TKey
2023-03-30 18:07:55 +02:00
- name: ','
- name: " "
2021-11-23 16:24:04 +01:00
- name: TValue
- name: )
- uid: System.Collections.Generic
commentId: N:System.Collections.Generic
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system
2021-11-23 16:24:04 +01:00
name: System.Collections.Generic
nameWithType: System.Collections.Generic
fullName: System.Collections.Generic
2023-03-30 18:07:55 +02:00
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
2021-11-23 16:24:04 +01:00
- uid: TinyLife.Debug.DebugDelegate
commentId: T:TinyLife.Debug.DebugDelegate
name: Debug.DebugDelegate
nameWithType: Debug.DebugDelegate
fullName: TinyLife.Debug.DebugDelegate
2023-03-30 18:07:55 +02:00
spec.csharp:
- uid: TinyLife.Debug
name: Debug
- name: .
- uid: TinyLife.Debug.DebugDelegate
name: DebugDelegate
spec.vb:
- uid: TinyLife.Debug
name: Debug
- name: .
- uid: TinyLife.Debug.DebugDelegate
name: DebugDelegate
2021-11-23 16:24:04 +01:00
- uid: System.Collections.Generic.List{TinyLife.Debug.DebugDelegate}
commentId: T:System.Collections.Generic.List{TinyLife.Debug.DebugDelegate}
parent: System.Collections.Generic
definition: System.Collections.Generic.List`1
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1
2021-11-23 16:24:04 +01:00
name: List<Debug.DebugDelegate>
nameWithType: List<Debug.DebugDelegate>
fullName: System.Collections.Generic.List<TinyLife.Debug.DebugDelegate>
nameWithType.vb: List(Of Debug.DebugDelegate)
fullName.vb: System.Collections.Generic.List(Of TinyLife.Debug.DebugDelegate)
name.vb: List(Of Debug.DebugDelegate)
spec.csharp:
- uid: System.Collections.Generic.List`1
name: List
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1
2021-11-23 16:24:04 +01:00
- name: <
2023-03-30 18:07:55 +02:00
- uid: TinyLife.Debug
name: Debug
- name: .
2021-11-23 16:24:04 +01:00
- uid: TinyLife.Debug.DebugDelegate
2023-03-30 18:07:55 +02:00
name: DebugDelegate
2021-11-23 16:24:04 +01:00
- name: '>'
spec.vb:
- uid: System.Collections.Generic.List`1
name: List
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1
- name: (
- name: Of
- name: " "
- uid: TinyLife.Debug
name: Debug
- name: .
2021-11-23 16:24:04 +01:00
- uid: TinyLife.Debug.DebugDelegate
2023-03-30 18:07:55 +02:00
name: DebugDelegate
2021-11-23 16:24:04 +01:00
- name: )
- uid: System.Collections.Generic.List`1
commentId: T:System.Collections.Generic.List`1
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1
2021-11-23 16:24:04 +01:00
name: List<T>
nameWithType: List<T>
fullName: System.Collections.Generic.List<T>
nameWithType.vb: List(Of T)
fullName.vb: System.Collections.Generic.List(Of T)
name.vb: List(Of T)
spec.csharp:
- uid: System.Collections.Generic.List`1
name: List
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1
2021-11-23 16:24:04 +01:00
- name: <
- name: T
- name: '>'
spec.vb:
- uid: System.Collections.Generic.List`1
name: List
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1
- name: (
- name: Of
- name: " "
2021-11-23 16:24:04 +01:00
- name: T
- name: )
2022-03-09 16:13:05 +01:00
- uid: TinyLife.Debug.TryCheat*
commentId: Overload:TinyLife.Debug.TryCheat
name: TryCheat
nameWithType: Debug.TryCheat
fullName: TinyLife.Debug.TryCheat
- uid: System.String
commentId: T:System.String
parent: System
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.string
name: string
nameWithType: string
fullName: string
nameWithType.vb: String
fullName.vb: String
name.vb: String
2022-03-09 16:13:05 +01:00
- uid: System.Boolean
commentId: T:System.Boolean
parent: System
isExternal: true
2023-03-30 18:07:55 +02:00
href: https://learn.microsoft.com/dotnet/api/system.boolean
name: bool
nameWithType: bool
fullName: bool
nameWithType.vb: Boolean
fullName.vb: Boolean
name.vb: Boolean