public struct S : IDisposable { private bool dispose; public void Dispose() { dispose = true; } public bool GetDispose() { return dispose; } } What will be in stdout?
C#
Middle
1
How to organize waiting for new events if the queue is empty, and what is the difference between Channel and ConcurrentQueue?
Middle
1
How will you choose between offers and what will you pay attention to?
Middle
0
What is the difference between struct (value type) and class (reference type) in C#?
Middle
0
List<Action> actions = new List<Action>(); for (var count = 0; count < 10; count++) { actions.Add(() => System.Console.WriteLine(count)); } foreach (var action in actions) { action(); } What will be in stdout?
Middle
0
Would you be interested in mentoring junior developers?
Middle
0
What are your salary expectations: minimum and comfortable net amount?
Middle
0