# LLamaState Namespace: LLama ```csharp public class LLamaState : System.IEquatable`1[[LLama.LLamaState, LLamaSharp, Version=0.2.0.0, Culture=neutral, PublicKeyToken=null]] ``` Inheritance [Object](https://docs.microsoft.com/en-us/dotnet/api/system.object) → [LLamaState](./llama.llamastate.md)
Implements [IEquatable<LLamaState>](https://docs.microsoft.com/en-us/dotnet/api/system.iequatable-1) ## Properties ### **EvalTokens** ```csharp public Queue EvalTokens { get; set; } ``` #### Property Value [Queue<Int32>](https://docs.microsoft.com/en-us/dotnet/api/system.collections.generic.queue-1)
### **EvalLogits** ```csharp public Queue EvalLogits { get; set; } ``` #### Property Value [Queue<Single[]>](https://docs.microsoft.com/en-us/dotnet/api/system.collections.generic.queue-1)
### **State** ```csharp public Byte[] State { get; set; } ``` #### Property Value [Byte[]](https://docs.microsoft.com/en-us/dotnet/api/system.byte)
### **Size** ```csharp public int Size { get; set; } ``` #### Property Value [Int32](https://docs.microsoft.com/en-us/dotnet/api/system.int32)
## Constructors ### **LLamaState(Queue<Int32>, Queue<Single[]>, Byte[], Int32)** ```csharp public LLamaState(Queue EvalTokens, Queue EvalLogits, Byte[] State, int Size) ``` #### Parameters `EvalTokens` [Queue<Int32>](https://docs.microsoft.com/en-us/dotnet/api/system.collections.generic.queue-1)
`EvalLogits` [Queue<Single[]>](https://docs.microsoft.com/en-us/dotnet/api/system.collections.generic.queue-1)
`State` [Byte[]](https://docs.microsoft.com/en-us/dotnet/api/system.byte)
`Size` [Int32](https://docs.microsoft.com/en-us/dotnet/api/system.int32)
## Methods ### **ToString()** ```csharp public string ToString() ``` #### Returns [String](https://docs.microsoft.com/en-us/dotnet/api/system.string)
### **PrintMembers(StringBuilder)** ```csharp protected bool PrintMembers(StringBuilder builder) ``` #### Parameters `builder` [StringBuilder](https://docs.microsoft.com/en-us/dotnet/api/system.text.stringbuilder)
#### Returns [Boolean](https://docs.microsoft.com/en-us/dotnet/api/system.boolean)
### **GetHashCode()** ```csharp public int GetHashCode() ``` #### Returns [Int32](https://docs.microsoft.com/en-us/dotnet/api/system.int32)
### **Equals(Object)** ```csharp public bool Equals(object obj) ``` #### Parameters `obj` [Object](https://docs.microsoft.com/en-us/dotnet/api/system.object)
#### Returns [Boolean](https://docs.microsoft.com/en-us/dotnet/api/system.boolean)
### **Equals(LLamaState)** ```csharp public bool Equals(LLamaState other) ``` #### Parameters `other` [LLamaState](./llama.llamastate.md)
#### Returns [Boolean](https://docs.microsoft.com/en-us/dotnet/api/system.boolean)
### **<Clone>$()** ```csharp public LLamaState $() ``` #### Returns [LLamaState](./llama.llamastate.md)
### **Deconstruct(Queue`1&, Queue`1&, Byte[]&, Int32&)** ```csharp public void Deconstruct(Queue`1& EvalTokens, Queue`1& EvalLogits, Byte[]& State, Int32& Size) ``` #### Parameters `EvalTokens` [Queue`1&](https://docs.microsoft.com/en-us/dotnet/api/system.collections.generic.queue-1&)
`EvalLogits` [Queue`1&](https://docs.microsoft.com/en-us/dotnet/api/system.collections.generic.queue-1&)
`State` [Byte[]&](https://docs.microsoft.com/en-us/dotnet/api/system.byte&)
`Size` [Int32&](https://docs.microsoft.com/en-us/dotnet/api/system.int32&)