12 lines
323 B
C#
12 lines
323 B
C#
namespace AdventOfCodeLibrary.Shared
|
|
{
|
|
using System.Text;
|
|
|
|
public class ByteHelper
|
|
{
|
|
public static string GetAsString(byte[] bytes) => Encoding.UTF8.GetString(bytes);
|
|
|
|
public static string[] GetAsStringArray(byte[] bytes) => Encoding.UTF8.GetString(bytes).Split(Environment.NewLine);
|
|
}
|
|
}
|