No need to escape MarkdownV2 chars in code sections

This commit is contained in:
Wizou 2024-07-12 14:34:30 +02:00
parent 7643ed5ba4
commit 4946322045
5 changed files with 13 additions and 8 deletions

View file

@ -10,8 +10,9 @@ All the Telegram Client APIs (MTProto) are supported so you can do everything th
This ReadMe is a **quick but important tutorial** to learn the fundamentals about this library. Please read it all.
>⚠️ This library requires understanding advanced C# techniques such as **asynchronous programming** or **subclass pattern matching**...
>If you are a beginner in C#, starting a project based on this library might not be a great idea.
> [!IMPORTANT]
> This library requires understanding advanced C# techniques such as **asynchronous programming** or **subclass pattern matching**...
> If you are a beginner in C#, starting a project based on this library might not be a great idea.
# How to use
@ -114,7 +115,8 @@ See [WinForms example](https://wiz0u.github.io/WTelegramClient/Examples/WinForms
# Example of API call
> The Telegram API makes extensive usage of base and derived classes, so be ready to use the various C# syntaxes
> [!NOTE]
> The Telegram API makes extensive usage of base and derived classes, so be ready to use the various C# syntaxes
to check/cast base classes into the more useful derived classes (`is`, `as`, `case DerivedType` )
All the Telegram API classes/methods are fully documented through Intellisense: Place your mouse over a class/method name,