Dzmitry Huba

1,298
Reputation
95 views

Registered User

Name Dzmitry Huba
Member for 11 months
Seen 2 days ago
Website
Location
Age 26
8h
awarded  Mortarboard
Nov
24
answered DataTable into List<T> *without* where T : class, new() - potential problems?
Oct
30
answered .NET reflection: determining whether an array of T would be convertible to some other type
Oct
15
accepted Multithreading on ASP .NET 2.0 (begginer question)
Oct
14
accepted Caching IEnumerable
Oct
10
answered which is a better practice at exception handling?
Oct
9
answered overwhelmed by IOC choices
Oct
9
answered C#: Initialization of instance fields vs. local variables
Oct
9
answered Multithreading on ASP .NET 2.0 (begginer question)
Oct
9
comment default accessmodifier of the class ?
In terms of default accessibility they are not different from instance members.
Oct
9
accepted default accessmodifier of the class ?
Oct
9
answered default accessmodifier of the class ?
Oct
9
answered Threads - Simulation of execution time
Oct
8
revised How to convert System.Linq.Enumerable.WhereListIterator<int> to List<int>?
Oct
8
answered How to convert System.Linq.Enumerable.WhereListIterator<int> to List<int>?
Oct
8
answered Caching IEnumerable
Oct
8
comment C# best way to call .ToString() on an object
Well as potentially you do not know whether converting null object to null string appropriate in all cases i think it is reasonable to add an overload that takes default value.
Oct
8
awarded  Commentator
Oct
8
comment Namespace problem
Could you please provide compiler error message?
Oct
8
accepted Use of #region in C#
Oct
7
answered Will CLR handle both CLS-Complaint and non-CLS complaint exceptions?
Oct
7
accepted What happens if I lock an object while another thread use that variable?
Oct
7
answered What happens if I lock an object while another thread use that variable?
Oct
6
answered How do you tell the C# compiler that a symbol is a type and not a variable when they share the same name?
Oct
6
answered convert this LINQ expression into Lambda..
Oct
6
answered How to handle null values in my business objects
Oct
6
answered References for learning to write multi-threaded application in C#?
Oct
6
answered Use of #region in C#
Oct
5
answered What makes MVVM uniquely suited to WPF?
Oct
5
answered Add an item to a string[] array
Oct
5
revised When to use run-time type information?
added 660 characters in body
Oct
5
comment C#: How to mark a method will throw unconditionally?
I think out parameters should be assigned where it makes sense or as it may prevent some hidden bugs at compile time just because you forgot to assign out parameter at some code path.
Oct
5
answered When to use run-time type information?
Oct
5
answered How to Send Large File From Client To Server Using WCF in C#?
Oct
5
answered Handling with temporary file stream
Oct
5
revised When to use Factory method pattern?
added 282 characters in body
Oct
5
answered When to use Factory method pattern?
Oct
5
answered In managed code, how do I achieve good locality of reference?
Oct
5
answered A design problem
Oct
5
answered Recursive Fibonacci
Oct
5
comment Using “this” - many instances of class, calling private method
Presense of a threadpool by itself doesn't guarantee that access to shared state is safe. Excerpt above is true for all instance (with whatever accessibility) methods and accessors.
Oct
5
answered Using “this” - many instances of class, calling private method
Oct
2
answered C#: Scope-specific variable binding
Oct
2
answered state at compile time not known
Oct
1
awarded  Nice Answer
Oct
1
awarded  Nice Answer
Oct
1
comment Is it possible to iterate through method’s parameters in C#?
I kid =) I know that you know all of this stuff. By the way I looking forward reading 2nd edition of C# in Depth. I liked the first edition. O, one more thing - what about "dream book"? Is there any movement there?
Oct
1
answered Does parallel work in an ASP.NET work process block connection threads?
Oct
1
comment Is it possible to iterate through method’s parameters in C#?
In your case what about CheckNotNull((object[])null)? :-)
Sep
30
accepted How to convert from string to object of any type?