コード例 #1
0
ファイル: BinarySerializer.cs プロジェクト: daghdha/neo-sharp
 /// <summary>
 /// Register types (call me if you load a new plugin or module)
 /// </summary>
 /// <param name="asms">Assemblies</param>
 public static void RegisterTypes(params Assembly[] asms)
 {
     BinarySerializerCache.RegisterTypes(asms);
 }
コード例 #2
0
ファイル: BinarySerializer.cs プロジェクト: daghdha/neo-sharp
 /// <summary>
 /// Register types (call me if you load a new plugin or module)
 /// </summary>
 /// <param name="types">Types</param>
 public static void RegisterTypes(params Type[] types)
 {
     BinarySerializerCache.RegisterTypes(types);
 }
コード例 #3
0
ファイル: BinarySerializer.cs プロジェクト: daghdha/neo-sharp
 /// <summary>
 /// Constructor
 /// </summary>
 /// <param name="asms">Assemblies</param>
 public BinarySerializer(params Assembly[] asms)
 {
     BinarySerializerCache.RegisterTypes(asms);
 }