2021-10-14 20:30:40 +02:00
### YamlMime:ManagedReference
items :
- uid : TinyLife.Goals.LifeGoal.Instance
commentId : T:TinyLife.Goals.LifeGoal.Instance
id : LifeGoal.Instance
parent : TinyLife.Goals
children :
- TinyLife.Goals.LifeGoal.Instance.#ctor(TinyLife.Objects.Person,TinyLife.Goals.LifeGoal,System.Int32)
- TinyLife.Goals.LifeGoal.Instance.Advance
- TinyLife.Goals.LifeGoal.Instance.Completed
- TinyLife.Goals.LifeGoal.Instance.CurrentGoals
- TinyLife.Goals.LifeGoal.Instance.Goal
- TinyLife.Goals.LifeGoal.Instance.Person
- TinyLife.Goals.LifeGoal.Instance.Stage
- TinyLife.Goals.LifeGoal.Instance.StageIndex
- TinyLife.Goals.LifeGoal.Instance.Update
- TinyLife.Goals.LifeGoal.Instance.Validate(TinyLife.Objects.Person)
langs :
- csharp
- vb
name : LifeGoal.Instance
nameWithType : LifeGoal.Instance
fullName : TinyLife.Goals.LifeGoal.Instance
type : Class
assemblies :
- Tiny Life
namespace : TinyLife.Goals
2024-01-07 16:53:47 +01:00
summary : A class used to represent a currently active/ongoing <xref href="TinyLife.Goals.LifeGoal" data-throw-if-not-resolved="false"></xref> instance
2021-10-14 20:30:40 +02:00
example : [ ]
syntax :
content : >-
[ DataContract]
2023-03-30 18:07:55 +02:00
public class LifeGoal.Instance
2021-10-14 20:30:40 +02:00
content.vb : >-
<DataContract>
2023-03-30 18:07:55 +02:00
Public Class LifeGoal.Instance
2021-10-14 20:30:40 +02:00
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.Goals.LifeGoal.Instance.TinyLife.Utilities.Extensions.JsonCopy``1
attributes :
- type : System.Runtime.Serialization.DataContractAttribute
ctor : System.Runtime.Serialization.DataContractAttribute.#ctor
arguments : [ ]
- uid : TinyLife.Goals.LifeGoal.Instance.Goal
commentId : F:TinyLife.Goals.LifeGoal.Instance.Goal
id : Goal
parent : TinyLife.Goals.LifeGoal.Instance
langs :
- csharp
- vb
name : Goal
nameWithType : LifeGoal.Instance.Goal
fullName : TinyLife.Goals.LifeGoal.Instance.Goal
type : Field
assemblies :
- Tiny Life
namespace : TinyLife.Goals
2024-01-07 16:53:47 +01:00
summary : The underlying <xref href="TinyLife.Goals.LifeGoal" data-throw-if-not-resolved="false"></xref> that this instance is tracking
2021-10-14 20:30:40 +02:00
example : [ ]
syntax :
content : >-
[ DataMember]
public readonly LifeGoal Goal
return :
type : TinyLife.Goals.LifeGoal
content.vb : >-
<DataMember>
Public ReadOnly Goal As LifeGoal
attributes :
- type : System.Runtime.Serialization.DataMemberAttribute
ctor : System.Runtime.Serialization.DataMemberAttribute.#ctor
arguments : [ ]
- uid : TinyLife.Goals.LifeGoal.Instance.CurrentGoals
commentId : P:TinyLife.Goals.LifeGoal.Instance.CurrentGoals
id : CurrentGoals
parent : TinyLife.Goals.LifeGoal.Instance
langs :
- csharp
- vb
name : CurrentGoals
nameWithType : LifeGoal.Instance.CurrentGoals
fullName : TinyLife.Goals.LifeGoal.Instance.CurrentGoals
type : Property
assemblies :
- Tiny Life
namespace : TinyLife.Goals
2024-01-07 16:53:47 +01:00
summary : The <xref href="TinyLife.Goals.GoalSet" data-throw-if-not-resolved="false"></xref> instance that represents the currently active stage of this life goal instance
2021-10-14 20:30:40 +02:00
example : [ ]
syntax :
content : >-
[ DataMember]
public GoalSet CurrentGoals { get; }
parameters : [ ]
return :
type : TinyLife.Goals.GoalSet
content.vb : >-
<DataMember>
2023-03-30 18:07:55 +02:00
Public Property CurrentGoals As GoalSet
2021-10-14 20:30:40 +02:00
overload : TinyLife.Goals.LifeGoal.Instance.CurrentGoals*
attributes :
- type : System.Runtime.Serialization.DataMemberAttribute
ctor : System.Runtime.Serialization.DataMemberAttribute.#ctor
arguments : [ ]
- uid : TinyLife.Goals.LifeGoal.Instance.StageIndex
commentId : P:TinyLife.Goals.LifeGoal.Instance.StageIndex
id : StageIndex
parent : TinyLife.Goals.LifeGoal.Instance
langs :
- csharp
- vb
name : StageIndex
nameWithType : LifeGoal.Instance.StageIndex
fullName : TinyLife.Goals.LifeGoal.Instance.StageIndex
type : Property
assemblies :
- Tiny Life
namespace : TinyLife.Goals
2024-01-07 16:53:47 +01:00
summary : >-
The index in the <xref href="TinyLife.Goals.LifeGoal.Stages" data-throw-if-not-resolved="false"></xref> array that the <xref href="TinyLife.Goals.LifeGoal.Instance.CurrentGoals" data-throw-if-not-resolved="false"></xref> are created from.
To get the <xref href="TinyLife.Goals.GoalSetInfo" data-throw-if-not-resolved="false"></xref> for this stage, use <xref href="TinyLife.Goals.LifeGoal.Instance.Stage" data-throw-if-not-resolved="false"></xref>.
If this value is greater than the length of <xref href="TinyLife.Goals.LifeGoal.Stages" data-throw-if-not-resolved="false"></xref>, this life goal is <xref href="TinyLife.Goals.LifeGoal.Instance.Completed" data-throw-if-not-resolved="false"></xref>.
2021-10-14 20:30:40 +02:00
example : [ ]
syntax :
content : >-
[ DataMember]
public int StageIndex { get; }
parameters : [ ]
return :
type : System.Int32
content.vb : >-
<DataMember>
2023-03-30 18:07:55 +02:00
Public Property StageIndex As Integer
2021-10-14 20:30:40 +02:00
overload : TinyLife.Goals.LifeGoal.Instance.StageIndex*
attributes :
- type : System.Runtime.Serialization.DataMemberAttribute
ctor : System.Runtime.Serialization.DataMemberAttribute.#ctor
arguments : [ ]
- uid : TinyLife.Goals.LifeGoal.Instance.Person
commentId : P:TinyLife.Goals.LifeGoal.Instance.Person
id : Person
parent : TinyLife.Goals.LifeGoal.Instance
langs :
- csharp
- vb
name : Person
nameWithType : LifeGoal.Instance.Person
fullName : TinyLife.Goals.LifeGoal.Instance.Person
type : Property
assemblies :
- Tiny Life
namespace : TinyLife.Goals
2024-01-07 16:53:47 +01:00
summary : The person that is currently working on this life goal
2021-10-14 20:30:40 +02:00
example : [ ]
syntax :
content : public Person Person { get; }
parameters : [ ]
return :
type : TinyLife.Objects.Person
2023-03-30 18:07:55 +02:00
content.vb : Public Property Person As Person
2021-10-14 20:30:40 +02:00
overload : TinyLife.Goals.LifeGoal.Instance.Person*
- uid : TinyLife.Goals.LifeGoal.Instance.Stage
commentId : P:TinyLife.Goals.LifeGoal.Instance.Stage
id : Stage
parent : TinyLife.Goals.LifeGoal.Instance
langs :
- csharp
- vb
name : Stage
nameWithType : LifeGoal.Instance.Stage
fullName : TinyLife.Goals.LifeGoal.Instance.Stage
type : Property
assemblies :
- Tiny Life
namespace : TinyLife.Goals
2024-01-07 16:53:47 +01:00
summary : >-
The <xref href="TinyLife.Goals.GoalSetInfo" data-throw-if-not-resolved="false"></xref> that the <xref href="TinyLife.Goals.LifeGoal.Instance.CurrentGoals" data-throw-if-not-resolved="false"></xref> are created from.
If this value is null, this life goal is <xref href="TinyLife.Goals.LifeGoal.Instance.Completed" data-throw-if-not-resolved="false"></xref>.
2021-10-14 20:30:40 +02:00
example : [ ]
syntax :
content : public GoalSetInfo Stage { get; }
parameters : [ ]
return :
type : TinyLife.Goals.GoalSetInfo
content.vb : Public ReadOnly Property Stage As GoalSetInfo
overload : TinyLife.Goals.LifeGoal.Instance.Stage*
- uid : TinyLife.Goals.LifeGoal.Instance.Completed
commentId : P:TinyLife.Goals.LifeGoal.Instance.Completed
id : Completed
parent : TinyLife.Goals.LifeGoal.Instance
langs :
- csharp
- vb
name : Completed
nameWithType : LifeGoal.Instance.Completed
fullName : TinyLife.Goals.LifeGoal.Instance.Completed
type : Property
assemblies :
- Tiny Life
namespace : TinyLife.Goals
2024-01-07 16:53:47 +01:00
summary : Returns whether this life goal is considered complete, which is when <xref href="TinyLife.Goals.LifeGoal.Instance.Stage" data-throw-if-not-resolved="false"></xref> is null.
2021-10-14 20:30:40 +02:00
example : [ ]
syntax :
content : public bool Completed { get; }
parameters : [ ]
return :
type : System.Boolean
content.vb : Public ReadOnly Property Completed As Boolean
overload : TinyLife.Goals.LifeGoal.Instance.Completed*
- uid : TinyLife.Goals.LifeGoal.Instance.#ctor(TinyLife.Objects.Person,TinyLife.Goals.LifeGoal,System.Int32)
commentId : M:TinyLife.Goals.LifeGoal.Instance.#ctor(TinyLife.Objects.Person,TinyLife.Goals.LifeGoal,System.Int32)
id : '#ctor(TinyLife.Objects.Person,TinyLife.Goals.LifeGoal,System.Int32)'
parent : TinyLife.Goals.LifeGoal.Instance
langs :
- csharp
- vb
2023-03-30 18:07:55 +02:00
name : Instance(Person, LifeGoal, int)
nameWithType : LifeGoal.Instance.Instance(Person, LifeGoal, int)
fullName : TinyLife.Goals.LifeGoal.Instance.Instance(TinyLife.Objects.Person, TinyLife.Goals.LifeGoal, int)
2021-10-14 20:30:40 +02:00
type : Constructor
assemblies :
- Tiny Life
namespace : TinyLife.Goals
2024-01-07 16:53:47 +01:00
summary : Creates a new life goal instance from the given <xref href="TinyLife.Goals.LifeGoal" data-throw-if-not-resolved="false"></xref>
2021-10-14 20:30:40 +02:00
example : [ ]
syntax :
content : public Instance(Person person, LifeGoal goal, int stage = 0)
parameters :
- id : person
type : TinyLife.Objects.Person
description : The person to work on this life goal
- id : goal
type : TinyLife.Goals.LifeGoal
description : The life goal information
- id : stage
type : System.Int32
description : The stage to start out in, or 0 by default
content.vb : Public Sub New(person As Person, goal As LifeGoal, stage As Integer = 0)
overload : TinyLife.Goals.LifeGoal.Instance.#ctor*
2023-03-30 18:07:55 +02:00
nameWithType.vb : LifeGoal.Instance.New(Person, LifeGoal, Integer)
fullName.vb : TinyLife.Goals.LifeGoal.Instance.New(TinyLife.Objects.Person, TinyLife.Goals.LifeGoal, Integer)
name.vb : New(Person, LifeGoal, Integer)
2021-10-14 20:30:40 +02:00
- uid : TinyLife.Goals.LifeGoal.Instance.Update
commentId : M:TinyLife.Goals.LifeGoal.Instance.Update
id : Update
parent : TinyLife.Goals.LifeGoal.Instance
langs :
- csharp
- vb
name : Update()
nameWithType : LifeGoal.Instance.Update()
fullName : TinyLife.Goals.LifeGoal.Instance.Update()
type : Method
assemblies :
- Tiny Life
namespace : TinyLife.Goals
2024-01-07 16:53:47 +01:00
summary : Updates this life goal, causing <xref href="TinyLife.Goals.LifeGoal.Instance.Advance" data-throw-if-not-resolved="false"></xref> to be called if the <xref href="TinyLife.Goals.LifeGoal.Instance.CurrentGoals" data-throw-if-not-resolved="false"></xref> are completed
2021-10-14 20:30:40 +02:00
example : [ ]
syntax :
content : public void Update()
2023-03-30 18:07:55 +02:00
content.vb : Public Sub Update()
2021-10-14 20:30:40 +02:00
overload : TinyLife.Goals.LifeGoal.Instance.Update*
- uid : TinyLife.Goals.LifeGoal.Instance.Advance
commentId : M:TinyLife.Goals.LifeGoal.Instance.Advance
id : Advance
parent : TinyLife.Goals.LifeGoal.Instance
langs :
- csharp
- vb
name : Advance()
nameWithType : LifeGoal.Instance.Advance()
fullName : TinyLife.Goals.LifeGoal.Instance.Advance()
type : Method
assemblies :
- Tiny Life
namespace : TinyLife.Goals
2024-01-07 16:53:47 +01:00
summary : Forces this life goal to be advanced, regardless of whether the <xref href="TinyLife.Goals.LifeGoal.Instance.CurrentGoals" data-throw-if-not-resolved="false"></xref> are completed+
2021-10-14 20:30:40 +02:00
example : [ ]
syntax :
content : public void Advance()
2023-03-30 18:07:55 +02:00
content.vb : Public Sub Advance()
2021-10-14 20:30:40 +02:00
overload : TinyLife.Goals.LifeGoal.Instance.Advance*
- uid : TinyLife.Goals.LifeGoal.Instance.Validate(TinyLife.Objects.Person)
commentId : M:TinyLife.Goals.LifeGoal.Instance.Validate(TinyLife.Objects.Person)
id : Validate(TinyLife.Objects.Person)
parent : TinyLife.Goals.LifeGoal.Instance
langs :
- csharp
- vb
name : Validate(Person)
nameWithType : LifeGoal.Instance.Validate(Person)
fullName : TinyLife.Goals.LifeGoal.Instance.Validate(TinyLife.Objects.Person)
type : Method
assemblies :
- Tiny Life
namespace : TinyLife.Goals
2024-01-07 16:53:47 +01:00
summary : Validates this life goal instance and the underlying <xref href="TinyLife.Goals.LifeGoal.Instance.CurrentGoals" data-throw-if-not-resolved="false"></xref> when loading from disk
2021-10-14 20:30:40 +02:00
example : [ ]
syntax :
content : public bool Validate(Person person)
parameters :
- id : person
type : TinyLife.Objects.Person
description : The person who is working on this life goal
return :
type : System.Boolean
description : Whether this life goal is considered valid
content.vb : Public Function Validate(person As Person) As Boolean
overload : TinyLife.Goals.LifeGoal.Instance.Validate*
references :
- uid : TinyLife.Goals.LifeGoal
commentId : T:TinyLife.Goals.LifeGoal
parent : TinyLife.Goals
2024-01-07 16:53:47 +01:00
href : TinyLife.Goals.LifeGoal.html
2021-10-14 20:30:40 +02:00
name : LifeGoal
nameWithType : LifeGoal
fullName : TinyLife.Goals.LifeGoal
- uid : TinyLife.Goals
commentId : N : TinyLife.Goals
2024-01-07 16:53:47 +01:00
href : TinyLife.html
2021-10-14 20:30:40 +02:00
name : TinyLife.Goals
nameWithType : TinyLife.Goals
fullName : TinyLife.Goals
2023-03-30 18:07:55 +02:00
spec.csharp :
- uid : TinyLife
name : TinyLife
2024-01-07 16:53:47 +01:00
href : TinyLife.html
2023-03-30 18:07:55 +02:00
- name : .
- uid : TinyLife.Goals
name : Goals
2024-01-07 16:53:47 +01:00
href : TinyLife.Goals.html
2023-03-30 18:07:55 +02:00
spec.vb :
- uid : TinyLife
name : TinyLife
2024-01-07 16:53:47 +01:00
href : TinyLife.html
2023-03-30 18:07:55 +02:00
- name : .
- uid : TinyLife.Goals
name : Goals
2024-01-07 16:53:47 +01:00
href : TinyLife.Goals.html
2021-10-14 20:30:40 +02:00
- 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-10-14 20:30:40 +02: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-10-14 20:30:40 +02: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-10-14 20:30:40 +02:00
- name : (
- uid : System.Object
2023-03-30 18:07:55 +02:00
name : object
2021-10-14 20:30:40 +02:00
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object
2021-10-14 20:30:40 +02: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-10-14 20:30:40 +02: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-10-14 20:30:40 +02: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-10-14 20:30:40 +02: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-10-14 20:30:40 +02:00
- name : (
- uid : System.Object
2023-03-30 18:07:55 +02:00
name : object
2021-10-14 20:30:40 +02:00
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object
- name : ','
- name : " "
2021-10-14 20:30:40 +02:00
- uid : System.Object
2023-03-30 18:07:55 +02:00
name : object
2021-10-14 20:30:40 +02:00
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object
2021-10-14 20:30:40 +02: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-10-14 20:30:40 +02: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-10-14 20:30:40 +02: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-10-14 20:30:40 +02: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-10-14 20:30:40 +02: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-10-14 20:30:40 +02: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-10-14 20:30:40 +02: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-10-14 20:30:40 +02: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-10-14 20:30:40 +02: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-10-14 20:30:40 +02: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-10-14 20:30:40 +02: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-10-14 20:30:40 +02: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-10-14 20:30:40 +02: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-10-14 20:30:40 +02: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-10-14 20:30:40 +02: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-10-14 20:30:40 +02: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-10-14 20:30:40 +02: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-10-14 20:30:40 +02:00
- name : (
- uid : System.Object
2023-03-30 18:07:55 +02:00
name : object
2021-10-14 20:30:40 +02:00
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object
- name : ','
- name : " "
2021-10-14 20:30:40 +02:00
- uid : System.Object
2023-03-30 18:07:55 +02:00
name : object
2021-10-14 20:30:40 +02:00
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object
2021-10-14 20:30:40 +02: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-10-14 20:30:40 +02: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-10-14 20:30:40 +02: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-10-14 20:30:40 +02: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-10-14 20:30:40 +02: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-10-14 20:30:40 +02: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-10-14 20:30:40 +02: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-10-14 20:30:40 +02:00
- name : (
- name : )
- uid : TinyLife.Goals.LifeGoal.Instance.TinyLife.Utilities.Extensions.JsonCopy``1
commentId : M:TinyLife.Utilities.Extensions.JsonCopy``1(``0)
parent : TinyLife.Utilities.Extensions
definition : TinyLife.Utilities.Extensions.JsonCopy``1(``0)
2024-01-07 16:53:47 +01:00
href : TinyLife.Utilities.Extensions.html#TinyLife_Utilities_Extensions_JsonCopy__1___0_
2023-03-30 18:07:55 +02:00
name : JsonCopy<Instance>(Instance)
nameWithType : Extensions.JsonCopy<LifeGoal.Instance>(LifeGoal.Instance)
fullName : TinyLife.Utilities.Extensions.JsonCopy<TinyLife.Goals.LifeGoal.Instance>(TinyLife.Goals.LifeGoal.Instance)
nameWithType.vb : Extensions.JsonCopy(Of LifeGoal.Instance)(LifeGoal.Instance)
fullName.vb : TinyLife.Utilities.Extensions.JsonCopy(Of TinyLife.Goals.LifeGoal.Instance)(TinyLife.Goals.LifeGoal.Instance)
name.vb : JsonCopy(Of Instance)(Instance)
2021-10-14 20:30:40 +02:00
spec.csharp :
2023-03-30 18:07:55 +02:00
- uid : TinyLife.Utilities.Extensions.JsonCopy``1(TinyLife.Goals.LifeGoal.Instance)
name : JsonCopy
2024-01-07 16:53:47 +01:00
href : TinyLife.Utilities.Extensions.html#TinyLife_Utilities_Extensions_JsonCopy__1___0_
2023-03-30 18:07:55 +02:00
- name : <
- uid : TinyLife.Goals.LifeGoal.Instance
name : Instance
2024-01-07 16:53:47 +01:00
href : TinyLife.Goals.LifeGoal.Instance.html
2023-03-30 18:07:55 +02:00
- name : '>'
2021-10-14 20:30:40 +02:00
- name : (
2023-03-30 18:07:55 +02:00
- uid : TinyLife.Goals.LifeGoal.Instance
name : Instance
2024-01-07 16:53:47 +01:00
href : TinyLife.Goals.LifeGoal.Instance.html
2021-10-14 20:30:40 +02:00
- name : )
spec.vb :
2023-03-30 18:07:55 +02:00
- uid : TinyLife.Utilities.Extensions.JsonCopy``1(TinyLife.Goals.LifeGoal.Instance)
name : JsonCopy
2024-01-07 16:53:47 +01:00
href : TinyLife.Utilities.Extensions.html#TinyLife_Utilities_Extensions_JsonCopy__1___0_
2021-10-14 20:30:40 +02:00
- name : (
2023-03-30 18:07:55 +02:00
- name : Of
- name : " "
- uid : TinyLife.Goals.LifeGoal.Instance
name : Instance
2024-01-07 16:53:47 +01:00
href : TinyLife.Goals.LifeGoal.Instance.html
2023-03-30 18:07:55 +02:00
- name : )
- name : (
- uid : TinyLife.Goals.LifeGoal.Instance
name : Instance
2024-01-07 16:53:47 +01:00
href : TinyLife.Goals.LifeGoal.Instance.html
2021-10-14 20:30:40 +02: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-10-14 20:30:40 +02:00
name : System
nameWithType : System
fullName : System
- uid : TinyLife.Utilities.Extensions.JsonCopy``1(``0)
commentId : M:TinyLife.Utilities.Extensions.JsonCopy``1(``0)
2024-01-07 16:53:47 +01:00
href : TinyLife.Utilities.Extensions.html#TinyLife_Utilities_Extensions_JsonCopy__1___0_
2021-10-14 20:30:40 +02:00
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
2024-01-07 16:53:47 +01:00
href : TinyLife.Utilities.Extensions.html#TinyLife_Utilities_Extensions_JsonCopy__1___0_
2023-03-30 18:07:55 +02:00
- name : <
- name : T
- name : '>'
2021-10-14 20:30:40 +02:00
- name : (
- name : T
- name : )
spec.vb :
- uid : TinyLife.Utilities.Extensions.JsonCopy``1(``0)
2023-03-30 18:07:55 +02:00
name : JsonCopy
2024-01-07 16:53:47 +01:00
href : TinyLife.Utilities.Extensions.html#TinyLife_Utilities_Extensions_JsonCopy__1___0_
2023-03-30 18:07:55 +02:00
- name : (
- name : Of
- name : " "
- name : T
- name : )
2021-10-14 20:30:40 +02:00
- name : (
- name : T
- name : )
- uid : TinyLife.Utilities.Extensions
commentId : T:TinyLife.Utilities.Extensions
parent : TinyLife.Utilities
2024-01-07 16:53:47 +01:00
href : TinyLife.Utilities.Extensions.html
2021-10-14 20:30:40 +02:00
name : Extensions
nameWithType : Extensions
fullName : TinyLife.Utilities.Extensions
- uid : TinyLife.Utilities
commentId : N : TinyLife.Utilities
2024-01-07 16:53:47 +01:00
href : TinyLife.html
2021-10-14 20:30:40 +02:00
name : TinyLife.Utilities
nameWithType : TinyLife.Utilities
fullName : TinyLife.Utilities
2023-03-30 18:07:55 +02:00
spec.csharp :
- uid : TinyLife
name : TinyLife
2024-01-07 16:53:47 +01:00
href : TinyLife.html
2023-03-30 18:07:55 +02:00
- name : .
- uid : TinyLife.Utilities
name : Utilities
2024-01-07 16:53:47 +01:00
href : TinyLife.Utilities.html
2023-03-30 18:07:55 +02:00
spec.vb :
- uid : TinyLife
name : TinyLife
2024-01-07 16:53:47 +01:00
href : TinyLife.html
2023-03-30 18:07:55 +02:00
- name : .
- uid : TinyLife.Utilities
name : Utilities
2024-01-07 16:53:47 +01:00
href : TinyLife.Utilities.html
2021-10-14 20:30:40 +02:00
- uid : TinyLife.Goals.GoalSet
commentId : T:TinyLife.Goals.GoalSet
parent : TinyLife.Goals
2024-01-07 16:53:47 +01:00
href : TinyLife.Goals.GoalSet.html
2021-10-14 20:30:40 +02:00
name : GoalSet
nameWithType : GoalSet
fullName : TinyLife.Goals.GoalSet
- uid : TinyLife.Goals.LifeGoal.Instance.CurrentGoals*
commentId : Overload:TinyLife.Goals.LifeGoal.Instance.CurrentGoals
2024-01-07 16:53:47 +01:00
href : TinyLife.Goals.LifeGoal.Instance.html#TinyLife_Goals_LifeGoal_Instance_CurrentGoals
2021-10-14 20:30:40 +02:00
name : CurrentGoals
nameWithType : LifeGoal.Instance.CurrentGoals
fullName : TinyLife.Goals.LifeGoal.Instance.CurrentGoals
- uid : TinyLife.Goals.LifeGoal.Stages
commentId : F:TinyLife.Goals.LifeGoal.Stages
2024-01-07 16:53:47 +01:00
href : TinyLife.Goals.LifeGoal.html#TinyLife_Goals_LifeGoal_Stages
2023-03-30 18:07:55 +02:00
name : Stages
nameWithType : LifeGoal.Stages
fullName : TinyLife.Goals.LifeGoal.Stages
2021-10-14 20:30:40 +02:00
- uid : TinyLife.Goals.LifeGoal.Instance.CurrentGoals
commentId : P:TinyLife.Goals.LifeGoal.Instance.CurrentGoals
2024-01-07 16:53:47 +01:00
href : TinyLife.Goals.LifeGoal.Instance.html#TinyLife_Goals_LifeGoal_Instance_CurrentGoals
2023-03-30 18:07:55 +02:00
name : CurrentGoals
nameWithType : LifeGoal.Instance.CurrentGoals
fullName : TinyLife.Goals.LifeGoal.Instance.CurrentGoals
2021-10-14 20:30:40 +02:00
- uid : TinyLife.Goals.GoalSetInfo
commentId : T:TinyLife.Goals.GoalSetInfo
parent : TinyLife.Goals
2024-01-07 16:53:47 +01:00
href : TinyLife.Goals.GoalSetInfo.html
2021-10-14 20:30:40 +02:00
name : GoalSetInfo
nameWithType : GoalSetInfo
fullName : TinyLife.Goals.GoalSetInfo
- uid : TinyLife.Goals.LifeGoal.Instance.Stage
commentId : P:TinyLife.Goals.LifeGoal.Instance.Stage
2024-01-07 16:53:47 +01:00
href : TinyLife.Goals.LifeGoal.Instance.html#TinyLife_Goals_LifeGoal_Instance_Stage
2023-03-30 18:07:55 +02:00
name : Stage
nameWithType : LifeGoal.Instance.Stage
fullName : TinyLife.Goals.LifeGoal.Instance.Stage
2021-10-14 20:30:40 +02:00
- uid : TinyLife.Goals.LifeGoal.Instance.Completed
commentId : P:TinyLife.Goals.LifeGoal.Instance.Completed
2024-01-07 16:53:47 +01:00
href : TinyLife.Goals.LifeGoal.Instance.html#TinyLife_Goals_LifeGoal_Instance_Completed
2023-03-30 18:07:55 +02:00
name : Completed
nameWithType : LifeGoal.Instance.Completed
fullName : TinyLife.Goals.LifeGoal.Instance.Completed
2021-10-14 20:30:40 +02:00
- uid : TinyLife.Goals.LifeGoal.Instance.StageIndex*
commentId : Overload:TinyLife.Goals.LifeGoal.Instance.StageIndex
2024-01-07 16:53:47 +01:00
href : TinyLife.Goals.LifeGoal.Instance.html#TinyLife_Goals_LifeGoal_Instance_StageIndex
2021-10-14 20:30:40 +02:00
name : StageIndex
nameWithType : LifeGoal.Instance.StageIndex
fullName : TinyLife.Goals.LifeGoal.Instance.StageIndex
- uid : System.Int32
commentId : T:System.Int32
parent : System
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.int32
name : int
nameWithType : int
fullName : int
nameWithType.vb : Integer
fullName.vb : Integer
name.vb : Integer
2021-10-14 20:30:40 +02:00
- uid : TinyLife.Goals.LifeGoal.Instance.Person*
commentId : Overload:TinyLife.Goals.LifeGoal.Instance.Person
2024-01-07 16:53:47 +01:00
href : TinyLife.Goals.LifeGoal.Instance.html#TinyLife_Goals_LifeGoal_Instance_Person
2021-10-14 20:30:40 +02:00
name : Person
nameWithType : LifeGoal.Instance.Person
fullName : TinyLife.Goals.LifeGoal.Instance.Person
- uid : TinyLife.Objects.Person
commentId : T:TinyLife.Objects.Person
parent : TinyLife.Objects
2024-01-07 16:53:47 +01:00
href : TinyLife.Objects.Person.html
2021-10-14 20:30:40 +02:00
name : Person
nameWithType : Person
fullName : TinyLife.Objects.Person
- uid : TinyLife.Objects
commentId : N : TinyLife.Objects
2024-01-07 16:53:47 +01:00
href : TinyLife.html
2021-10-14 20:30:40 +02:00
name : TinyLife.Objects
nameWithType : TinyLife.Objects
fullName : TinyLife.Objects
2023-03-30 18:07:55 +02:00
spec.csharp :
- uid : TinyLife
name : TinyLife
2024-01-07 16:53:47 +01:00
href : TinyLife.html
2023-03-30 18:07:55 +02:00
- name : .
- uid : TinyLife.Objects
name : Objects
2024-01-07 16:53:47 +01:00
href : TinyLife.Objects.html
2023-03-30 18:07:55 +02:00
spec.vb :
- uid : TinyLife
name : TinyLife
2024-01-07 16:53:47 +01:00
href : TinyLife.html
2023-03-30 18:07:55 +02:00
- name : .
- uid : TinyLife.Objects
name : Objects
2024-01-07 16:53:47 +01:00
href : TinyLife.Objects.html
2021-10-14 20:30:40 +02:00
- uid : TinyLife.Goals.LifeGoal.Instance.Stage*
commentId : Overload:TinyLife.Goals.LifeGoal.Instance.Stage
2024-01-07 16:53:47 +01:00
href : TinyLife.Goals.LifeGoal.Instance.html#TinyLife_Goals_LifeGoal_Instance_Stage
2021-10-14 20:30:40 +02:00
name : Stage
nameWithType : LifeGoal.Instance.Stage
fullName : TinyLife.Goals.LifeGoal.Instance.Stage
- uid : TinyLife.Goals.LifeGoal.Instance.Completed*
commentId : Overload:TinyLife.Goals.LifeGoal.Instance.Completed
2024-01-07 16:53:47 +01:00
href : TinyLife.Goals.LifeGoal.Instance.html#TinyLife_Goals_LifeGoal_Instance_Completed
2021-10-14 20:30:40 +02:00
name : Completed
nameWithType : LifeGoal.Instance.Completed
fullName : TinyLife.Goals.LifeGoal.Instance.Completed
- 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
2021-10-14 20:30:40 +02:00
- uid : TinyLife.Goals.LifeGoal.Instance.#ctor*
commentId : Overload:TinyLife.Goals.LifeGoal.Instance.#ctor
2024-01-07 16:53:47 +01:00
href : TinyLife.Goals.LifeGoal.Instance.html#TinyLife_Goals_LifeGoal_Instance__ctor_TinyLife_Objects_Person_TinyLife_Goals_LifeGoal_System_Int32_
2021-10-14 20:30:40 +02:00
name : Instance
nameWithType : LifeGoal.Instance.Instance
fullName : TinyLife.Goals.LifeGoal.Instance.Instance
2023-03-30 18:07:55 +02:00
nameWithType.vb : LifeGoal.Instance.New
fullName.vb : TinyLife.Goals.LifeGoal.Instance.New
name.vb : New
2021-10-14 20:30:40 +02:00
- uid : TinyLife.Goals.LifeGoal.Instance.Advance
commentId : M:TinyLife.Goals.LifeGoal.Instance.Advance
2024-01-07 16:53:47 +01:00
href : TinyLife.Goals.LifeGoal.Instance.html#TinyLife_Goals_LifeGoal_Instance_Advance
2023-03-30 18:07:55 +02:00
name : Advance()
nameWithType : LifeGoal.Instance.Advance()
fullName : TinyLife.Goals.LifeGoal.Instance.Advance()
spec.csharp :
- uid : TinyLife.Goals.LifeGoal.Instance.Advance
name : Advance
2024-01-07 16:53:47 +01:00
href : TinyLife.Goals.LifeGoal.Instance.html#TinyLife_Goals_LifeGoal_Instance_Advance
2023-03-30 18:07:55 +02:00
- name : (
- name : )
spec.vb :
- uid : TinyLife.Goals.LifeGoal.Instance.Advance
name : Advance
2024-01-07 16:53:47 +01:00
href : TinyLife.Goals.LifeGoal.Instance.html#TinyLife_Goals_LifeGoal_Instance_Advance
2023-03-30 18:07:55 +02:00
- name : (
- name : )
2021-10-14 20:30:40 +02:00
- uid : TinyLife.Goals.LifeGoal.Instance.Update*
commentId : Overload:TinyLife.Goals.LifeGoal.Instance.Update
2024-01-07 16:53:47 +01:00
href : TinyLife.Goals.LifeGoal.Instance.html#TinyLife_Goals_LifeGoal_Instance_Update
2021-10-14 20:30:40 +02:00
name : Update
nameWithType : LifeGoal.Instance.Update
fullName : TinyLife.Goals.LifeGoal.Instance.Update
- uid : TinyLife.Goals.LifeGoal.Instance.Advance*
commentId : Overload:TinyLife.Goals.LifeGoal.Instance.Advance
2024-01-07 16:53:47 +01:00
href : TinyLife.Goals.LifeGoal.Instance.html#TinyLife_Goals_LifeGoal_Instance_Advance
2021-10-14 20:30:40 +02:00
name : Advance
nameWithType : LifeGoal.Instance.Advance
fullName : TinyLife.Goals.LifeGoal.Instance.Advance
- uid : TinyLife.Goals.LifeGoal.Instance.Validate*
commentId : Overload:TinyLife.Goals.LifeGoal.Instance.Validate
2024-01-07 16:53:47 +01:00
href : TinyLife.Goals.LifeGoal.Instance.html#TinyLife_Goals_LifeGoal_Instance_Validate_TinyLife_Objects_Person_
2021-10-14 20:30:40 +02:00
name : Validate
nameWithType : LifeGoal.Instance.Validate
fullName : TinyLife.Goals.LifeGoal.Instance.Validate