> ## Documentation Index
> Fetch the complete documentation index at: https://docs.superoffice.com/llms.txt
> Use this file to discover all available pages before exploring further.

# SuperOffice.WebApi.Data.IntStringDictionary

# \<a id="SuperOffice\_WebApi\_Data\_IntStringDictionary">\</a> Class IntStringDictionary

Namespace: [SuperOffice.WebApi.Data](SuperOffice.WebApi.Data.md)\
Assembly: SuperOffice.WebApi.dll

Serializable dictionary.
This class works as a regular dictionary. The only restriction is that the string is a value type

```csharp theme={null}
public class IntStringDictionary : Dictionary<int, string>, IDictionary<int, string>, ICollection<KeyValuePair<int, string>>, IDictionary, ICollection, IReadOnlyDictionary<int, string>, IReadOnlyCollection<KeyValuePair<int, string>>, IEnumerable<KeyValuePair<int, string>>, IEnumerable, ISerializable, IDeserializationCallback
```

#### Inheritance

[object](https://learn.microsoft.com/dotnet/api/system.object) ←
[Dictionary\<int, string\&gt;](https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary-2) ←
[IntStringDictionary](SuperOffice.WebApi.Data.IntStringDictionary.md)

#### Implements

[IDictionary\<int, string\&gt;](https://learn.microsoft.com/dotnet/api/system.collections.generic.idictionary-2),
[ICollection\<KeyValuePair\<int, string\&gt;\&gt;](https://learn.microsoft.com/dotnet/api/system.collections.generic.icollection-1),
[IDictionary](https://learn.microsoft.com/dotnet/api/system.collections.idictionary),
[ICollection](https://learn.microsoft.com/dotnet/api/system.collections.icollection),
[IReadOnlyDictionary\<int, string\&gt;](https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlydictionary-2),
[IReadOnlyCollection\<KeyValuePair\<int, string\&gt;\&gt;](https://learn.microsoft.com/dotnet/api/system.collections.generic.ireadonlycollection-1),
[IEnumerable\<KeyValuePair\<int, string\&gt;\&gt;](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1),
[IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.ienumerable),
[ISerializable](https://learn.microsoft.com/dotnet/api/system.runtime.serialization.iserializable),
[IDeserializationCallback](https://learn.microsoft.com/dotnet/api/system.runtime.serialization.ideserializationcallback)

#### Inherited Members

[Dictionary\<int, string\&gt;.Add(int, string)](https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary-2.add),
[Dictionary\<int, string\&gt;.Clear()](https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary-2.clear),
[Dictionary\<int, string\&gt;.ContainsKey(int)](https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary-2.containskey),
[Dictionary\<int, string\&gt;.ContainsValue(string)](https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary-2.containsvalue),
[Dictionary\<int, string\&gt;.GetEnumerator()](https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary-2.getenumerator),
[Dictionary\<int, string\&gt;.GetObjectData(SerializationInfo, StreamingContext)](https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary-2.getobjectdata),
[Dictionary\<int, string\&gt;.OnDeserialization(object)](https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary-2.ondeserialization),
[Dictionary\<int, string\&gt;.Remove(int)](https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary-2.remove#system-collections-generic-dictionary-2-remove\(-0\)),
[Dictionary\<int, string\&gt;.Remove(int, out string)](https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary-2.remove#system-collections-generic-dictionary-2-remove\(-0-1@\)),
[Dictionary\<int, string\&gt;.TryGetValue(int, out string)](https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary-2.trygetvalue),
[Dictionary\<int, string\&gt;.TryAdd(int, string)](https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary-2.tryadd),
[Dictionary\<int, string\&gt;.EnsureCapacity(int)](https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary-2.ensurecapacity),
[Dictionary\<int, string\&gt;.TrimExcess()](https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary-2.trimexcess#system-collections-generic-dictionary-2-trimexcess),
[Dictionary\<int, string\&gt;.TrimExcess(int)](https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary-2.trimexcess#system-collections-generic-dictionary-2-trimexcess\(system-int32\)),
[Dictionary\<int, string\&gt;.Comparer](https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary-2.comparer),
[Dictionary\<int, string\&gt;.Count](https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary-2.count),
[Dictionary\<int, string\&gt;.Keys](https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary-2.keys),
[Dictionary\<int, string\&gt;.Values](https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary-2.values),
[Dictionary\<int, string\&gt;.this\[int\]](https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary-2.item),
[object.ToString()](https://learn.microsoft.com/dotnet/api/system.object.tostring),
[object.Equals(object)](https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals\(system-object\)),
[object.Equals(object, object)](https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals\(system-object-system-object\)),
[object.ReferenceEquals(object, object)](https://learn.microsoft.com/dotnet/api/system.object.referenceequals),
[object.GetHashCode()](https://learn.microsoft.com/dotnet/api/system.object.gethashcode),
[object.GetType()](https://learn.microsoft.com/dotnet/api/system.object.gettype),
[object.MemberwiseClone()](https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone)

## Constructors

### \<a id="SuperOffice\_WebApi\_Data\_IntStringDictionary\_\_ctor">\</a> IntStringDictionary()

Default constructor

```csharp theme={null}
public IntStringDictionary()
```

## Methods

### \<a id="SuperOffice\_WebApi\_Data\_IntStringDictionary\_ToString\_System\_String\_">\</a> ToString(string)

```csharp theme={null}
public string ToString(string prefix)
```

#### Parameters

`prefix` [string](https://learn.microsoft.com/dotnet/api/system.string)

#### Returns

[string](https://learn.microsoft.com/dotnet/api/system.string)


## Related topics

- [SuperOffice.WebApi.Agents.IListAgent](/en/api/reference/webapi/SuperOffice.WebApi.Agents.IListAgent.md)
- [SuperOffice.WebApi.Agents.ListAgent](/en/api/reference/webapi/SuperOffice.WebApi.Agents.ListAgent.md)
- [SuperOffice.WebApi.Data.StringDictionary](/en/api/reference/webapi/SuperOffice.WebApi.Data.StringDictionary.md)
- [SuperOffice.WebApi.Data.StringBoolDictionary](/en/api/reference/webapi/SuperOffice.WebApi.Data.StringBoolDictionary.md)
- [SuperOffice.WebApi.Data.StringObjectDictionary](/en/api/reference/webapi/SuperOffice.WebApi.Data.StringObjectDictionary.md)
- [SuperOffice.WebApi.Data.ColumnDataDictionary](/en/api/reference/webapi/SuperOffice.WebApi.Data.ColumnDataDictionary.md)
