Получи случайную криптовалюту за регистрацию!

C# 1001 notes

Логотип телеграм канала @csharp_1001_notes — C# 1001 notes C
Логотип телеграм канала @csharp_1001_notes — C# 1001 notes
Адрес канала: @csharp_1001_notes
Категории: Технологии
Язык: Русский
Количество подписчиков: 2.63K
Описание канала:

Регулярные короткие заметки по C# и .NET.
Просто о сложном для каждого.
admin - @notxxx1

Рейтинги и Отзывы

3.50

2 отзыва

Оценить канал csharp_1001_notes и оставить отзыв — могут только зарегестрированные пользователи. Все отзывы проходят модерацию.

5 звезд

1

4 звезд

0

3 звезд

0

2 звезд

1

1 звезд

0


Последние сообщения 2

2022-06-01 13:00:04
Конференция для .NET-разработчиков DotNext 2022 Spring16-17 июня онлайн, 27 июня офлайн в Санкт-Петербурге

Программа уже готова:
суммарно вас ждет 22 доклада о разных сторонах .NET. Например:
AOT в .NET: как сейчас работает АОТ-компиляция и какие проблемы она поможет решить.
Apache Kafka: устройство, применение в .NET и сравнение с RabbitMQ.
Как написать драйвер базы данных: разберем работу с TCP-сокетами, отказоустойчивость и многое другое.
Слияние микросервисов в монолит: про гибридную архитектуру для одновременной работы с односерверными и многосерверными окружениями.
Обзор новой версии C# 11 и объяснение полезных фич.

А также — дискуссии после каждого доклада, тематические обсуждения, мини-доклады от партнеров конференции, игры и розыгрыши подарков.

Переходите на сайт конференции за подробностями и билетами.

При покупке воспользуйтесь промокодом csharpnotes2022JRGpc — он дает скидку на билеты «Online» и «Online + Offline» для частных лиц.
260 views10:00
Открыть/Комментировать
2022-05-28 17:31:00 ​​ What does thread pooling mean?

The collection of threads is known as thread pooling. These threads find application when the tasks are to be performed without disturbing the primary threads. To manage the operations of the threads in the pool, System.Threading.ThreadPool namespace is used.
270 views14:31
Открыть/Комментировать
2022-05-27 17:35:00
Find an invalid example of using C# var
Anonymous Quiz
9%
var a = 3.141592;
78%
var a = null;
8%
var a = db.Stores;
6%
var a = db.Stores.Single(p => p.Id == 1);
104 voters204 views14:35
Открыть/Комментировать
2022-05-26 18:20:00
What is scope of a Protected Internal member variable of a C# class?

The protected internal access specifier allows a class to hide its member variables and member functions from other class objects and functions, except a child class within the same application. This is also used while implementing inheritance.
154 views15:20
Открыть/Комментировать
2022-05-21 17:31:00 ​​ What are the different types of serialization?

Following are the three different types of serialization:

- XML serialization: All the public properties are serialized to the XML document.

- SOAP: Any system that understands SOAP can use this serialization. System.Runtime.Serialization is the place where all the classes reside.

- Binary serialization: It is used for the conversion of any code into binary form.
184 views14:31
Открыть/Комментировать
2022-05-20 17:35:00
C# / .NET supports various built-in data structures. Which of the following data structures does not exist as built-in?
Anonymous Quiz
2%
Array
42%
D-Array
40%
Binary Tree
6%
Stack
10%
Linked List
131 voters307 views14:35
Открыть/Комментировать
2022-05-19 18:20:00
What is the best practice to have best performance using Lazy objects?

You typically use it when you want to instantiate something the first time its actually used. This delays the cost of creating it till if/when it's needed instead of always incurring the cost.

Usually this is preferable when the object may or may not be used and the cost of constructing it is non-trivial.

For example Lazy makes implementing lazy, thread-safe singletons easy.
245 views15:20
Открыть/Комментировать
2022-05-14 17:31:00 ​​ State the difference between the “throw” and “throw ex” in .NET

The difference between “throw” and “throw ex” is that “throw” is used for preserving original error stack whereas “throw ex” has a throw point through which it can trace the stack. For more accurate, error-free information, the throw is advisable to use.
304 views14:31
Открыть/Комментировать
2022-05-13 17:35:00
The following C# code is using C# Generics. Which is an incorrect explanation?
Anonymous Quiz
9%
If T is int type, variable t has 0
26%
If T is a reference type, variable t has null
57%
If T is string type, variable t has an empty string
8%
If T is bool type, variable t has false
120 voters356 views14:35
Открыть/Комментировать
2022-05-13 17:35:00
346 views14:35
Открыть/Комментировать