mirror of
https://github.com/Bubuni-Team/telegram-bot.git
synced 2026-07-31 00:29:24 +03:00
17 lines
405 B
C#
17 lines
405 B
C#
|
|
using System.Web;
|
||
|
|
|
||
|
|
namespace Kruzya.TelegramBot.Core.Extensions
|
||
|
|
{
|
||
|
|
public static class StringExtension
|
||
|
|
{
|
||
|
|
public static string HtmlEncode(this string content)
|
||
|
|
{
|
||
|
|
return HttpUtility.HtmlEncode(content);
|
||
|
|
}
|
||
|
|
|
||
|
|
public static string HtmlDecode(this string content)
|
||
|
|
{
|
||
|
|
return HttpUtility.HtmlDecode(content);
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|