Ставь 👍 если знал ответ, 🔥 если нет
Забирай 📚Базу Знаний
Please open Telegram to view this post
VIEW IN TELEGRAM
❤5👍4🔥4
Anonymous Quiz
65%
FirstDayOfMonth()
15%
StartOfMonth()
10%
AddDays(-DateTime.Now.Day + 1)
10%
AddDays(1 - DateTime.Now.Day)
💊13🤔8👀7
Anonymous Quiz
7%
AddBusinessDays()
15%
AddWorkingDays()
10%
AddWorkdays()
67%
Встроенного метода нет, требуется пользовательская реализация
👍8🔥3
Ставь 👍 если знал ответ, 🔥 если нет
Забирай 📚Базу Знаний
Please open Telegram to view this post
VIEW IN TELEGRAM
👍5🔥1
Anonymous Quiz
19%
IndexOf()
71%
LastIndexOf()
8%
Find()
2%
Search()
👍1
Anonymous Quiz
76%
ToCharArray()
18%
Split()
5%
Parse()
1%
Extract()
💊5👀4
Ставь 👍 если знал ответ, 🔥 если нет
Забирай 📚Базу Знаний
Please open Telegram to view this post
VIEW IN TELEGRAM
👍9🔥5
Anonymous Quiz
43%
Format()
36%
StringFormat()
19%
ToString()
3%
Concat()
🔥2
Anonymous Quiz
12%
myAsyncMethod().Wait();
49%
Task.Run(() => myAsyncMethod()).Wait();
31%
await myAsyncMethod();
9%
myAsyncMethod().Result;
🔥5💊2
Ставь 👍 если знал ответ, 🔥 если нет
Забирай 📚Базу Знаний
Please open Telegram to view this post
VIEW IN TELEGRAM
👀3🔥1💊1
Anonymous Quiz
62%
Task.Delay()
20%
Task.Wait()
5%
Task.Run()
13%
Task.Sleep()
💊6👀2
Anonymous Quiz
28%
Join
37%
GroupJoin
22%
SelectMany
13%
Concat
🔥2
- Inner Join: Объединяет только те строки, которые совпадают в обеих таблицах.
- Left Join: Возвращает все строки из левой таблицы и соответствующие строки из правой.
- Right Join: Аналогично Left Join, но для правой таблицы.
- Full Join: Возвращает все строки из обеих таблиц.
Ставь 👍 если знал ответ, 🔥 если нет
Забирай 📚Базу Знаний
Please open Telegram to view this post
VIEW IN TELEGRAM
👍6🔥2
Anonymous Quiz
33%
collection.Select(x => x.Property).Sum();
39%
collection.Sum(x => x.Property);
19%
collection.SelectMany(x => x.Property).Sum();
9%
collection.Aggregate(0, (sum, x) => sum + x.Property);
🔥1
Anonymous Quiz
43%
Union
21%
Concat
24%
Join
12%
SelectMany
🔥3💊1
Ставь 👍 если знал ответ, 🔥 если нет
Забирай 📚Базу Знаний
Please open Telegram to view this post
VIEW IN TELEGRAM
👍6💊1
Anonymous Quiz
42%
File.ReadAllLinesAsync
21%
File.ReadLinesAsync
17%
File.ReadAllTextAsync
21%
File.ReadAsync
💊5
Anonymous Quiz
44%
File.Copy
12%
File.CopyAsync
9%
File.Move
35%
File.Replace
👍4🔥1
Ставь 👍 если знал ответ, 🔥 если нет
Забирай 📚Базу Знаний
Please open Telegram to view this post
VIEW IN TELEGRAM
👍6🔥2
Anonymous Quiz
10%
var tcs = new TaskCompletionSource<int>();
35%
var tcs = new TaskCompletionSource();
43%
var tcs = new TaskCompletionSource<Task>();
12%
var tcs = new TaskCompletionSource<object>();
💊5🤔2