User Dzmitry Huba - Stack Overflowmost recent 30 from stackoverflow.com2009-11-27T09:45:53Zhttp://stackoverflow.com/feeds/user/45943http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1789658/datatable-into-listt-without-where-t-class-new-potential-problems/1789676#17896761Answer by Dzmitry Huba for DataTable into List<T> *without* where T : class, new() - potential problems?Dzmitry Huba2009-11-24T12:11:13Z2009-11-24T12:11:13Z<p>You can use <code>Activator.CreateInstance<T>()</code>.</p>
<blockquote>
<p>The CreateInstance generic method is used by compilers to implement the instantiation of types specified by type parameters. </p>
</blockquote>
http://stackoverflow.com/questions/1650310/net-reflection-determining-whether-an-array-of-t-would-be-convertible-to-some-o/1650380#16503800Answer by Dzmitry Huba for .NET reflection: determining whether an array of T would be convertible to some other typeDzmitry Huba2009-10-30T15:09:48Z2009-10-30T15:09:48Z<p>Array case is covered by <code>IEnumerable<T></code> as one dimensional arrays (the ones you are looking for using <code>GetArrayrank</code>)implement <code>IList<T></code> which is in turn derived from <code>IEnumerable<T></code>.
It makes sense to look for <code>IEnumerable</code> next and treat element type as object - that is the way foreach construct treats collections. </p>
<p>One more thing to consider is a case when supplied type implements <code>IEnumerable<T></code> several times (for example, <code>IEnumerable<object></code> and <code>IEnumerable<string></code>). For example, <code>DataContractSerializer</code> in this case doesn't consider the type as a collection type.</p>
http://stackoverflow.com/questions/1547921/which-is-a-better-practice-at-exception-handling/1547941#15479411Answer by Dzmitry Huba for which is a better practice at exception handling?Dzmitry Huba2009-10-10T13:26:16Z2009-10-10T13:26:16Z<p>The second approach is better because throwing and hanlding exception has its performance hit. Throw rates above 100 per second are likely to noticeably impact the perfor-
mance of most applications. Consider <a href="http://msdn.microsoft.com/en-us/library/ms229009.aspx" rel="nofollow">Exceptions and Performance</a>.</p>
http://stackoverflow.com/questions/1544700/overwhelmed-by-ioc-choices/1544730#15447302Answer by Dzmitry Huba for overwhelmed by IOC choicesDzmitry Huba2009-10-09T16:12:23Z2009-10-09T16:12:23Z<p>I think more or less they have the same functionality. So it makes sense to look at:</p>
<ul>
<li>Documenatation quality</li>
<li>Presense of comprehensive quickstarts</li>
<li>Is is used in other well known products</li>
<li>Is there a community around it</li>
<li>How mature is it</li>
</ul>
<p>For example, Unity:</p>
<ul>
<li>It has good documentation</li>
<li>Quickstarts are pretty good</li>
<li>It is used in Composite Application Guidance and Web Client Software Factory</li>
<li>It has community around it</li>
<li>It is only 1.2 (and 2.0 is coming) but nonetheless it is a successor of object builder</li>
</ul>
http://stackoverflow.com/questions/1542824/c-initialization-of-instance-fields-vs-local-variables/1542864#15428642Answer by Dzmitry Huba for C#: Initialization of instance fields vs. local variablesDzmitry Huba2009-10-09T09:45:57Z2009-10-09T09:45:57Z<p>It is governed by Definite Assignment rules in C#. Variable must be definitely assigned before it is accessed.</p>
<blockquote>
<p>5.3 Definite assignment </p>
<p>At a given location in the executable code of a function member, a variable is said to be definitely assigned if the compiler can prove, by a particular static flow analysis (§5.3.3), that the variable has been automatically initialized or has been the target of at least one assignment.</p>
<p>5.3.1 Initially assigned variables </p>
<p>The following categories of variables are classified as initially assigned: </p>
<p>• Static variables. </p>
<p>• Instance variables of class instances. </p>
<p>• Instance variables of initially assigned struct variables. </p>
<p>• Array elements. </p>
<p>• Value parameters. </p>
<p>• Reference parameters. </p>
<p>• Variables declared in a catch clause or a foreach statement.</p>
<p>5.3.2 Initially unassigned variables </p>
<p>The following categories of variables are classified as initially unassigned: </p>
<p>• Instance variables of initially unassigned struct variables. </p>
<p>• Output parameters, including the this variable of struct instance constructors. </p>
<p>• Local variables, except those declared in a catch clause or a foreach statement.</p>
</blockquote>
http://stackoverflow.com/questions/1542800/multithreading-on-asp-net-2-0-begginer-question/1542819#15428192Answer by Dzmitry Huba for Multithreading on ASP .NET 2.0 (begginer question)Dzmitry Huba2009-10-09T09:35:19Z2009-10-09T09:35:19Z<p>You can have a look at <a href="http://msdn.microsoft.com/en-us/magazine/cc164128.aspx" rel="nofollow">Use Threads and Build Asynchronous Handlers in Your Server-Side Web Code</a> and <a href="http://msdn.microsoft.com/en-us/magazine/cc163725.aspx" rel="nofollow">Asynchronous Pages in ASP.NET 2.0</a>.</p>
http://stackoverflow.com/questions/1542608/default-accessmodifier-of-the-class/1542621#15426213Answer by Dzmitry Huba for default accessmodifier of the class ?Dzmitry Huba2009-10-09T08:44:20Z2009-10-09T08:44:20Z<p>In C# if the type is not nested (within other class or struct) and doesn't have access modifier applied it is internal. If it is nested - private.</p>
<p>From C# specification:</p>
<blockquote>
<p>3.5.1 Declared accessibility </p>
<p>...</p>
<p>• Types declared in compilation units
or namespaces can have public or
internal declared accessibility and
default to internal declared
accessibility.<br />
• Class members can
have any of the five kinds of declared
accessibility and default to private
declared accessibility. (Note that a
type declared as a member of a class
can have any of the five kinds of
declared accessibility, whereas a type
declared as a member of a namespace
can have only public or internal
declared accessibility.)</p>
</blockquote>
http://stackoverflow.com/questions/1542545/threads-simulation-of-execution-time/1542584#15425840Answer by Dzmitry Huba for Threads - Simulation of execution timeDzmitry Huba2009-10-09T08:36:44Z2009-10-09T08:36:44Z<ol>
<li><p>It depends on whether you want to get sum of execution times of two independent tasks or the biggest one. In first case you need to measure required time within WriteX. In the second case before startOne and stop measuring when both ar finished. Use <code>Stopwatch</code> in both cases.</p></li>
<li><p>Use <code>Thread.Join</code> to wait until both threads are finished.</p></li>
<li><p>Use parameterized start <code>Thread.Start(object)</code> and pass task name there.</p></li>
</ol>
http://stackoverflow.com/questions/1537528/how-to-convert-system-linq-enumerable-wherelistiteratorint-to-listint/1537568#15375681Answer by Dzmitry Huba for How to convert System.Linq.Enumerable.WhereListIterator<int> to List<int>?Dzmitry Huba2009-10-08T12:44:02Z2009-10-08T12:54:38Z<p>By the way why do you declare prettyPrint with such specific type for scores parameter and than use this parameter only as IEnumerable (I assume this is how you implemented ForEach extension method)? So why not change prettyPrint signature and keep this lazy evaluated? =)</p>
<p>Like this:</p>
<pre><code>Action<IEnumerable<int>, string> prettyPrint = (list, title) =>
{
Console.WriteLine("*** {0} ***", title);
list.ForEach(i => Console.WriteLine(i));
};
prettyPrint(scores.Where(i => i % 2 == 0), "Title");
</code></pre>
<p>Update:</p>
<p>Or you can avoid using List.ForEach like this (do not take into account string concatenation inefficiency):</p>
<pre><code>var text = scores.Where(i => i % 2 == 0).Aggregate("Title", (text, score) => text + Environment.NewLine + score);
</code></pre>
http://stackoverflow.com/questions/1537043/caching-ienumerable/1537120#15371202Answer by Dzmitry Huba for Caching IEnumerableDzmitry Huba2009-10-08T11:09:52Z2009-10-08T11:09:52Z<p>You can look at <a href="http://blogs.msdn.com/wesdyer/archive/2006/01/13/saving-the-state-of-enumerators.aspx" rel="nofollow">Saving the State of Enumerators</a> which describes how to create lazy list (which caches once iterated items).</p>
http://stackoverflow.com/questions/1531077/will-clr-handle-both-cls-complaint-and-non-cls-complaint-exceptions/1531121#15311210Answer by Dzmitry Huba for Will CLR handle both CLS-Complaint and non-CLS complaint exceptions?Dzmitry Huba2009-10-07T11:45:20Z2009-10-07T11:45:20Z<p>Although the C# compiler allows developers to throw Exception-derived objects only, prior to
C# version 2.0, the C# compiler did allow developers to catch non-CLS-compliant exceptions
by using code like this:</p>
<pre><code>private void SomeMethod() {
try {
// Inside the try block is where you put code requiring
// graceful recovery or common cleanup operations.
}
catch (Exception e) {
// Before C# 2.0, this block catches CLS-compliant exceptions only
// In C# 2.0, this block catches CLS- & non-CLS- compliant exceptions
throw; // Re-throws whatever got caught
}
catch {
// In all versions of C#, this block catches
// CLS- & non-CLS- compliant exceptions
throw; // Re-throws whatever got caught
}
}
</code></pre>
http://stackoverflow.com/questions/1530863/what-happens-if-i-lock-an-object-while-another-thread-use-that-variable/1530903#15309035Answer by Dzmitry Huba for What happens if I lock an object while another thread use that variable?Dzmitry Huba2009-10-07T10:56:43Z2009-10-07T10:56:43Z<p><a href="http://msdn.microsoft.com/en-us/library/c5kehkcz%28VS.80%29.aspx" rel="nofollow">lock keyword</a> doesn't "lock" or "freeze" target object (in a sense preventing from changes). </p>
<blockquote>
<p>lock ensures that one thread does not enter a critical section of code while another thread is in the critical section. If another thread attempts to enter a locked code, it will wait, block, until the object is released.</p>
</blockquote>
<p>So in your case it won't prevent other threads from enumerating the list.</p>
http://stackoverflow.com/questions/1525445/how-do-you-tell-the-c-compiler-that-a-symbol-is-a-type-and-not-a-variable-when-t/1525484#15254842Answer by Dzmitry Huba for How do you tell the C# compiler that a symbol is a type and not a variable when they share the same name?Dzmitry Huba2009-10-06T13:09:45Z2009-10-06T13:09:45Z<p>You can look into C# Specification to get more information on this behavior. Here is the start of the chapter that describes it:</p>
<blockquote>
<p>7.3 Member lookup<br />
A member lookup is the process whereby the meaning of a
name in the context of a type is
determined. A member lookup can occur
as part of evaluating a simple-name
(§7.5.2) or a member-access (§7.5.4)
in an expression. If the simple-name
or member-access occurs as the
simple-expression of an
invocation-expression (§7.5.5.1), the
member is said to be invoked. If a
member is a method or event, or if it
is a constant, field or property of a
delegate type (§15), then the member
is said to be invocable. Member
lookup considers not only the name of
a member but also the number of type
parameters the member has and whether
the member is accessible. For the
purposes of member lookup, generic
methods and nested generic types have
the number of type parameters
indicated in their respective
declarations and all other members
have zero type parameters.</p>
</blockquote>
http://stackoverflow.com/questions/1524813/convert-this-linq-expression-into-lambda/1524820#15248203Answer by Dzmitry Huba for convert this LINQ expression into Lambda..Dzmitry Huba2009-10-06T10:39:22Z2009-10-06T10:39:22Z<p>You can take a look at <a href="http://msdn.microsoft.com/en-us/vcsharp/aa336746.aspx" rel="nofollow">101 LINQ Samples</a> and <a href="http://community.bartdesmet.net/blogs/bart/archive/2008/08/30/c-3-0-query-expression-translation-cheat-sheet.aspx" rel="nofollow">C# 3.0 QUERY EXPRESSION TRANSLATION CHEAT SHEET</a></p>
http://stackoverflow.com/questions/1524767/how-to-handle-null-values-in-my-business-objects/1524797#15247971Answer by Dzmitry Huba for How to handle null values in my business objectsDzmitry Huba2009-10-06T10:32:12Z2009-10-06T10:32:12Z<p>You can create such helper methods:</p>
<pre><code> static T Map<T>(object obj, Func<object, T> map, T def)
{
if (obj != null)
{
return map(obj);
}
return def;
}
static T Map<T>(object obj, Func<object, T> map)
{
return Map<T>(obj, map, default(T));
}
</code></pre>
<p>And use them like:</p>
<pre><code> object o = 1;
var t = Map(o, Convert.ToInt32, 0); // with default value
var t2 = Map(o, Convert.ToInt32); // or without default value
</code></pre>
http://stackoverflow.com/questions/1524738/references-for-learning-to-write-multi-threaded-application-in-c/1524756#15247561Answer by Dzmitry Huba for References for learning to write multi-threaded application in C#?Dzmitry Huba2009-10-06T10:23:59Z2009-10-06T10:23:59Z<p>Take a look at <a href="http://msdn.microsoft.com/en-us/library/3e8s7xdd.aspx" rel="nofollow">Managed Threading</a> and <a href="http://rads.stackoverflow.com/amzn/click/032143482X" rel="nofollow">Concurrent Programming on Windows</a></p>
http://stackoverflow.com/questions/1524248/use-of-region-in-c/1524267#15242671Answer by Dzmitry Huba for Use of #region in C#Dzmitry Huba2009-10-06T08:22:17Z2009-10-06T09:27:49Z<p>Framework Design Guidelines 2nd has the following related to regions usage:</p>
<blockquote>
<p>DO use #region blocks around not
publicly callable and explicit
interface implementation groups.</p>
<pre><code>#region internal members ...
#endregion
#region private members ...
#endregion
</code></pre>
<p>Vance Morrison: I find this guideline to be surprisingly
useful. I now get highly annoyed if I
can’t collapse the class and quickly
see just the public surface of the
class.</p>
</blockquote>
http://stackoverflow.com/questions/1521331/what-makes-mvvm-uniquely-suited-to-wpf/1521377#15213771Answer by Dzmitry Huba for What makes MVVM uniquely suited to WPF?Dzmitry Huba2009-10-05T17:34:18Z2009-10-05T17:34:18Z<p>I think commanding support (ICommand) in addition to great data binding capabilities makes it suitable for WPF and Silverlight.</p>
http://stackoverflow.com/questions/1520668/add-an-item-to-a-string-array/1520676#15206761Answer by Dzmitry Huba for Add an item to a string[] array Dzmitry Huba2009-10-05T15:07:54Z2009-10-05T15:07:54Z<p>Yes. Arrays have fixed size.</p>
<p>From C# specification:</p>
<blockquote>
<p>12.2 Array creation<br />
...<br />
When an array instance is created, the rank
and <strong>length of each dimension are
established and then remain constant
for the entire lifetime of the
instance</strong>. In other words, it is not
possible to change the rank of an
existing array instance, nor is it
possible to resize its dimensions.</p>
</blockquote>
<p>You may also take a look at blog post from Eric Lippert <a href="http://blogs.msdn.com/ericlippert/archive/2008/09/22/arrays-considered-somewhat-harmful.aspx" rel="nofollow">Arrays considered somewhat harmful</a></p>
http://stackoverflow.com/questions/1520466/when-to-use-run-time-type-information/1520566#15205660Answer by Dzmitry Huba for When to use run-time type information?Dzmitry Huba2009-10-05T14:51:57Z2009-10-05T15:07:02Z<p>You can refer to More Effective C# for a case where run-time type checking is OK. </p>
<blockquote>
<p>Item 3. Specialize Generic Algorithms
Using Runtime Type Checking</p>
<p>You can easily reuse generics by
simply specifying new type parameters.
A new instantiation with new type
parameters means a new type having
similar functionality.</p>
<p>All this is great, because you write
less code. However, sometimes being
more generic means not taking
advantage of a more specific, but
clearly superior, algorithm. The C#
language rules take this into account.
All it takes is for you to recognize
that your algorithm can be more
efficient when the type parameters
have greater capabilities, and then to
write that specific code. Furthermore,
creating a second generic type that
specifies different constraints
doesn't always work. Generic
instantiations are based on the
compile-time type of an object, and
not the runtime type. If you fail to
take that into account, you can miss
possible efficiencies.</p>
</blockquote>
<p>For example, suppose you write a class that provides a reverse-order enumeration on a sequence of items represented through IEnumerable<T>. In order to enumerate it backwards you may iterate it and copy items into an intermediate collection with indexer access like List<T> and than enumerate that collection using indexer access backwards. But if your original IEnumerable is IList why not take advantage of it and provide more performant way (without copying to intermediate collection) to iterate items backwards. So basically it is a special we can take advantage of but still providing the same behavior (iterating sequence backwards).</p>
<p>But in general you should carefully consider run-time type checking and ensure that it doesn't violate Liskov Substituion Principle.</p>
http://stackoverflow.com/questions/1519512/how-to-send-large-file-from-client-to-server-using-wcf-in-c/1519517#15195172Answer by Dzmitry Huba for How to Send Large File From Client To Server Using WCF in C#?Dzmitry Huba2009-10-05T11:26:03Z2009-10-05T11:26:03Z<p>You can take a look at <a href="http://msdn.microsoft.com/en-us/library/ms731913.aspx" rel="nofollow">WCF Streaming</a> feature.</p>
http://stackoverflow.com/questions/1519429/handling-with-temporary-file-stream/1519496#15194960Answer by Dzmitry Huba for Handling with temporary file streamDzmitry Huba2009-10-05T11:22:23Z2009-10-05T11:22:23Z<p>Basically according to TempFileStream logic you always use just created file with unique name (that is what Path.GetTempFileName does) and you always delete it after its use. So there is no need to provide constructor that accepts FileMode as you always use it in the same mode.</p>
http://stackoverflow.com/questions/1519358/when-to-use-factory-method-pattern/1519446#15194462Answer by Dzmitry Huba for When to use Factory method pattern?Dzmitry Huba2009-10-05T11:09:04Z2009-10-05T11:14:41Z<p>You can refer to section 9.5 Factories from Framework Design Guidelines 2nd Edition. Here is quoted set of guidelines with respect to using factories over constructors: </p>
<blockquote>
<p>DO prefer constructors to
factories, because they are
generally more usable, consistent,
and convenient than specialized
construction mechanisms.</p>
<p>CONSIDER using a factory if you need
more control than can be provided by
constructors over the creation of the
instances.</p>
<p>DO use a factory in cases where a
developer might not know which type
to construct, such as when coding
against a base type or interface.</p>
<p>CONSIDER using a factory if having a
named method is the only way to make
the operation self-explanatory.</p>
<p>DO use a factory for conversion-style
operations.</p>
</blockquote>
<p>And from section 5.3 Constructor Design</p>
<blockquote>
<p>CONSIDER using a static factory method instead of a constructor if the
semantics of the desired operation do not map directly to the construc-
tion of a new instance, or if following the constructor design guidelines
feels unnatural.</p>
</blockquote>
http://stackoverflow.com/questions/1518915/in-managed-code-how-do-i-achieve-good-locality-of-reference/1518970#15189702Answer by Dzmitry Huba for In managed code, how do I achieve good locality of reference?Dzmitry Huba2009-10-05T09:10:16Z2009-10-05T09:10:16Z<p>With regards to arrays here is an excerpt from CLI (Common Language Infrastructure) specification:</p>
<blockquote>
<p>Array elements shall be laid out
within the array object in row-major
order (i.e., the elements associated
with the rightmost array dimension
<strong>shall be laid out contiguously from lowest to highest index</strong>). The
actual storage allocated for each
array element can include
platform-specific padding. (The size
of this storage, in bytes, is returned
by the sizeof instruction when it is
applied to the type of that array’s
elements.</p>
</blockquote>
http://stackoverflow.com/questions/1518875/a-design-problem/1518894#15188940Answer by Dzmitry Huba for A design problemDzmitry Huba2009-10-05T08:50:56Z2009-10-05T08:50:56Z<p>Well, you named general functionality you'd like to implement. However you didn't mentioned consumers of this functionality. And usage scenarios is the driving force behind design. So in order to proceed with design you need to specify scenarios. For example, there is no point in abstracting searching algorithms behind Strategy pattern unless it will be used polymorphycally.</p>
http://stackoverflow.com/questions/1518726/recursive-fibonacci/1518793#15187932Answer by Dzmitry Huba for Recursive FibonacciDzmitry Huba2009-10-05T08:14:08Z2009-10-05T08:28:22Z<p>Why not use iterative algorithm?</p>
<pre><code>int fib(int n)
{
int a = 1, b = 1;
for (int i = 3; i <= n; i++) {
int c = a + b;
a = b;
b = c;
}
return b;
}
</code></pre>
http://stackoverflow.com/questions/1518572/using-this-many-instances-of-class-calling-private-method/1518603#15186030Answer by Dzmitry Huba for Using "this" - many instances of class, calling private methodDzmitry Huba2009-10-05T07:08:48Z2009-10-05T07:08:48Z<p>From C# Specification:</p>
<blockquote>
<p>7.5.7 This access </p>
<p>…<br />
When this is used in a primary-expression within an
instance method or instance accessor
of a class, it is classified as a
value. The type of the value is the
instance type (§10.3.1) of the class
within which the usage occurs, and
the <strong>value is a reference to the object
for which the method or accessor was
invoked.</strong></p>
</blockquote>
<p>I suspect that you have problems with multithreaded access to instances of type that represent connected clients.</p>
http://stackoverflow.com/questions/1509005/c-scope-specific-variable-binding/1509061#15090611Answer by Dzmitry Huba for C#: Scope-specific variable bindingDzmitry Huba2009-10-02T11:49:32Z2009-10-02T11:49:32Z<p>You can use block to scope names. From C# Specification:</p>
<blockquote>
<p>8.2 Blocks </p>
<p>A block permits multiple statements to be written in contexts where a single statement is allowed. </p>
<p>block: { statement-listopt } </p>
<p>A block consists of an optional
statement-list (§8.2.1), enclosed in
braces. If the statement list is
omitted, the block is said to be
empty. </p>
<p>A block may contain declaration
statements (§8.5). The scope of a
local variable or constant declared in
a block is the block. </p>
<p>Within a block, the meaning of a name
used in an expression context must
always be the same (§7.5.2.1).</p>
</blockquote>
http://stackoverflow.com/questions/1507835/state-at-compile-time-not-known/1507850#15078502Answer by Dzmitry Huba for state at compile time not knownDzmitry Huba2009-10-02T05:23:31Z2009-10-02T05:23:31Z<p>I'm not usre that understood all your constraints. However you can parse string by using Int32.TryParse in case target string is not necessarily valid.</p>
http://stackoverflow.com/questions/1503686/does-parallel-work-in-an-asp-net-work-process-block-connection-threads/1503713#15037131Answer by Dzmitry Huba for Does parallel work in an ASP.NET work process block connection threads?Dzmitry Huba2009-10-01T12:37:24Z2009-10-01T12:37:24Z<p>You can have a look at <a href="http://msdn.microsoft.com/en-us/magazine/cc164128.aspx" rel="nofollow">Use Threads and Build Asynchronous Handlers in Your Server-Side Web Code</a> and <a href="http://msdn.microsoft.com/en-us/magazine/cc163725.aspx" rel="nofollow">Asynchronous Pages in ASP.NET 2.0</a>.</p>
http://stackoverflow.com/questions/1542608/default-accessmodifier-of-the-class/1542621#1542621Comment by Dzmitry Huba on default accessmodifier of the class ?Dzmitry Huba2009-10-09T09:11:30Z2009-10-09T09:11:30ZIn terms of default accessibility they are not different from instance members.http://stackoverflow.com/questions/1536293/c-best-way-to-call-tostring-on-an-object/1536370#1536370Comment by Dzmitry Huba on C# best way to call .ToString() on an objectDzmitry Huba2009-10-08T08:31:16Z2009-10-08T08:31:16ZWell 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. http://stackoverflow.com/questions/1536075/namespace-problemComment by Dzmitry Huba on Namespace problemDzmitry Huba2009-10-08T07:16:28Z2009-10-08T07:16:28ZCould you please provide compiler error message?http://stackoverflow.com/questions/1520542/c-how-to-mark-a-method-will-throw-unconditionally/1520568#1520568Comment by Dzmitry Huba on C#: How to mark a method will throw unconditionally?Dzmitry Huba2009-10-05T14:57:48Z2009-10-05T14:57:48ZI 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.http://stackoverflow.com/questions/1518572/using-this-many-instances-of-class-calling-private-method/1518603#1518603Comment by Dzmitry Huba on Using "this" - many instances of class, calling private methodDzmitry Huba2009-10-05T07:22:48Z2009-10-05T07:22:48ZPresense 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.http://stackoverflow.com/questions/1503651/is-it-possible-to-iterate-through-methods-parameters-in-c/1503668#1503668Comment by Dzmitry Huba on Is it possible to iterate through method's parameters in C#?Dzmitry Huba2009-10-01T12:41:39Z2009-10-01T12:41:39ZI 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?http://stackoverflow.com/questions/1503651/is-it-possible-to-iterate-through-methods-parameters-in-c/1503668#1503668Comment by Dzmitry Huba on Is it possible to iterate through method's parameters in C#?Dzmitry Huba2009-10-01T12:31:37Z2009-10-01T12:31:37ZIn your case what about CheckNotNull((object[])null)? :-)http://stackoverflow.com/questions/1420601/good-way-to-create-an-idle-loop-in-cComment by Dzmitry Huba on Good way to create an idle loop in C#?Dzmitry Huba2009-09-14T09:59:25Z2009-09-14T09:59:25ZCould you please explain what problem the loop solves?http://stackoverflow.com/questions/1415740/c-circular-dependency-problem-solving-technique/1415756#1415756Comment by Dzmitry Huba on C# Circular Dependency Problem Solving TechniqueDzmitry Huba2009-09-12T19:14:23Z2009-09-12T19:14:23ZI think you have a mix in your IPersistent interface. It seems it has at least two consumers - DA classes access data properties (like Message) and someone (which isn't shown here if it exists) consumes IPersistent.Save() because it seems no sense to consume it from DA classes. So once you separate those to responsibilities you can move on to refactoring your solution. Next you need to identify which part your are going to reuse and thus make its dependencies weak - put IPersistent interface in a separate assembly (Separated Interface principle) or put it into assembly with reusable classes.http://stackoverflow.com/questions/1176288/how-to-inject-an-object-into-a-wcf-validator-class/1176335#1176335Comment by Dzmitry Huba on How to inject an object into a WCF validator classDzmitry Huba2009-07-24T10:36:52Z2009-07-24T10:36:52ZCould you please give me code sample and exception details and i will try to help you.http://stackoverflow.com/questions/1171717/c-conditional-operator/1171794#1171794Comment by Dzmitry Huba on C# ?: Conditional OperatorDzmitry Huba2009-07-23T13:56:05Z2009-07-23T13:56:05ZC# Specification:
"A boxing conversion permits a value-type to be implicitly converted to a reference type. A boxing conversion
exists from any non-nullable-value-type to object, to System.ValueType and to any interface-type
implemented by the non-nullable-value-type. Furthermore an enum-type can be converted to the type
System.Enum. "
So there is implicit boxing conversion between Int32 and object.
If the compiler could not determine the type it would fail at compile time and not at runtime.
Please see my answer...http://stackoverflow.com/questions/365370/proper-way-to-stop-tcplistener/365664#365664Comment by Dzmitry Huba on Proper way to stop TcpListenerDzmitry Huba2008-12-15T21:41:27Z2008-12-15T21:41:27ZYes, the documentation says so, but implementation closes the stream... Check it
TcpClient tcpClient = new TcpClient();
tcpClient.Connect("www.google.com", 80);
NetworkStream networkStream = tcpClient.GetStream();
tcpClient.Close();
byte[] bytes = new byte[1024];
networkStream.Read(bytes, 0, 1024);