вторник, 3 октября 2023 г.

Threading, Sleep

https://learn.microsoft.com/ru-ru/dotnet/standard/threading/pausing-and-resuming-threads

https://learn.microsoft.com/en-us/dotnet/api/system.threading.thread.sleep?view=net-7.0

https://learn.microsoft.com/ru-ru/dotnet/api/system.threading.thread.sleep?view=net-7.0

https://stackoverflow.com/questions/8815895/why-is-thread-sleep-so-harmful

https://stackoverflow.com/questions/20082221/when-to-use-task-delay-when-to-use-thread-sleep

https://stackoverflow.com/questions/52110676/sleep-thread-with-if-condition-in-c-sharp

https://stackoverflow.com/questions/7064811/why-is-thread-not-interrupted-when-sleeping-in-finally-block

https://stackoverflow.com/questions/42746069/thread-sleep-is-blocking-other-thread-also-working-on-other-method-along-with

https://www.geeksforgeeks.org/suspending-the-current-thread-for-the-specified-amount-of-time-in-c-sharp/


https://peterdaugaardrasmussen.com/2017/04/30/thread-sleep-1-is-15-6ms/

https://stackoverflow.com/questions/8568962/purpose-of-thread-sleep1

https://stackoverflow.com/questions/8568962/purpose-of-thread-sleep1

Protobuf

https://learn.microsoft.com/ru-ru/aspnet/core/grpc/protobuf?view=aspnetcore-7.0

Numeric, Types, C#

https://learn.microsoft.com/ru-ru/dotnet/csharp/language-reference/builtin-types/integral-numeric-types

Encoding, UTF8

https://stackoverflow.com/questions/14057434/how-can-i-transform-string-to-utf-8-in-c

private static void DecodeFromUtf8()
{
    string utf8_String = "day’s";
    byte[] bytes = Encoding.Default.GetBytes(utf8_String);
    utf8_String = Encoding.UTF8.GetString(bytes);
}