среда, 11 октября 2023 г.
четверг, 5 октября 2023 г.
вторник, 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://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
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);
}