2021-08-04 06:51:12 +02:00
### YamlMime:ManagedReference
items :
- uid : TinyLife.Objects.WornClothes
commentId : T:TinyLife.Objects.WornClothes
id : WornClothes
parent : TinyLife.Objects
children :
- TinyLife.Objects.WornClothes.#ctor(TinyLife.Objects.Clothes,System.Int32[])
- TinyLife.Objects.WornClothes.Colors
2022-12-20 13:25:03 +01:00
- TinyLife.Objects.WornClothes.CustomPrice
2021-08-04 06:51:12 +02:00
- TinyLife.Objects.WornClothes.FromStorage
2022-12-20 13:25:03 +01:00
- TinyLife.Objects.WornClothes.GetPrice
2024-10-17 17:28:12 +02:00
- TinyLife.Objects.WornClothes.Migrations
2021-08-04 06:51:12 +02:00
- TinyLife.Objects.WornClothes.Type
2024-10-17 17:28:12 +02:00
- TinyLife.Objects.WornClothes.Validate(TinyLife.Utilities.AppliedMigrations)
2021-08-04 06:51:12 +02:00
langs :
- csharp
- vb
name : WornClothes
nameWithType : WornClothes
fullName : TinyLife.Objects.WornClothes
type : Class
assemblies :
- Tiny Life
namespace : TinyLife.Objects
2024-01-07 16:53:47 +01:00
summary : WornClothes is a wrapper around <xref href="TinyLife.Objects.Clothes" data-throw-if-not-resolved="false"></xref> that additionally stores the colors and whether or not the clothes are from the <xref href="TinyLife.World.Household.ClothesStorage" data-throw-if-not-resolved="false"></xref> or not
2021-08-04 06:51:12 +02:00
example : [ ]
syntax :
content : >-
[ DataContract]
2023-05-26 15:16:22 +02:00
public class WornClothes
2021-08-04 06:51:12 +02:00
content.vb : >-
<DataContract>
2023-05-26 15:16:22 +02:00
Public Class WornClothes
2021-08-04 06:51:12 +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.Objects.WornClothes.TinyLife.Utilities.Extensions.JsonCopy``1
attributes :
- type : System.Runtime.Serialization.DataContractAttribute
ctor : System.Runtime.Serialization.DataContractAttribute.#ctor
arguments : [ ]
2024-10-17 17:28:12 +02:00
- uid : TinyLife.Objects.WornClothes.Migrations
commentId : F:TinyLife.Objects.WornClothes.Migrations
id : Migrations
parent : TinyLife.Objects.WornClothes
langs :
- csharp
- vb
name : Migrations
nameWithType : WornClothes.Migrations
fullName : TinyLife.Objects.WornClothes.Migrations
type : Field
assemblies :
- Tiny Life
namespace : TinyLife.Objects
summary : >-
The set of migrations that should be applied to all <xref href="TinyLife.Objects.WornClothes" data-throw-if-not-resolved="false"></xref> objects when loaded from disk.
To register migrations that should only be applied to a specific <xref href="TinyLife.Objects.Clothes" data-throw-if-not-resolved="false"></xref> type, use <xref href="TinyLife.Objects.Clothes.Migrations" data-throw-if-not-resolved="false"></xref> instead.
example : [ ]
syntax :
content : public static readonly List<Migration<WornClothes>> Migrations
return :
type : System.Collections.Generic.List{TinyLife.Utilities.Migration{TinyLife.Objects.WornClothes}}
content.vb : Public Shared ReadOnly Migrations As List(Of Migration(Of WornClothes))
2021-08-04 06:51:12 +02:00
- uid : TinyLife.Objects.WornClothes.Type
commentId : F:TinyLife.Objects.WornClothes.Type
id : Type
parent : TinyLife.Objects.WornClothes
langs :
- csharp
- vb
name : Type
nameWithType : WornClothes.Type
fullName : TinyLife.Objects.WornClothes.Type
type : Field
assemblies :
- Tiny Life
namespace : TinyLife.Objects
2024-01-07 16:53:47 +01:00
summary : The <xref href="TinyLife.Objects.Clothes" data-throw-if-not-resolved="false"></xref> type that these worn clothes reference
2021-08-04 06:51:12 +02:00
example : [ ]
syntax :
content : >-
[ DataMember]
public readonly Clothes Type
return :
type : TinyLife.Objects.Clothes
content.vb : >-
<DataMember>
Public ReadOnly Type As Clothes
attributes :
- type : System.Runtime.Serialization.DataMemberAttribute
ctor : System.Runtime.Serialization.DataMemberAttribute.#ctor
arguments : [ ]
- uid : TinyLife.Objects.WornClothes.Colors
commentId : F:TinyLife.Objects.WornClothes.Colors
id : Colors
parent : TinyLife.Objects.WornClothes
langs :
- csharp
- vb
name : Colors
nameWithType : WornClothes.Colors
fullName : TinyLife.Objects.WornClothes.Colors
type : Field
assemblies :
- Tiny Life
namespace : TinyLife.Objects
2024-01-07 16:53:47 +01:00
summary : >-
The colors of this <xref href="TinyLife.Objects.Clothes" data-throw-if-not-resolved="false"></xref> instance.
Each index references the color of the underlying <xref href="TinyLife.Objects.WornClothes.Type" data-throw-if-not-resolved="false"></xref>'s <xref href="TinyLife.Objects.Clothes.Colors" data-throw-if-not-resolved="false"></xref>.
2024-04-14 17:55:54 +02:00
The actual color can be retrieved easily using <xref href="TinyLife.Utilities.ColorSettings.Get(System.Int32%5b%5d%2cSystem.Int32)" data-throw-if-not-resolved="false"></xref>.
2021-08-04 06:51:12 +02:00
example : [ ]
syntax :
content : >-
[ DataMember]
public int[] Colors
return :
type : System.Int32[]
content.vb : >-
<DataMember>
Public Colors As Integer()
attributes :
- type : System.Runtime.Serialization.DataMemberAttribute
ctor : System.Runtime.Serialization.DataMemberAttribute.#ctor
arguments : [ ]
- uid : TinyLife.Objects.WornClothes.FromStorage
commentId : F:TinyLife.Objects.WornClothes.FromStorage
id : FromStorage
parent : TinyLife.Objects.WornClothes
langs :
- csharp
- vb
name : FromStorage
nameWithType : WornClothes.FromStorage
fullName : TinyLife.Objects.WornClothes.FromStorage
type : Field
assemblies :
- Tiny Life
namespace : TinyLife.Objects
2024-01-07 16:53:47 +01:00
summary : This value is true if this clothes item is from the <xref href="TinyLife.World.Household.ClothesStorage" data-throw-if-not-resolved="false"></xref>
2021-08-04 06:51:12 +02:00
example : [ ]
syntax :
content : >-
[ DataMember]
public bool FromStorage
return :
type : System.Boolean
content.vb : >-
<DataMember>
Public FromStorage As Boolean
attributes :
- type : System.Runtime.Serialization.DataMemberAttribute
ctor : System.Runtime.Serialization.DataMemberAttribute.#ctor
arguments : [ ]
2022-12-20 13:25:03 +01:00
- uid : TinyLife.Objects.WornClothes.CustomPrice
commentId : F:TinyLife.Objects.WornClothes.CustomPrice
id : CustomPrice
parent : TinyLife.Objects.WornClothes
langs :
- csharp
- vb
name : CustomPrice
nameWithType : WornClothes.CustomPrice
fullName : TinyLife.Objects.WornClothes.CustomPrice
type : Field
assemblies :
- Tiny Life
namespace : TinyLife.Objects
2024-01-07 16:53:47 +01:00
summary : >-
An optional custom price that this clothing item has over its regular price (<xref href="TinyLife.Objects.WornClothes.GetPrice" data-throw-if-not-resolved="false"></xref>).
If this field has a value, the regularly calculated price from <xref href="TinyLife.Objects.WornClothes.GetPrice" data-throw-if-not-resolved="false"></xref> will be ignored and this value will be used as the object's price instead.
2022-12-20 13:25:03 +01:00
example : [ ]
syntax :
content : >-
[ DataMember(EmitDefaultValue = false)]
public float? CustomPrice
return :
type : System.Nullable{System.Single}
content.vb : >-
<DataMember(EmitDefaultValue:=False)>
Public CustomPrice As Single?
attributes :
- type : System.Runtime.Serialization.DataMemberAttribute
ctor : System.Runtime.Serialization.DataMemberAttribute.#ctor
arguments : [ ]
namedArguments :
- name : EmitDefaultValue
type : System.Boolean
value : false
2021-08-04 06:51:12 +02:00
- uid : TinyLife.Objects.WornClothes.#ctor(TinyLife.Objects.Clothes,System.Int32[])
commentId : M:TinyLife.Objects.WornClothes.#ctor(TinyLife.Objects.Clothes,System.Int32[])
id : '#ctor(TinyLife.Objects.Clothes,System.Int32[])'
parent : TinyLife.Objects.WornClothes
langs :
- csharp
- vb
2023-03-30 18:07:55 +02:00
name : WornClothes(Clothes, int[])
nameWithType : WornClothes.WornClothes(Clothes, int[])
fullName : TinyLife.Objects.WornClothes.WornClothes(TinyLife.Objects.Clothes, int[])
2021-08-04 06:51:12 +02:00
type : Constructor
assemblies :
- Tiny Life
namespace : TinyLife.Objects
2024-01-07 16:53:47 +01:00
summary : Creates a new worn <xref href="TinyLife.Objects.Clothes" data-throw-if-not-resolved="false"></xref> instance with the given settings
2021-08-04 06:51:12 +02:00
example : [ ]
syntax :
content : public WornClothes(Clothes type, int[] colors)
parameters :
- id : type
type : TinyLife.Objects.Clothes
description : The <xref href="TinyLife.Objects.Clothes" data-throw-if-not-resolved="false"></xref> type
- id : colors
type : System.Int32[]
description : The indices of the colors that this instance should have
content.vb : Public Sub New(type As Clothes, colors As Integer())
overload : TinyLife.Objects.WornClothes.#ctor*
2023-03-30 18:07:55 +02:00
nameWithType.vb : WornClothes.New(Clothes, Integer())
fullName.vb : TinyLife.Objects.WornClothes.New(TinyLife.Objects.Clothes, Integer())
name.vb : New(Clothes, Integer())
2024-10-17 17:28:12 +02:00
- uid : TinyLife.Objects.WornClothes.Validate(TinyLife.Utilities.AppliedMigrations)
commentId : M:TinyLife.Objects.WornClothes.Validate(TinyLife.Utilities.AppliedMigrations)
id : Validate(TinyLife.Utilities.AppliedMigrations)
2021-08-04 06:51:12 +02:00
parent : TinyLife.Objects.WornClothes
langs :
- csharp
- vb
2024-10-17 17:28:12 +02:00
name : Validate(AppliedMigrations)
nameWithType : WornClothes.Validate(AppliedMigrations)
fullName : TinyLife.Objects.WornClothes.Validate(TinyLife.Utilities.AppliedMigrations)
2021-08-04 06:51:12 +02:00
type : Method
assemblies :
- Tiny Life
namespace : TinyLife.Objects
2024-01-07 16:53:47 +01:00
summary : This method is called when this object is loaded from disk.
2021-08-04 06:51:12 +02:00
example : [ ]
syntax :
2024-10-17 17:28:12 +02:00
content : public bool Validate(AppliedMigrations appliedMigrations)
parameters :
- id : appliedMigrations
type : TinyLife.Utilities.AppliedMigrations
2021-08-04 06:51:12 +02:00
return :
type : System.Boolean
description : false if the object is not valid, true otherwise
2024-10-17 17:28:12 +02:00
content.vb : Public Function Validate(appliedMigrations As AppliedMigrations) As Boolean
2021-08-04 06:51:12 +02:00
overload : TinyLife.Objects.WornClothes.Validate*
2022-12-20 13:25:03 +01:00
- uid : TinyLife.Objects.WornClothes.GetPrice
commentId : M:TinyLife.Objects.WornClothes.GetPrice
id : GetPrice
parent : TinyLife.Objects.WornClothes
langs :
- csharp
- vb
name : GetPrice()
nameWithType : WornClothes.GetPrice()
fullName : TinyLife.Objects.WornClothes.GetPrice()
type : Method
assemblies :
- Tiny Life
namespace : TinyLife.Objects
2024-01-07 16:53:47 +01:00
summary : Returns this clothing item's price, which is either the <xref href="TinyLife.Objects.WornClothes.CustomPrice" data-throw-if-not-resolved="false"></xref> or the underlying <xref href="TinyLife.Objects.Clothes" data-throw-if-not-resolved="false"></xref> type's <xref href="TinyLife.Objects.Clothes.Price" data-throw-if-not-resolved="false"></xref>.
2022-12-20 13:25:03 +01:00
example : [ ]
syntax :
content : public float GetPrice()
return :
type : System.Single
2024-01-07 16:53:47 +01:00
description : This clothing item's price.
2023-03-30 18:07:55 +02:00
content.vb : Public Function GetPrice() As Single
2022-12-20 13:25:03 +01:00
overload : TinyLife.Objects.WornClothes.GetPrice*
2021-08-04 06:51:12 +02:00
references :
- uid : TinyLife.Objects.Clothes
commentId : T:TinyLife.Objects.Clothes
parent : TinyLife.Objects
2024-01-07 16:53:47 +01:00
href : TinyLife.Objects.Clothes.html
2021-08-04 06:51:12 +02:00
name : Clothes
nameWithType : Clothes
fullName : TinyLife.Objects.Clothes
- uid : TinyLife.World.Household.ClothesStorage
commentId : F:TinyLife.World.Household.ClothesStorage
2024-01-07 16:53:47 +01:00
href : TinyLife.World.Household.html#TinyLife_World_Household_ClothesStorage
2023-03-30 18:07:55 +02:00
name : ClothesStorage
nameWithType : Household.ClothesStorage
fullName : TinyLife.World.Household.ClothesStorage
2021-08-04 06:51:12 +02:00
- uid : TinyLife.Objects
commentId : N : TinyLife.Objects
2024-01-07 16:53:47 +01:00
href : TinyLife.html
2021-08-04 06:51:12 +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-08-04 06:51:12 +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-08-04 06:51:12 +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-08-04 06:51:12 +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-08-04 06:51:12 +02:00
- name : (
- uid : System.Object
2023-03-30 18:07:55 +02:00
name : object
2021-08-04 06:51:12 +02:00
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object
2021-08-04 06:51:12 +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-08-04 06:51:12 +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-08-04 06:51:12 +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-08-04 06:51:12 +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-08-04 06:51:12 +02:00
- name : (
- uid : System.Object
2023-03-30 18:07:55 +02:00
name : object
2021-08-04 06:51:12 +02:00
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object
- name : ','
- name : " "
2021-08-04 06:51:12 +02:00
- uid : System.Object
2023-03-30 18:07:55 +02:00
name : object
2021-08-04 06:51:12 +02:00
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object
2021-08-04 06:51:12 +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-08-04 06:51:12 +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-08-04 06:51:12 +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-08-04 06:51:12 +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-08-04 06:51:12 +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-08-04 06:51:12 +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-08-04 06:51:12 +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-08-04 06:51:12 +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-08-04 06:51:12 +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-08-04 06:51:12 +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-08-04 06:51:12 +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-08-04 06:51:12 +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-08-04 06:51:12 +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-08-04 06:51:12 +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-08-04 06:51:12 +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-08-04 06:51:12 +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-08-04 06:51:12 +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-08-04 06:51:12 +02:00
- name : (
- uid : System.Object
2023-03-30 18:07:55 +02:00
name : object
2021-08-04 06:51:12 +02:00
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object
- name : ','
- name : " "
2021-08-04 06:51:12 +02:00
- uid : System.Object
2023-03-30 18:07:55 +02:00
name : object
2021-08-04 06:51:12 +02:00
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.object
2021-08-04 06:51:12 +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-08-04 06:51:12 +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-08-04 06:51:12 +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-08-04 06:51:12 +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-08-04 06:51:12 +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-08-04 06:51:12 +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-08-04 06:51:12 +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-08-04 06:51:12 +02:00
- name : (
- name : )
- uid : TinyLife.Objects.WornClothes.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<WornClothes>(WornClothes)
nameWithType : Extensions.JsonCopy<WornClothes>(WornClothes)
fullName : TinyLife.Utilities.Extensions.JsonCopy<TinyLife.Objects.WornClothes>(TinyLife.Objects.WornClothes)
nameWithType.vb : Extensions.JsonCopy(Of WornClothes)(WornClothes)
fullName.vb : TinyLife.Utilities.Extensions.JsonCopy(Of TinyLife.Objects.WornClothes)(TinyLife.Objects.WornClothes)
name.vb : JsonCopy(Of WornClothes)(WornClothes)
2021-08-04 06:51:12 +02:00
spec.csharp :
2023-03-30 18:07:55 +02:00
- uid : TinyLife.Utilities.Extensions.JsonCopy``1(TinyLife.Objects.WornClothes)
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.Objects.WornClothes
name : WornClothes
2024-01-07 16:53:47 +01:00
href : TinyLife.Objects.WornClothes.html
2023-03-30 18:07:55 +02:00
- name : '>'
2021-08-04 06:51:12 +02:00
- name : (
2023-03-30 18:07:55 +02:00
- uid : TinyLife.Objects.WornClothes
name : WornClothes
2024-01-07 16:53:47 +01:00
href : TinyLife.Objects.WornClothes.html
2021-08-04 06:51:12 +02:00
- name : )
spec.vb :
2023-03-30 18:07:55 +02:00
- uid : TinyLife.Utilities.Extensions.JsonCopy``1(TinyLife.Objects.WornClothes)
name : JsonCopy
2024-01-07 16:53:47 +01:00
href : TinyLife.Utilities.Extensions.html#TinyLife_Utilities_Extensions_JsonCopy__1___0_
2021-08-04 06:51:12 +02:00
- name : (
2023-03-30 18:07:55 +02:00
- name : Of
- name : " "
- uid : TinyLife.Objects.WornClothes
name : WornClothes
2024-01-07 16:53:47 +01:00
href : TinyLife.Objects.WornClothes.html
2023-03-30 18:07:55 +02:00
- name : )
- name : (
- uid : TinyLife.Objects.WornClothes
name : WornClothes
2024-01-07 16:53:47 +01:00
href : TinyLife.Objects.WornClothes.html
2021-08-04 06:51:12 +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-08-04 06:51:12 +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-08-04 06:51:12 +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-08-04 06:51:12 +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-08-04 06:51:12 +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-08-04 06:51:12 +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-08-04 06:51:12 +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
2024-10-17 17:28:12 +02:00
- uid : TinyLife.Objects.WornClothes
commentId : T:TinyLife.Objects.WornClothes
parent : TinyLife.Objects
href : TinyLife.Objects.WornClothes.html
name : WornClothes
nameWithType : WornClothes
fullName : TinyLife.Objects.WornClothes
- uid : TinyLife.Objects.Clothes.Migrations
commentId : P:TinyLife.Objects.Clothes.Migrations
href : TinyLife.Objects.Clothes.html#TinyLife_Objects_Clothes_Migrations
name : Migrations
nameWithType : Clothes.Migrations
fullName : TinyLife.Objects.Clothes.Migrations
- uid : System.Collections.Generic.List{TinyLife.Utilities.Migration{TinyLife.Objects.WornClothes}}
commentId : T:System.Collections.Generic.List{TinyLife.Utilities.Migration{TinyLife.Objects.WornClothes}}
parent : System.Collections.Generic
definition : System.Collections.Generic.List`1
href : https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1
name : List<Migration<WornClothes>>
nameWithType : List<Migration<WornClothes>>
fullName : System.Collections.Generic.List<TinyLife.Utilities.Migration<TinyLife.Objects.WornClothes>>
nameWithType.vb : List(Of Migration(Of WornClothes))
fullName.vb : System.Collections.Generic.List(Of TinyLife.Utilities.Migration(Of TinyLife.Objects.WornClothes))
name.vb : List(Of Migration(Of WornClothes))
spec.csharp :
- uid : System.Collections.Generic.List`1
name : List
isExternal : true
href : https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1
- name : <
- uid : TinyLife.Utilities.Migration`1
name : Migration
href : TinyLife.Utilities.Migration-1.html
- name : <
- uid : TinyLife.Objects.WornClothes
name : WornClothes
href : TinyLife.Objects.WornClothes.html
- name : '>'
- name : '>'
spec.vb :
- 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 : TinyLife.Utilities.Migration`1
name : Migration
href : TinyLife.Utilities.Migration-1.html
- name : (
- name : Of
- name : " "
- uid : TinyLife.Objects.WornClothes
name : WornClothes
href : TinyLife.Objects.WornClothes.html
- name : )
- name : )
- uid : System.Collections.Generic.List`1
commentId : T:System.Collections.Generic.List`1
isExternal : true
href : https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1
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
href : https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1
- name : <
- name : T
- name : '>'
spec.vb :
- 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 : " "
- name : T
- 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
2021-08-04 06:51:12 +02:00
- uid : TinyLife.Objects.WornClothes.Type
commentId : F:TinyLife.Objects.WornClothes.Type
2024-01-07 16:53:47 +01:00
href : TinyLife.Objects.WornClothes.html#TinyLife_Objects_WornClothes_Type
2023-03-30 18:07:55 +02:00
name : Type
nameWithType : WornClothes.Type
fullName : TinyLife.Objects.WornClothes.Type
2021-08-04 06:51:12 +02:00
- uid : TinyLife.Objects.Clothes.Colors
commentId : F:TinyLife.Objects.Clothes.Colors
2024-01-07 16:53:47 +01:00
href : TinyLife.Objects.Clothes.html#TinyLife_Objects_Clothes_Colors
2023-03-30 18:07:55 +02:00
name : Colors
nameWithType : Clothes.Colors
fullName : TinyLife.Objects.Clothes.Colors
2024-04-14 17:55:54 +02:00
- uid : TinyLife.Utilities.ColorSettings.Get(System.Int32[],System.Int32)
commentId : M:TinyLife.Utilities.ColorSettings.Get(System.Int32[],System.Int32)
isExternal : true
href : TinyLife.Utilities.ColorSettings.html#TinyLife_Utilities_ColorSettings_Get_System_Int32___System_Int32_
name : Get(int[], int)
nameWithType : ColorSettings.Get(int[], int)
fullName : TinyLife.Utilities.ColorSettings.Get(int[], int)
nameWithType.vb : ColorSettings.Get(Integer(), Integer)
fullName.vb : TinyLife.Utilities.ColorSettings.Get(Integer(), Integer)
name.vb : Get(Integer(), Integer)
spec.csharp :
- uid : TinyLife.Utilities.ColorSettings.Get(System.Int32[],System.Int32)
name : Get
href : TinyLife.Utilities.ColorSettings.html#TinyLife_Utilities_ColorSettings_Get_System_Int32___System_Int32_
- name : (
- uid : System.Int32
name : int
isExternal : true
href : https://learn.microsoft.com/dotnet/api/system.int32
- name : '['
- name : ']'
- name : ','
- name : " "
- uid : System.Int32
name : int
isExternal : true
href : https://learn.microsoft.com/dotnet/api/system.int32
- name : )
spec.vb :
- uid : TinyLife.Utilities.ColorSettings.Get(System.Int32[],System.Int32)
name : Get
href : TinyLife.Utilities.ColorSettings.html#TinyLife_Utilities_ColorSettings_Get_System_Int32___System_Int32_
- name : (
- uid : System.Int32
name : Integer
isExternal : true
href : https://learn.microsoft.com/dotnet/api/system.int32
- name : (
- name : )
- name : ','
- name : " "
- uid : System.Int32
name : Integer
isExternal : true
href : https://learn.microsoft.com/dotnet/api/system.int32
- name : )
2021-08-04 06:51:12 +02:00
- uid : System.Int32[]
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-08-04 06:51:12 +02:00
spec.csharp :
- uid : System.Int32
2023-03-30 18:07:55 +02:00
name : int
2021-08-04 06:51:12 +02:00
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.int32
- name : '['
- name : ']'
2021-08-04 06:51:12 +02:00
spec.vb :
- uid : System.Int32
2023-03-30 18:07:55 +02:00
name : Integer
2021-08-04 06:51:12 +02:00
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.int32
- name : (
- name : )
2021-08-04 06:51:12 +02: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
2022-12-20 13:25:03 +01:00
- uid : TinyLife.Objects.WornClothes.GetPrice
commentId : M:TinyLife.Objects.WornClothes.GetPrice
2024-01-07 16:53:47 +01:00
href : TinyLife.Objects.WornClothes.html#TinyLife_Objects_WornClothes_GetPrice
2023-03-30 18:07:55 +02:00
name : GetPrice()
nameWithType : WornClothes.GetPrice()
fullName : TinyLife.Objects.WornClothes.GetPrice()
spec.csharp :
- uid : TinyLife.Objects.WornClothes.GetPrice
name : GetPrice
2024-01-07 16:53:47 +01:00
href : TinyLife.Objects.WornClothes.html#TinyLife_Objects_WornClothes_GetPrice
2023-03-30 18:07:55 +02:00
- name : (
- name : )
spec.vb :
- uid : TinyLife.Objects.WornClothes.GetPrice
name : GetPrice
2024-01-07 16:53:47 +01:00
href : TinyLife.Objects.WornClothes.html#TinyLife_Objects_WornClothes_GetPrice
2023-03-30 18:07:55 +02:00
- name : (
- name : )
2022-12-20 13:25:03 +01:00
- uid : System.Nullable{System.Single}
commentId : T:System.Nullable{System.Single}
parent : System
definition : System.Nullable`1
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.single
name : float?
nameWithType : float?
fullName : float?
nameWithType.vb : Single?
fullName.vb : Single?
name.vb : Single?
2022-12-20 13:25:03 +01:00
spec.csharp :
- uid : System.Single
2023-03-30 18:07:55 +02:00
name : float
2022-12-20 13:25:03 +01:00
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.single
- name : '?'
2022-12-20 13:25:03 +01:00
spec.vb :
- uid : System.Single
name : Single
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.single
- name : '?'
2022-12-20 13:25:03 +01:00
- uid : System.Nullable`1
commentId : T:System.Nullable`1
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.nullable-1
2022-12-20 13:25:03 +01:00
name : Nullable<T>
nameWithType : Nullable<T>
fullName : System.Nullable<T>
nameWithType.vb : Nullable(Of T)
fullName.vb : System.Nullable(Of T)
name.vb : Nullable(Of T)
spec.csharp :
- uid : System.Nullable`1
name : Nullable
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.nullable-1
2022-12-20 13:25:03 +01:00
- name : <
- name : T
- name : '>'
spec.vb :
- uid : System.Nullable`1
name : Nullable
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.nullable-1
- name : (
- name : Of
- name : " "
2022-12-20 13:25:03 +01:00
- name : T
- name : )
2021-08-04 06:51:12 +02:00
- uid : TinyLife.Objects.WornClothes.#ctor*
commentId : Overload:TinyLife.Objects.WornClothes.#ctor
2024-01-07 16:53:47 +01:00
href : TinyLife.Objects.WornClothes.html#TinyLife_Objects_WornClothes__ctor_TinyLife_Objects_Clothes_System_Int32___
2021-08-04 06:51:12 +02:00
name : WornClothes
nameWithType : WornClothes.WornClothes
fullName : TinyLife.Objects.WornClothes.WornClothes
2023-03-30 18:07:55 +02:00
nameWithType.vb : WornClothes.New
fullName.vb : TinyLife.Objects.WornClothes.New
name.vb : New
2021-08-04 06:51:12 +02:00
- uid : TinyLife.Objects.WornClothes.Validate*
commentId : Overload:TinyLife.Objects.WornClothes.Validate
2024-10-17 17:28:12 +02:00
href : TinyLife.Objects.WornClothes.html#TinyLife_Objects_WornClothes_Validate_TinyLife_Utilities_AppliedMigrations_
2021-08-04 06:51:12 +02:00
name : Validate
nameWithType : WornClothes.Validate
fullName : TinyLife.Objects.WornClothes.Validate
2024-10-17 17:28:12 +02:00
- uid : TinyLife.Utilities.AppliedMigrations
commentId : T:TinyLife.Utilities.AppliedMigrations
parent : TinyLife.Utilities
href : TinyLife.Utilities.AppliedMigrations.html
name : AppliedMigrations
nameWithType : AppliedMigrations
fullName : TinyLife.Utilities.AppliedMigrations
2023-06-25 15:41:49 +02:00
- uid : TinyLife.Objects.WornClothes.CustomPrice
commentId : F:TinyLife.Objects.WornClothes.CustomPrice
2024-01-07 16:53:47 +01:00
href : TinyLife.Objects.WornClothes.html#TinyLife_Objects_WornClothes_CustomPrice
2023-06-25 15:41:49 +02:00
name : CustomPrice
nameWithType : WornClothes.CustomPrice
fullName : TinyLife.Objects.WornClothes.CustomPrice
- uid : TinyLife.Objects.Clothes.Price
commentId : F:TinyLife.Objects.Clothes.Price
2024-01-07 16:53:47 +01:00
href : TinyLife.Objects.Clothes.html#TinyLife_Objects_Clothes_Price
2023-06-25 15:41:49 +02:00
name : Price
nameWithType : Clothes.Price
fullName : TinyLife.Objects.Clothes.Price
2022-12-20 13:25:03 +01:00
- uid : TinyLife.Objects.WornClothes.GetPrice*
commentId : Overload:TinyLife.Objects.WornClothes.GetPrice
2024-01-07 16:53:47 +01:00
href : TinyLife.Objects.WornClothes.html#TinyLife_Objects_WornClothes_GetPrice
2022-12-20 13:25:03 +01:00
name : GetPrice
nameWithType : WornClothes.GetPrice
fullName : TinyLife.Objects.WornClothes.GetPrice
- uid : System.Single
commentId : T:System.Single
parent : System
isExternal : true
2023-03-30 18:07:55 +02:00
href : https://learn.microsoft.com/dotnet/api/system.single
name : float
nameWithType : float
fullName : float
nameWithType.vb : Single
fullName.vb : Single
name.vb : Single