using System;
namespace S7.Net.Types
{
///
[Obsolete("Please use S7String class")]
public static class StringEx
{
///
public static string FromByteArray(byte[] bytes) => S7String.FromByteArray(bytes);
///
public static byte[] ToByteArray(string value, int reservedLength) => S7String.ToByteArray(value, reservedLength);
}
}