-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathSerializer.cs
More file actions
25 lines (24 loc) · 984 Bytes
/
Serializer.cs
File metadata and controls
25 lines (24 loc) · 984 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
// =================================================================================================================================
// Copyright (c) RapidField LLC. Licensed under the MIT License. See LICENSE.txt in the project root for license information.
// =================================================================================================================================
namespace RapidField.SolidInstruments.Serialization
{
/// <summary>
/// Performs serialization and deserialization for a given type.
/// </summary>
/// <typeparam name="T">
/// The type of the serializable object.
/// </typeparam>
public class Serializer<T> : DynamicSerializer<T>
where T : class
{
/// <summary>
/// Initializes a new instance of the <see cref="Serializer{T}" /> class.
/// </summary>
public Serializer()
: base(SerializationFormat.Binary)
{
return;
}
}
}