Survivalcraft API 1.8.2.3
v1.8.2.3
Survivalcraft 2.4
载入中...
搜索中...
未找到
SortedDictionarySerializer.cs
浏览该文件的文档.
1
namespace
Engine.Serialization
{
2
public
class
SortedDictionarySerializer<K, V> : ISerializer<SortedDictionary<K, V>> {
3
public
void
Serialize
(
InputArchive
archive, ref SortedDictionary<K, V> value) {
4
value = [];
5
archive.SerializeDictionary(
null
, value);
6
}
7
8
public
void
Serialize
(
OutputArchive
archive, SortedDictionary<K, V> value) {
9
archive.SerializeDictionary(
null
, value);
10
}
11
}
12
}
Engine.Serialization.InputArchive
定义
InputArchive.cs:2
Engine.Serialization.OutputArchive
定义
OutputArchive.cs:2
Engine.Serialization.SortedDictionarySerializer-2-g.Serialize
void Serialize(InputArchive archive, ref SortedDictionary< K, V > value)
定义
SortedDictionarySerializer.cs:3
Engine.Serialization.SortedDictionarySerializer-2-g.Serialize
void Serialize(OutputArchive archive, SortedDictionary< K, V > value)
定义
SortedDictionarySerializer.cs:8
Engine.Serialization
定义
Archive.cs:4
SurvivalcraftApi 1.8.2.3
Engine
Engine.Serialization
SortedDictionarySerializer.cs
制作者
1.16.1