//
// StringSerializer.cs
//
// Copyright (c) František Boháček. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
using System;
using NosSmooth.PacketSerializer.Abstractions;
using Remora.Results;
namespace NosSmooth.PacketSerializer.Converters.Special;
///
public class StringSerializer : IStringSerializer
{
private readonly IStringConverterRepository _converterRepository;
///
/// Initializes a new instance of the class.
///
/// The repository of string converters.
public StringSerializer(IStringConverterRepository converterRepository)
{
_converterRepository = converterRepository;
}
///
public Result