mirror of
https://github.com/Bubuni-Team/telegram-bot.git
synced 2026-07-31 00:29:24 +03:00
🚧 Core improvements
This commit is contained in:
@@ -0,0 +1,17 @@
|
||||
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);
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user