Библиотека шарписта | C#, F#, .NET, ASP.NET
Все самое полезное для C#-разработчика в одном канале. Как запустить своего ии-агента: https://clc.to/tvpmDQ По рекламе: @proglib_adv Для обратной связи: @proglibrary_feeedback_bot РКН: https://gosuslugi.ru/snet/67a5c81cdc130259d5b7fead
Show more📈 Analytical overview of Telegram channel Библиотека шарписта | C#, F#, .NET, ASP.NET
Channel Библиотека шарписта | C#, F#, .NET, ASP.NET (@csharpproglib) in the Russian language segment is an active participant. Currently, the community unites 21 861 subscribers, ranking 6 194 in the Technologies & Applications category and 30 800 in the Russia region.
📊 Audience metrics and dynamics
Since its creation on невідомо, the project has demonstrated rapid growth, gathering an audience of 21 861 subscribers.
According to the latest data from 13 June, 2026, the channel demonstrates stable activity. Although there has been a change in the number of participants by -49 over the last 30 days and by -3 over the last 24 hours, overall reach remains high.
- Verification status: Not verified
- Engagement rate (ER): The average audience engagement rate is 12.71%. Within the first 24 hours after publication, content typically collects 7.49% reactions from the total number of subscribers.
- Post reach: On average, each post receives 2 778 views. Within the first day, a publication typically gains 1 638 views.
- Reactions and interaction: The audience actively supports content: the average number of reactions per post is 9.
- Thematic interests: Content is focused on key topics such as .net, шарписта, навигация, await, string.
📝 Description and content policy
The author describes the resource as a platform for expressing subjective opinions:
“Все самое полезное для C#-разработчика в одном канале.
Как запустить своего ии-агента: https://clc.to/tvpmDQ
По рекламе: @proglib_adv
Для обратной связи: @proglibrary_feeedback_bot
РКН: https://gosuslugi.ru/snet/67a5c81cdc130259d5b7fead”
Thanks to the high frequency of updates (latest data received on 14 June, 2026), the channel maintains relevance and a high level of publication reach. Analytics show that the audience actively interacts with content, making it an important point of influence in the Technologies & Applications category.
[MyAttribute(Message = "hello")]Можно писать так:
[MyAttribute("hello")]
➖ Thread-safe collections FTW
• Добавлены новые коллекции — ConcurrentStack и ConcurrentQueue
• Поддержка Clear() во всех коллекциях
• Раньше Count у Concurrent коллекций был «примерным». Сейчас обещают более стабильную работу, без случайных значений.
➖ Улучшения производительности в JIT и GC
Это под капотом. Просто обновите — и радуйтесь ускорению.
➖ Better Unit Testing — Assert.Multiple
Теперь можно в одном тесте проверять несколько условий и не падать сразу на первом:
Assert.Multiple(() =>
{
Assert.AreEqual(1, result.A);
Assert.AreEqual(2, result.B);
});
💬 Когда закатим в продакшн парочку фичей?
🐸Библиотека шарписта #буст[*.cs] indent_style = space indent_size = 4 tab_width = 4 trim_trailing_whitespace = true end_of_line = lf insert_final_newline = true
indent_style: cтиль отступов, может быть space или tab. indent_size: количество пробелов для отступа. tab_width: ширина табуляции (используется, если indent_style = tab). trim_trailing_whitespace: удаление пробелов в конце строки. end_of_line: стиль переноса строки (LF или CRLF). insert_final_newline: добавление пустой строки в конце файла.➖ Конфигурация для разных директорий
[*.js] indent_style = space indent_size = 2 [test/*.cs] indent_style = tab indent_size = 4➖ Глобальные настройки для всех проектов Вы можете создать глобальный .editorconfig, который будет применяться ко всем проектам на вашем компьютере, если он находится в домашней директории или в другом заданном месте. Это позволяет легко применять одни и те же стандарты к каждому новому проекту.
root = true [*] indent_style = space indent_size = 4 trim_trailing_whitespace = true➖ Использование с git Если вы хотите гарантировать, что изменения в коде всегда соответствуют стандартам, можно интегрировать EditorConfig с Git Hooks. Таким образом, при каждом коммите можно автоматически проверять, чтобы все изменения соответствовали правилам форматирования. 💡 Если вы используете Visual Studio 2019 или более позднюю версию, EditorConfig будет работать без дополнительных настроек. 🐸Библиотека шарписта #буст
У меня две собаки и обе старенькие. Одна из них любит покашлять и часто во время того, как я говорю. Но это ладно. Недавно жена так громко позвала меня кушать, что я даже покраснел. Хорошо, что без камер сидели.💬 А как проходят дейли у вас? Всё штатно или кто-то на фоне любит погулять или покашлять? Делитесь в комментариях 👇 P.S. Если хотите задать вопрос сообществу, заполните нашу гугл-форму. 🐸Библиотека шарписта #междусобойчик
You are a Senior C# Backend Developer and Technical Interviewer with 15+ years of experience at FAANG companies. Your task is to conduct a mock interview for a candidate applying for a Backend Developer position specializing in C#. You will ask a series of technical questions, assess the candidate's responses, and provide constructive feedback. The interview should cover topics such as .NET framework, data structures, algorithms, database design, API development, and software design principles. Here's the format you will use to conduct the mock interview and provide feedback: --- ## Interview Question $interview_question ## Candidate's Answer $candidate_answer (This will be provided by the user) ## Your Assessment and Feedback $assessment_and_feedback (Provide a detailed assessment of the candidate's answer, highlighting strengths and areas for improvement. Be specific and constructive.) --- Begin the mock interview by asking the first question. After the candidate provides their answer, use the template above to provide your assessment and feedback. Continue with subsequent questions until the interview is complete. Aim for a comprehensive interview covering a range of backend development topics relevant to C#.🐸Библиотека шарписта #буст
runtimes/{RID}/native/ вашего NuGet-пакета. Пример для Windows 64-bit:
/runtimes
/win-x64
/native
mylibrary.dll
2️⃣ Обновите .csproj
Добавьте в файл .csproj строку, которая будет копировать DLL в выходную директорию:
<ItemGroup>
<None Update="runtimes\win-x64\native\mylibrary.dll">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
</ItemGroup>
3️⃣ Используйте команду dotnet publish
Для корректного копирования всех зависимостей используйте команду:
dotnet publish -c Release -r win-x64
Это обеспечит правильную сборку с нативными библиотеками.
🐸Библиотека шарписта #буст
Available now! Telegram Research 2025 — the year's key insights 
