mirror of
https://github.com/duplicati/duplicati.git
synced 2026-05-07 15:49:35 -04:00
11 lines
217 B
C#
11 lines
217 B
C#
using System.Text;
|
|
|
|
namespace Duplicati.WebserverCore.Extensions;
|
|
|
|
public static class StringExtensions
|
|
{
|
|
public static byte[] GetBytes(this string str)
|
|
{
|
|
return Encoding.Default.GetBytes(str);
|
|
}
|
|
} |