-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathUnicodeSerializer.cs
More file actions
23 lines (21 loc) · 902 Bytes
/
UnicodeSerializer.cs
File metadata and controls
23 lines (21 loc) · 902 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
// =================================================================================================================================
// Copyright (c) RapidField LLC. Licensed under the MIT License. See LICENSE.txt in the project root for license information.
// =================================================================================================================================
using System.Text;
namespace RapidField.SolidInstruments.Serialization
{
/// <summary>
/// Performs UTF-16 encoding and decoding in place of a serializer.
/// </summary>
public sealed class UnicodeSerializer : TextEncodingSerializer
{
/// <summary>
/// Initializes a new instance of the <see cref="UnicodeSerializer" /> class.
/// </summary>
public UnicodeSerializer()
: base(Encoding.Unicode)
{
return;
}
}
}