mirror of
https://github.com/mxpv/podsync.git
synced 2024-05-11 05:55:04 +00:00
10 lines
203 B
C#
10 lines
203 B
C#
using System.IO;
|
|
using System.Text;
|
|
|
|
namespace Podsync.Services.Rss
|
|
{
|
|
public class Utf8StringWriter : StringWriter
|
|
{
|
|
public override Encoding Encoding { get; } = Encoding.UTF8;
|
|
}
|
|
} |