User Joe - Stack Overflowmost recent 30 from stackoverflow.com2009-12-18T08:43:07Zhttp://stackoverflow.com/feeds/user/13087http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1923498/proper-way-to-unbox-database-values/1923586#19235864Answer by Joe for Proper way to unbox database valuesJoe2009-12-17T18:12:47Z2009-12-17T21:41:57Z<p>I find helper methods such as the following useful in your scenario - testing for DBNull is more efficient than catching an Exception as in your example:</p>
<pre><code>public static MyHelper
{
public static Nullable<T> ToNullable<T>(object value) where T : struct
{
if (value == null) return null;
if (Convert.IsDBNull(value)) return null;
return (T) value;
}
public static string ToString(object value)
{
if (value == null) return null;
if (Convert.IsDBNull(value)) return null;
return (string)value;
}
}
</code></pre>
<p>This works for the string and the usual primitive value types you will encounter (int, decimal, double, bool, DateTime).</p>
<p>It's slightly different from your example in that it casts rather than converts - but personally I prefer this. I.e. if the database column is NUMERIC (decimal), I'd rather be explicit if I wanted to convert the value to int, e.g.:</p>
<pre><code>int? myIntValue = (int?) MyHelper.ToNullable<decimal>(reader["MyNumericColumn"]);
</code></pre>
http://stackoverflow.com/questions/1922313/using-securestring-for-a-sql-connection/1923612#19236120Answer by Joe for using securestring for a sql connectionJoe2009-12-17T18:19:56Z2009-12-17T18:26:02Z<p>Your absolutely right the SecureString does not provide you with any benefit when you need to pass the string to a managed API, such as setting a ConnectionString.</p>
<p>It's really designed for secure communication with secure non-managed APIs.</p>
<p>Microsoft could theoretically consider enhancing SqlConnection object to support a secure ConnectionString, but I think they're unlikely to do so because:</p>
<ul>
<li><p>SecureString is really only useful in a client app, where e.g. a password is built character by character from user input, without ever having the whole password in a managed string.</p></li>
<li><p>In such an environment, it's more common to be using Windows authentication for connections to SQL Server.</p></li>
<li><p>On a server there are other ways to protect the SQL Server credentials, starting by limiting access to the server to authorized administrators.</p></li>
</ul>
http://stackoverflow.com/questions/1168151/unit-testing-logging-and-dependency-injection/1917249#19172490Answer by Joe for Unit Testing: Logging and Dependency InjectionJoe2009-12-16T19:58:05Z2009-12-16T19:58:05Z<p>Although I agree with others that I wouldn't apply TDD to logging, I would try to ensure that unit testing covers all code paths that contain logging statements. And importantly ensure that the highest verbosity level is configured while running the unit tests, so that all logging statements are executed.</p>
<p>For example, the following code has a bug which will throw a FormatException only if if Debug level tracing is enabled. </p>
<pre><code>if (logger.IsDebugEnabled)
{
string message = String.Format(CultureInfo.CurrentCulture,
"... {1} ...", someValue);
logger.Debug(message);
}
</code></pre>
http://stackoverflow.com/questions/1885696/asp-net-variable-pass-between-ascx-and-page/1885944#18859440Answer by Joe for asp.net - variable pass between ascx and pageJoe2009-12-11T05:22:20Z2009-12-11T05:22:20Z<p>Another alternative is to store the shared object(s) in the HttpContext.Items collection.</p>
http://stackoverflow.com/questions/1882523/how-to-skip-validating-after-clicking-on-a-forms-cancel-button/1882545#18825450Answer by Joe for How to skip Validating after clicking on a Form's Cancel button.Joe2009-12-10T17:18:00Z2009-12-10T17:18:00Z<p>Judicious use of the <code>Control.CausesValidation</code> property will help you achieve what you want.</p>
http://stackoverflow.com/questions/1875797/accessing-excel-combobox-from-c/1876105#18761050Answer by Joe for Accessing Excel.ComboBox from C#Joe2009-12-09T19:06:51Z2009-12-09T19:06:51Z<p>The VBA code to do it is below. Basically you need to access the Worksheet.Shapes collection to find the item that corresponds to your ComboBox (either by index or more realistically by name). Then traverse the properties OLEFormat -> Object -> Object, casting as appropriate. The C# code is very similar.</p>
<pre><code>Dim wks As Worksheet
Dim objShape As Shape
Dim objComboBox As ComboBox
Dim objOleObject As Excel.OleObject
Set wks = Sheet1
Set objShape = wks.Shapes(1)
' or Set objShape = wks.Shapes("ComboBox1")
Set objOleObject = objShape.OLEFormat.Object
Set objComboBox = objOleObject.Object
</code></pre>
http://stackoverflow.com/questions/1860072/ascii-encoding-and-umlauts-and-accents/1860281#18602811Answer by Joe for ASCII Encoding and Umlauts and AccentsJoe2009-12-07T14:24:19Z2009-12-07T14:52:47Z<p>Various of the encodings mentioned by other answers can be loosely described as <a href="http://en.wikipedia.org/wiki/Extended_ASCII" rel="nofollow">extended ASCII</a>.</p>
<p>When your users are asking for ASCII encoding, they are probably asking for one of these.</p>
<p>A statement like "if the requirement is ASCII encoding we can't have the accents and umlauts represented correctly" risks sounding pedantic to a non-technical user. An alternative is to get a sample of what they want (probably either the ANSI or OEM code page of their PC), determine the appropriate code page, and specify that.</p>
http://stackoverflow.com/questions/1209715/asp-net-c-caching-database-results-when-how-invalidate-on-per-record-basis/1855097#18550970Answer by Joe for ASP.NET C#: Caching Database Results, When/How Invalidate (on per-record basis)Joe2009-12-06T11:13:08Z2009-12-06T11:13:08Z<blockquote>
<p>On each insert and edit operation, you should replace your cache entry, then write to the database</p>
</blockquote>
<p>I wouldn't do it this way. If there are multiple concurrent updates, you won't be sure that the cache replacements are done in the same order as the database updates (unless the cache update is part of the same transaction as the database update, which seems overkill).</p>
<p>Instead I would:</p>
<ul>
<li><p>Store items in the cache with a cache key derived from the primary key.</p></li>
<li><p>On each update operation, simply remove the cache entry <strong>after</strong> the database update. In this way the cache will be refreshed with up-to-date data next time it's accessed.</p></li>
</ul>
http://stackoverflow.com/questions/1848597/simulating-application-in-wcf/1848908#18489080Answer by Joe for Simulating Application in WCFJoe2009-12-04T18:45:37Z2009-12-04T18:45:37Z<p>The Application object in ASP.NET is mainly needed for backwards compatibility with classic ASP applications.</p>
<p>It is essentially a static <code>Dictionary<string, object></code> with locking semantics that are compatible with classic ASP.</p>
<p>You can easily replace it by storing your application-wide state in any suitable static field, providing your own locking where needed. Then you don't need to worry if you are running as an ASP.NET app, a WCF app, or something else.</p>
http://stackoverflow.com/questions/1847132/how-can-i-have-both-abstract-and-virtual-methods-in-one-class/1847143#18471433Answer by Joe for How can I have both abstract and virtual methods in one class?Joe2009-12-04T14:07:38Z2009-12-04T14:07:38Z<p>Declare SqlStatement as abstract.</p>
http://stackoverflow.com/questions/1839649/c-string-format-flag-or-modifier-to-lowercase-param/1839707#18397072Answer by Joe for C# string format flag or modifier to lowercase paramJoe2009-12-03T12:56:15Z2009-12-03T12:56:15Z<p>No, but <a href="https://connect.microsoft.com/VisualStudio/feedback/ViewFeedback.aspx?FeedbackID=93783" rel="nofollow">you can vote for it on Microsoft Connect</a>, and maybe it will be in a future version of the Framework.</p>
http://stackoverflow.com/questions/1832335/does-math-rounddouble-decimal-always-return-consistent-results3Does Math.Round(double, decimal) always return consistent results.Joe2009-12-02T11:25:27Z2009-12-02T16:55:47Z
<p>Of course one should never compare floating point values that result from a calculation for equality, but always use a small tolerance, e.g.:</p>
<pre><code>double value1 = ...
double value2 = ...
if (Math.Abs(value1 - value2) < tolerance * Math.Abs(value1))
{
... values are close enough
}
</code></pre>
<p>But if I use Math.Round can I always be sure that the resulting value will be consistent, i.e. will the following Assert always succeed, even when the rounded value is a value that can't be represented exactly by a double?</p>
<pre><code>public static void TestRound(double value1, double value2, int decimals)
{
double roundedValue1 = Math.Round(value1, decimals);
double roundedValue2 = Math.Round(value2, decimals);
string format = "N" + decimals.ToString();
if (roundedValue1.ToString(format) == roundedValue2.ToString(format))
{
// They rounded to the same value, was the rounding exact?
Debug.Assert(roundedValue1 == roundedValue2);
}
}
</code></pre>
<p>If not please provide a counterexample.</p>
<p><strong>EDIT</strong></p>
<p>Thanks to <a href="http://stackoverflow.com/questions/1832335/does-math-rounddouble-decimal-always-return-consistent-results/1832639#1832639">astander</a> for a counterexample generated by brute force that proves the result is not "consistent" in the general case. This counterexample has 16 significant digits in the rounded result - it also fails in the same way when scaled thus:</p>
<pre><code> double value1 = 10546080000034341D;
double value2 = 10546080000034257D;
int decimals = 0;
TestRound(value1, value2, decimals);
</code></pre>
<p>However I'd also be interested in a more mathematical explanation. Bonus upvotes for any of the more mathematical Stackoverflowers who can do any of the following:</p>
<ul>
<li><p>Find a counterexample where the rounded result has fewer than 16 significant digits.</p></li>
<li><p>Identify a range of values for which the rounded result <strong>will</strong> always be "consistent" as defined here (e.g. all values where the number of significant digits in the rounded result is < N).</p></li>
<li><p>Provide an algorithmic method to generate counterexamples.</p></li>
</ul>
http://stackoverflow.com/questions/1827440/can-you-call-padleft-inside-a-databound-server-control/1827908#18279081Answer by Joe for Can you call PadLeft inside a databound server control?Joe2009-12-01T18:19:10Z2009-12-01T18:19:10Z<p>You can do it inline (I'll leave it to someone else to give you the answer as I don't have VS open to test it).</p>
<p>But I would do it by adding a method in the codebehind to return a formatted order id. Or even better, put the format method in a static helper class so it's available to any page that needs a formatted order id.</p>
<p>E.g. if you're binding to a collection of Orders, something like:</p>
<pre><code>public static string GetFormattedOrderId(object dataItem)
{
Order order = (Order) dataItem;
return String.Format("WW{0:N7}", order.OrderId); \
// or return order.OrderId.ToString().PadLeft... if you prefer
}
</code></pre>
<p>or if you're binding to a DataTable, something like:</p>
<pre><code>public static string GetFormattedOrderId(object dataItem)
{
DataRow row = (DataRow) dataItem;
return String.Format("WW{0:N7}", row["OrderId"]);
}
</code></pre>
<p>then you can have a consistenly formatted order id anywhere in your markup:</p>
<pre><code>'<%# MyFormattingHelper.GetFormattedOrderId(Container.DataItem) %>'
</code></pre>
http://stackoverflow.com/questions/1822026/convert-month-name-to-month-number-in-c/1822049#18220491Answer by Joe for Convert month name to month number in C#Joe2009-11-30T19:58:32Z2009-11-30T20:08:16Z<p>CultureInfo.DateTimeFormat.MonthNames is an array of month names for the specified culture.</p>
<p>So for US English month names January is:</p>
<pre><code>CultureInfo.InvariantCulture.DateTimeFormat.MonthNames[0]
</code></pre>
<p>And similarly janvier is:</p>
<pre><code>(new CultureInfo("fr-FR").DateTimeFormat.MonthNames[0]
</code></pre>
<p>You just need to look up your string in the appropriate culture-specific array of month names. Add one to the 0-based index and you'll have a month number. E.g. using code something like the following (for a case-sensitive lookup of a US English month name):</p>
<pre><code>IList<string> monthNames = CultureInfo.InvariantCulture.DateTimeFormat.MonthNames;
int monthNumber = monthNames.IndexOf("December") + 1;
</code></pre>
<p>The result will be 0 for an invalid month name.</p>
http://stackoverflow.com/questions/1819096/is-it-important-to-dispose-solidbrush-and-pen2Is it important to dispose SolidBrush and Pen?Joe2009-11-30T10:51:06Z2009-11-30T13:39:24Z
<p>I recently came across <a href="http://www.codeproject.com/KB/miscctrl/Vertical%5FLabel%5FControl.aspx" rel="nofollow">this VerticalLabel control on CodeProject</a>.</p>
<p>I notice that the OnPaint method creates but doesn't dispose Pen and SolidBrush objects.</p>
<p>Does this matter, and if so how can I demonstrate whatever problems it can cause?</p>
<p><strong>EDIT</strong> </p>
<p>This isn't a question about the IDisposable pattern in general. I understand that callers should normally call Dispose on any class that implements IDisposable.</p>
<p>What I want to know is what problems (if any) can be expected when GDI+ object are not disposed as in the above example. It's clear that, in the linked example, OnPaint may be called many times before the garbage collector kicks in, so there's the potential to run out of handles.</p>
<p>However I suspect that GDI+ internally reuses handles in some circumstances (for example if you use a pen of a specific color from the Pens class, it is cached and reused). </p>
<p>What I'm trying to understand is whether code like that in the linked example will be able to get away with neglecting to call Dispose. </p>
<p>And if not, to see a sample that demonstrated what problems it can cause.</p>
<p>I should add that I have very often (<a href="http://msdn.microsoft.com/en-us/library/cksxshce.aspx" rel="nofollow">including the OnPaint documentation on MSDN</a>) seen WinForms code samples that fail to dispose GDI+ objects.</p>
http://stackoverflow.com/questions/1818301/do-we-consider-this-as-a-bug/1818401#18184010Answer by Joe for Do we consider this as a bug?Joe2009-11-30T07:56:34Z2009-11-30T07:56:34Z<p>I'd call it an <strong>Issue</strong> - then you don't need to get too hung up on the grey area between a Bug and a Suggestion.</p>
<p>You usually only need to distinguish bugs from suggestions when there's a non-technical reason to do so (e.g. bug fixes are free, changes are chargeable). And in that case it's really more of a commercial issue subject to negociation.</p>
http://stackoverflow.com/questions/1815492/c-net-how-to-determine-whether-an-exception-is-being-handled/1815531#18155313Answer by Joe for C#/.NET: How to determine whether an exception is being handled?Joe2009-11-29T13:20:49Z2009-11-29T13:20:49Z<p>This information isn't available to you.</p>
<p>I would use a pattern similar to that used by the DbTransaction class: that is, your IDisposable class should implement a method analagous to DbTransaction.Commit(). Your Dispose method can then perform different logic depending on whether or not Commit was called (in the case of DbTransaction, the transaction will be rolled back if it wasn't explicity committed).</p>
<p>Users of your class would then use the following pattern, similar to a typical DbTransaction:</p>
<pre><code>using(MyDisposableClass instance = ...)
{
... do whatever ...
instance.Commit();
} // Dispose logic depends on whether or not Commit was called.
</code></pre>
<p><strong>EDIT</strong> I see you've edited your question to show you're aware of this pattern (your example uses TransactionScope). Nevertheless I think it's the only realistic solution.</p>
http://stackoverflow.com/questions/1813090/remember-password-option-c/1813134#18131342Answer by Joe for "Remember password" option [C#]Joe2009-11-28T17:23:47Z2009-11-28T17:31:09Z<p>I'd use the CredentialsUI. <a href="http://www.microsoft.com/indonesia/msdn/credmgmt.aspx" rel="nofollow">There's an article on MSDN</a> explaining how to use it in .NET.</p>
<p>I'm fairly sure it's what's used by modern email clients, Internet Browsers etc. It provides an option to save your credentials, encrypted using DPAPI.</p>
<p>I've created a C# wrapper class that makes it easy to use from managed apps.</p>
http://stackoverflow.com/questions/1811870/lightweight-readonly-alternative-to-datatable-for-storing-data-from-sqldatareader/1812047#18120471Answer by Joe for Lightweight readonly alternative to DataTable for storing data from SqlDataReader?Joe2009-11-28T09:07:33Z2009-11-28T16:01:05Z<pre><code>List<object[]>
</code></pre>
<p>seems about as lightweight as you can get.</p>
<p>And if you want more functionality that it offers (such as column names, databinding support, sorting, filtering), then you can derive / encapsulate and add that functionality.</p>
<p>Your requirement's rather vague. What does lightweight mean? What is it about DataTable that is unsuitable? What functionality that's provided by DataTable do you need?</p>
http://stackoverflow.com/questions/1812680/what-are-the-most-significant-disadvantages-of-using-uml/1812701#18127011Answer by Joe for what are the most significant disadvantages of using UML?Joe2009-11-28T14:57:51Z2009-11-28T14:57:51Z<p>I don't have a sensible response to this subjective question, but <a href="http://www.theregister.co.uk/2007/08/16/verity_stob_software_diagramming/" rel="nofollow">Verity Stob has an amusing take on the subject</a>.</p>
http://stackoverflow.com/questions/1810073/sql-server-convertnumeric18-0-fails-but-convertint-succeeds/1812435#18124351Answer by Joe for SQL Server CONVERT(NUMERIC(18,0), '') fails but CONVERT(INT, '') succeeds?Joe2009-11-28T12:33:40Z2009-11-28T12:33:40Z<p>ISNUMERIC doesn't alway work as you might expect: in particular it returns True for some values that can't subsequently be converted to numeric.</p>
<p><a href="http://www.tek-tips.com/faqs.cfm?fid=6423" rel="nofollow">This article</a> describes the issue and suggests how to work around it with UDFs.</p>
http://stackoverflow.com/questions/1812104/relation-between-net-encoding-and-characterset/1812398#18123981Answer by Joe for Relation between .NET Encoding and CharactersetJoe2009-11-28T12:17:55Z2009-11-28T12:17:55Z<p>ANSI is the current Windows ANSI code page, equivalent to Encoding.Default.</p>
<p>OEM is the current OEM code page typically used by console applications.</p>
<p>You can get this using:</p>
<pre><code>Encoding.GetEncoding(CultureInfo.CurrentCulture.TextInfo.OEMCodePage)
</code></pre>
<p>In a console application, the OEM encoding will also be available using</p>
<pre><code>Console.OutputEncoding
</code></pre>
http://stackoverflow.com/questions/1794547/how-can-i-make-an-are-you-sure-prompt-in-a-dos-batchfile/1807318#18073182Answer by Joe for How can I make an "are you sure" prompt in a DOS batchfile?Joe2009-11-27T07:59:35Z2009-11-27T07:59:35Z<p>You want something like:</p>
<pre><code>@echo off
setlocal
:PROMPT
SET /P AREYOUSURE=Are you sure (Y/[N])?
IF /I "%AREYOUSURE%" NEQ "Y" GOTO END
echo ... rest of file ...
:END
endlocal
</code></pre>
http://stackoverflow.com/questions/1799344/log4net-config-file-loading-when-using-asp-net-development-server/1799408#17994081Answer by Joe for log4net.config file loading when using asp.net development serverJoe2009-11-25T19:28:57Z2009-11-25T19:28:57Z<pre><code>Path.Combine(System.AppDomain.CurrentDomain.BaseDirectory, configFileName);
</code></pre>
http://stackoverflow.com/questions/1788447/xsl-to-html-in-net-1-1-how-to-include-javascript-which-has-without-getting/1788562#17885621Answer by Joe for XSL to HTML in .Net 1.1: How to include javascript which has '&&' without getting errors?Joe2009-11-24T08:04:58Z2009-11-24T08:04:58Z<p>You could try putting your script in a CDATA section. AFAIK a CDATA section in your XSLT file will not translate to a CDATA section in your output file.</p>
<pre><code><script language="JavaScript">
<![CDATA[
//
// Show hide language block
//
function lang(s) {
var elD = document.getElementById('german');
var elE = document.getElementById('english');
if(elD && elE) { /// <<---- error occurs here
elD.style.display = s == 'german' ? 'block': 'none';
elE.style.display = s == 'german' ? 'none': 'block';
}
}
]]>
</script>
</code></pre>
http://stackoverflow.com/questions/1779175/can-this-implementation-of-an-iequalitycomparer-be-improved/1779226#17792260Answer by Joe for Can this implementation of an IEqualityComparer be improved?Joe2009-11-22T16:46:54Z2009-11-22T16:46:54Z<p>You might want to consider whether you want a case-insensitive comparison.</p>
http://stackoverflow.com/questions/1773950/is-there-a-dictionary-like-collection-that-can-use-a-property-of-its-value-as-the/1774079#17740791Answer by Joe for Is there a dictionary like collection that can use a property of its value as the key?Joe2009-11-21T00:36:51Z2009-11-21T00:36:51Z<p>KeyedCollection as Jon Skeet says is the obvious candidate. </p>
<p>A few random remarks about this class:</p>
<ul>
<li><p>You will of course want the property that you use as the key to be readonly.</p></li>
<li><p>Its method <code>Contains(TItem item)</code> is inherited from <code>Collection<T></code>, and is implemented by iterating through the collection. This can therefore be much slower than <code>Contains(TKey key)</code>. It's too easy for developers to make the mistake of using the wrong overload, so it may be worth considering implementing your own <code>Contains(TItem item)</code> method:</p>
<pre><code>public new bool Contains(TItem item)
{
if (item == null) throw new ArgumentNullException("item");
return this.Contains(GetKeyForItem(item));
}
</code></pre></li>
<li><p>Unlike an IDictionary, it doesn't have a method <code>TryGetValue</code>. This can be useful and it might be worth implementing your own:</p>
<pre><code>public bool TryGetValue(TKey key, out TItem item)
{
// If the dictionary exists, use it
if (Dictionary != null) return Dictionary.TryGetValue(key, out item);
// Else do it the hard way
if (!this.Contains(key))
{
item = default(TItem);
return false;
}
item = this[key];
return true;
}
</code></pre></li>
<li><p>It doesn't support enumeration of the keys, which can be useful:</p>
<pre><code>public IEnumerable<TKey> GetKeys()
{
foreach (TItem item in this)
{
yield return GetKeyForItem(item);
}
}
</code></pre></li>
<li><p>Serialization can be inefficient, as it will serialize both its internal list and its internal dictionary. You can get round this if you need to by implementing custom serialization.</p></li>
</ul>
http://stackoverflow.com/questions/1765485/array-isreadonly-inconsistent-depending-on-interface-implementation/1767044#17670442Answer by Joe for Array.IsReadOnly inconsistent depending on interface implementationJoe2009-11-19T22:30:46Z2009-11-19T22:50:49Z<p><a href="http://msdn.microsoft.com/en-us/library/system.collections.ilist.aspx" rel="nofollow">From MSDN</a>:</p>
<blockquote>
<p>IList is a descendant of the
ICollection interface and is the base
interface of all non-generic lists.
IList implementations fall into three
categories: read-only, fixed-size, and
variable-size. A read-only IList
cannot be modified. A fixed-size IList
does not allow the addition or removal
of elements, but it allows the
modification of existing elements. A
variable-size IList allows the
addition, removal, and modification of
elements.</p>
</blockquote>
<p>The ICollection<T> interface does not have an indexer, so a fixed-size ICollection<T> is automatically readonly - there is no way to modify an existing item.</p>
<p>Possibly ICollection<T>.IsFixedSize would have been a better property name than ICollection<T>.IsReadOnly, but both imply the same thing - impossible to add or remove elements, i.e. the same as IList.IsFixedSize.</p>
<p>An array is a fixed-size list, but is not readonly as elements can be modified.</p>
<p>As an ICollection<T>, it is readonly, since an ICollection<T> has no way to modify elements.</p>
<p>This may appear confusing, but it is consistent and logical.</p>
<p>What is slightly inconsistent is that the generic IList<T> interface has an IsReadOnly property inherited from ICollection<T> whose semantics are therefore different from the non-generic IList.IsReadOnly. I imagine the designers were aware of this inconsistency but were unable to go back and change the semantics of the non-generic IList for backwards compatibility reasons.</p>
<p>To summarize, an IList can be:</p>
<ul>
<li><p>Variable-size.</p>
<p>IList.IsFixedSize = false</p>
<p>IList.IsReadOnly = false</p>
<p>ICollection<T>.IsReadOnly = false</p></li>
<li><p>Fixed-size (but elements can be modified, e.g. an Array)</p>
<p>IList.IsFixedSize = true</p>
<p>IList.IsReadOnly = false</p>
<p>ICollection<T>.IsReadOnly = true</p></li>
<li><p>Read-only (elements can not be modified)</p>
<p>IList.IsFixedSize = true</p>
<p>IList.IsReadOnly = true</p>
<p>ICollection<T>.IsReadOnly = true</p></li>
</ul>
http://stackoverflow.com/questions/1763699/system-text-encoding-isnt/1763920#17639201Answer by Joe for System.Text.Encoding isn'tJoe2009-11-19T15:05:04Z2009-11-19T15:05:04Z<p>In general you can't roundtrip in this way and you are wrong to expect to be able to do so for an arbitrary encoding and in particular for any of the UTF encodings.</p>
<p>However there is an encoding that will allow you to roundtrip for all byte values - Latin1 aka ISO-8859-1 aka CP28591. This encoding is similar but not identical to the default Windows ANSI encoding and is useful for scenarios where roundtripping in this way is important - e.g. writing a stream that mixes text and control characters to a serial port.</p>
<p><a href="http://stackoverflow.com/questions/932148/c-and-encoding-ascii-getstring/932265#932265">See this answer</a>, or other questions that mention Latin1.</p>
http://stackoverflow.com/questions/1760399/is-it-common-or-encouraged-practice-to-overload-a-function-to-accept-ienumerabl/1760426#17604261Answer by Joe for Is it common (or encouraged) practice to overload a function to accept IEnumerable<T>, ICollection<T>, IList<T>, etc.?Joe2009-11-19T01:55:13Z2009-11-19T01:55:13Z<p>I'd say it's uncommon, and potentially confusing, so would be unlikely to be a good choice for a public API.</p>
<p>You could accept an IEnumerable<T> parameter, and internally check if it is in fact an ICollection<T> or IList<T>, and optimize accordingly.</p>
<p>This might be analagous to some of the optimizations in some of the IEnumerable<T> extension methods in the .NET 3.5 Framework.</p>
http://stackoverflow.com/questions/1923498/proper-way-to-unbox-database-values/1923586#1923586Comment by Joe on Proper way to unbox database valuesJoe2009-12-17T21:45:28Z2009-12-17T21:45:28ZIt's a method declaration: to make this clearer I've added a class declaration (class MyHelper) to the sample. "Nullable<T>" is the return type of the method, and "ToNullable<T>" is the name of the method. You replace "T" by any type, constrained by the fact that it must be a value type or struct (where T : struct). Hence if you call the method with the type decimal (ToNullable<decimal>) the return type will be Nullable<decimal> aka "decimal?". Hope that's a bit clearer.http://stackoverflow.com/questions/1922984/removing-items-from-a-listof-t-in-vb-net-failing/1923023#1923023Comment by Joe on Removing items from a List(Of t) in vb.net failingJoe2009-12-17T18:33:25Z2009-12-17T18:33:25Z+1 - for what I'd wager is the correct answer despite the scant details in the question.http://stackoverflow.com/questions/1922313/using-securestring-for-a-sql-connection/1922357#1922357Comment by Joe on using securestring for a sql connectionJoe2009-12-17T18:17:55Z2009-12-17T18:17:55ZI don't see what using SSL has to do with the question.http://stackoverflow.com/questions/105932/how-to-record-window-position-in-winforms-application-settings/108217#108217Comment by Joe on How to record window position in WinForms application settingsJoe2009-12-09T16:16:46Z2009-12-09T16:16:46ZI wasn't very clear was I. In this sample, UserPreferencesManager is a class I wrote, that does the work of loading and saving settings to a persistent medium. This was for .NET 1.1, these days you'd use the .NET 2.0 Settings architecture for persistence. Note that the focus of this sample was the order in which properties are set when loading settings, rather than the details of how they're saved / restored.http://stackoverflow.com/questions/1209715/asp-net-c-caching-database-results-when-how-invalidate-on-per-record-basis/1229322#1229322Comment by Joe on ASP.NET C#: Caching Database Results, When/How Invalidate (on per-record basis)Joe2009-12-06T11:13:58Z2009-12-06T11:13:58Z"update the cache at the same time as the database is updated." - as described in my answer, it's better to simply remove from the cache <i>after</i> the database is updated.http://stackoverflow.com/questions/1839649/c-string-format-flag-or-modifier-to-lowercase-paramComment by Joe on C# string format flag or modifier to lowercase paramJoe2009-12-04T20:02:29Z2009-12-04T20:02:29Z" I can't see why just calling .tolower() or .toupper() on the string params is a problem" - for example, data binding.http://stackoverflow.com/questions/1832335/does-math-rounddouble-decimal-always-return-consistent-results/1833049#1833049Comment by Joe on Does Math.Round(double, decimal) always return consistent results.Joe2009-12-02T15:07:55Z2009-12-02T15:07:55ZSure, but I'm talking about using the same rounding method on two <i>different</i> values which will round to the "same" result. See astander's answer.http://stackoverflow.com/questions/1792911/storing-connection-strings-in-registry/1792949#1792949Comment by Joe on Storing Connection Strings in Registry?Joe2009-12-02T08:15:42Z2009-12-02T08:15:42Z... but don't forget that RegistryKey implements IDisposable, so that you should wrap each instantiation in a "using" statement. Something that is neglected in far too many MSDN samples...http://stackoverflow.com/questions/1828540/problems-with-datacontractserializer-how-to-correctly-serialize-objects-derivinComment by Joe on Problems with DataContractSerializer - how to correctly serialize objects deriving from List<T>?Joe2009-12-01T20:44:44Z2009-12-01T20:44:44ZThe assertion that is failing is based the Equals method whose implementation is omitted to save space. You'll have more chance of an answer if you can provide the implementation (or a simpler implementation that also fails).http://stackoverflow.com/questions/1810073/sql-server-convertnumeric18-0-fails-but-convertint-succeeds/1810152#1810152Comment by Joe on SQL Server CONVERT(NUMERIC(18,0), '') fails but CONVERT(INT, '') succeeds?Joe2009-12-01T05:56:35Z2009-12-01T05:56:35ZThe above won't work for all input strings, for example try @a='-' or @a='$'. See the article referenced in my answer.http://stackoverflow.com/questions/1819096/is-it-important-to-dispose-solidbrush-and-pen/1819313#1819313Comment by Joe on Is it important to dispose SolidBrush and Pen?Joe2009-11-30T13:16:36Z2009-11-30T13:16:36ZYes I agree. But in the linked example, this isn't possible, because Pens and Brushes only contain elements for a fixed number of predefined colors.http://stackoverflow.com/questions/1819096/is-it-important-to-dispose-solidbrush-and-pen/1819113#1819113Comment by Joe on Is it important to dispose SolidBrush and Pen?Joe2009-11-30T13:13:45Z2009-11-30T13:13:45ZI understand that they'll eventually be GC'd, but when? I wouldn't expect memory to grow, rather the number of handles used. And to test all cases I'd need to be sure to be creating brushes/pens of different colors. http://stackoverflow.com/questions/1819096/is-it-important-to-dispose-solidbrush-and-pen/1819115#1819115Comment by Joe on Is it important to dispose SolidBrush and Pen?Joe2009-11-30T13:11:19Z2009-11-30T13:11:19ZYes I understand that the GC will eventually kick in, but, since OnPaint can be called frequently, is there a risk that more than "a few" handles are "wasted".http://stackoverflow.com/questions/1819096/is-it-important-to-dispose-solidbrush-and-pen/1819125#1819125Comment by Joe on Is it important to dispose SolidBrush and Pen?Joe2009-11-30T13:10:21Z2009-11-30T13:10:21ZMy question isn't about the IDisposable pattern in general, I understand what it's for and why callers should generally call Dispose. See Edit to the question.http://stackoverflow.com/questions/1815492/c-net-how-to-determine-whether-an-exception-is-being-handled/1815540#1815540Comment by Joe on C#/.NET: How to determine whether an exception is being handled?Joe2009-11-29T14:01:08Z2009-11-29T14:01:08ZIf you do go down this path, take a look at the following blog first: <a href="http://geekswithblogs.net/akraus1/archive/2008/04/08/121121.aspx" rel="nofollow">geekswithblogs.net/akraus1/archive/…</a>