User Jeffrey L Whitledge - Stack Overflowmost recent 30 from stackoverflow.com2009-12-10T16:23:01Zhttp://stackoverflow.com/feeds/user/10174http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1874488/are-the-setvalue-getvalue-methods-of-system-array-thread-safe/1874621#18746210Answer by Jeffrey L Whitledge for Are the SetValue/GetValue methods of System.Array thread-safe?Jeffrey L Whitledge2009-12-09T15:24:08Z2009-12-09T15:24:08Z<p>In your example, the calls to <code>InternalSetValue(void *, object)</code> are being made to three different memory locations. Therefore, it should be thread-safe. The writes to those locations are not going bleed over into other locations, even if they are members of the same array.</p>
http://stackoverflow.com/questions/1843170/c-api-development-exception-handling/1843319#18433191Answer by Jeffrey L Whitledge for C# API Development Exception handlingJeffrey L Whitledge2009-12-03T22:10:24Z2009-12-03T22:10:24Z<p>There are two types of exceptions to consider (ignoring StackOverflowException, etc., which you can't do anything about anyway): </p>
<ol>
<li>Those that are caused by external issues (like file IO), which have to be handled.</li>
<li>Those that can always be avoided with properly validated input.</li>
</ol>
<p>It usually makes sense for the IO-type exceptions to be passed up the call stack unmodified, since there isn't anything you can really do about it anyway. Exceptions to this would be anticipated errors for which you might do retries, or asking the user what to do, if your API operates at the GUI level (which would be rather unusual).</p>
<p>Just be sure to document which exceptions of this type your API methods can throw.</p>
<p>Of the second type (exceptions that can always be prevented), these exceptions may be generated by your API on bad input, but should never be passed up the call-stack from the lower levels. Input to anything you call should be validated so that these errors do not occur, and if, for some reason, they can occur, then these exceptions should be wrapped up. Otherwise, the code that uses your API will have to deal with exceptions at the wrong level of abstraction.</p>
<p>And once again, be sure to document what sort of input will not generate exceptions, and what kinds of exceptions to expect if these rules are broken.</p>
<p>In all cases, throw exceptions that make sense to the user of your API, not the person programming the API itself.</p>
http://stackoverflow.com/questions/1843071/c-static-property-locking/1843137#18431371Answer by Jeffrey L Whitledge for C# Static Property LockingJeffrey L Whitledge2009-12-03T21:45:35Z2009-12-03T21:45:35Z<p>A static constructor may be your best bet here. A static constructor will block all threads that depend on it while it's running, and it will only run once. As you have the code here, the lock doesn't really do anything, and there are lots of ways that bad things can happen, including multiple Lists being initialized from XML at the same time. In fact, one thread could create a new List then lock and load a <em>different</em> list and then return a third list, depending on when the thread switching occurs.</p>
http://stackoverflow.com/questions/1822811/int-array-to-string/1829610#18296100Answer by Jeffrey L Whitledge for int array to stringJeffrey L Whitledge2009-12-01T23:11:54Z2009-12-01T23:11:54Z<p>The most effecient way is not to convert each int to a string, but rather create one string out of an array of chars. Then the garbage collection only has one new temp object to worry about.</p>
<pre><code>int[] arr = {0,1,2,3,0,1};
string result = new string(Array.ConvertAll<int,char>(arr, x => Convert.ToChar(x + 0x30)));
</code></pre>
http://stackoverflow.com/questions/1829271/replace-switch-case-with-pattern/1829316#18293161Answer by Jeffrey L Whitledge for Replace Switch/Case with PatternJeffrey L Whitledge2009-12-01T22:13:10Z2009-12-01T22:20:09Z<p>The key to this problem is making the objects stored in the dropDownList provide the parameter (either directly or by indexing into an array). Then the switch statement may be removed completely.</p>
<p>If the parameter is a property of the object that appears in the drop down list, then this will provide the value very efficiently.</p>
<p>If the values in the drop down list can provide a numeric index into an array of parameter values, then this will beat a series of string comparisons in terms of runtime efficiency.</p>
<p>Either of these options are cleaner, shorter, and easier to maintain than switching on a string.</p>
http://stackoverflow.com/questions/1829131/exception-handling-help/1829152#18291521Answer by Jeffrey L Whitledge for Exception handling helpJeffrey L Whitledge2009-12-01T21:46:31Z2009-12-01T21:46:31Z<p>Visual Studio has a remote debugging feature that is very nice. If you start the remote debugging host on the coworker's computer, then you can attach to that running process from within the IDE on your own machine. I have used this a couple of time with very good results.</p>
<p><a href="http://msdn.microsoft.com/en-us/library/y7f5zaaa%28VS.71%29.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/y7f5zaaa%28VS.71%29.aspx</a></p>
http://stackoverflow.com/questions/1810104/use-types-referenced-by-a-referenced-project-in-c/1810634#18106340Answer by Jeffrey L Whitledge for Use types referenced by a referenced project in C#Jeffrey L Whitledge2009-11-27T21:08:20Z2009-11-27T21:08:20Z<p>You might consider whether jumping levels like that is really what you want to do. In many of these cases, it's better for the garage to ask the car to turn down that damn noise, rather than accessing the radio directly.</p>
<p>It just depends on what makes sense for your system.</p>
<p>If the garage doesn't need to touch the radio directly, then the fact that the garage references the car and the car references the radio does not mean that garage needs to reference the radio.</p>
<p>But if the garage does need to mess with it, then it will need a reference.</p>
<p>Please be aware of the fact that skipping tiers is very often indicative of problems with the abstractions or the architecture. (Though skipping tiers may not be what is happening in this particular case.)</p>
http://stackoverflow.com/questions/1799984/finding-out-total-and-free-disk-space-in-net/1800173#18001731Answer by Jeffrey L Whitledge for Finding out total and free disk space in .NETJeffrey L Whitledge2009-11-25T21:43:32Z2009-11-25T21:43:32Z<p>This <em>may</em> not be what you want, but I'm trying to help.</p>
<pre><code>public static string DriveSizeAvailable(string path)
{
long count = 0;
byte toWrite = 1;
try
{
using (StreamWriter writer = new StreamWriter(path))
{
while (true)
{
writer.Write(toWrite);
count++;
}
}
}
catch (IOException)
{
}
return string.Format("There used to be {0} bytes available on drive {1}.", count, path);
}
public static string DriveSizeTotal(string path)
{
DeleteAllFiles(path);
int sizeAvailable = GetAvailableSize(path);
return string.Format("Drive {0} will hold a total of {1} bytes.", path, sizeAvailable);
}
</code></pre>
http://stackoverflow.com/questions/1798980/how-to-avoid-double-check-locking-when-adding-items-to-a-dictionary-object-in/1799222#17992220Answer by Jeffrey L Whitledge for How to avoid double check locking when adding items to a Dictionary<> object in .NET?Jeffrey L Whitledge2009-11-25T19:00:01Z2009-11-25T19:34:37Z<p>You might be able to buy a little bit of speed efficiency at the expense of memory. If you create an <em>immutable</em> array that lists all of the created Thingys and reference the array with a static variable, then you could check the existance of a Thingy outside of any lock, since immutable arrays are always thread safe. Then when adding a new Thingy, you can create a new array with the additional Thingy and replace it (in the static variable) in one (atomic) set operation. Some new Thingys may be missed, because of race conditions, but the program shouldn't fail. It just means that on rare occasions extra duplicate Thingys will be made.</p>
<p>This will not replace the need for duplicate checking when creating a new Thingy, and it will use a lot of memory resources, but it will not require that the lock be taken or held while creating a Thingy.</p>
<p>I'm thinking of something along these lines, sorta:</p>
<pre><code>private Dictionary<string, Thingey> Thingeys;
// An immutable list of (most of) the thingeys that have been created.
private string[] existingThingeys;
public Thingey GetThingey(Request request)
{
string thingeyName = request.ThingeyName;
// Reference the same list throughout the method, just in case another
// thread replaces the global reference between operations.
string[] localThingyList = existingThingeys;
// Check to see if we already made this Thingey. (This might miss some,
// but it doesn't matter.
// This operation on an immutable array is thread-safe.
if (localThingyList.Contains(thingeyName))
{
// But referencing the dictionary is not thread-safe.
lock (this.Thingeys)
{
if (this.Thingeys.ContainsKey(thingeyName))
return this.Thingeys[thingeyName];
}
}
Thingey newThingey = new Thingey(request);
Thiney ret;
// We haven't locked anything at this point, but we have created a new
// Thingey that we probably needed.
lock (this.Thingeys)
{
// If it turns out that the Thingey was already there, then
// return the old one.
if (!Thingeys.TryGetValue(thingeyName, out ret))
{
// Otherwise, add the new one.
Thingeys.Add(thingeyName, newThingey);
ret = newThingey;
}
}
// Update our existingThingeys array atomically.
string[] newThingyList = new string[localThingyList.Length + 1];
Array.Copy(localThingyList, newThingey, localThingyList.Length);
newThingey[localThingyList.Length] = thingeyName;
existingThingeys = newThingyList; // Voila!
return ret;
}
</code></pre>
http://stackoverflow.com/questions/1793616/why-doesnt-getchar-recognise-return-as-eof-in-windows-console/1793666#17936660Answer by Jeffrey L Whitledge for Why doesn't getchar() recognise return as EOF in windows console?Jeffrey L Whitledge2009-11-24T23:23:36Z2009-11-24T23:23:36Z<p>On Windows either a CTRL-Z or F6 will signal the end of a file.</p>
http://stackoverflow.com/questions/1793607/how-to-copy-a-list-to-a-new-list-or-retrieve-list-by-value-in-c/1793625#17936257Answer by Jeffrey L Whitledge for how to copy a list to a new list, or retrieve list by value in c#Jeffrey L Whitledge2009-11-24T23:16:44Z2009-11-24T23:16:44Z<pre><code>List<MyType> copy = new List<MyType>(original);
</code></pre>
http://stackoverflow.com/questions/1791359/c-interface-inheritance-getters-setters/1791414#17914143Answer by Jeffrey L Whitledge for C#: interface inheritance getters/settersJeffrey L Whitledge2009-11-24T16:58:09Z2009-11-24T16:58:09Z<p>If your goal is to make it clearer when reading vs. writing is allowed, then I would use separate getter and setter methods rather than properties.</p>
<pre><code>interface IBasicProps {
int GetPriority();
string GetName();
//... whatever
}
interface IBasicPropsWriteable:IBasicProps {
void SetPriority(int priority);
void SetName(string name);
//... whatever
}
</code></pre>
http://stackoverflow.com/questions/1791059/c-custom-2-dim-arrays-trouble/1791076#17910760Answer by Jeffrey L Whitledge for C#: Custom 2-dim arrays troubleJeffrey L Whitledge2009-11-24T16:08:33Z2009-11-24T16:08:33Z<p>The accessibility error is not related to the array creating. The most common scenerio for that error is a public method with a parameter that is of a private or internal type.</p>
http://stackoverflow.com/questions/1757942/interlocked-and-memory-barriers/1760967#17609670Answer by Jeffrey L Whitledge for Interlocked and Memory BarriersJeffrey L Whitledge2009-11-19T04:55:18Z2009-11-19T04:55:18Z<p>If <code>m_value</code> is not marked as <code>volatile</code>, then there is no reason to think that the value read in <code>Bar</code> is fenced. Compiler optimizations, caching, or other factors could reorder the reads and writes. Interlocked exchange is only helpful when it is used in an ecosystem of properly fenced memory references. This is the whole point of marking a field <code>volatile</code>. The .Net memory model is not as straight forward as some might expect.</p>
http://stackoverflow.com/questions/1749664/how-to-log-exceptions-in-windows-forms-application/1749836#17498360Answer by Jeffrey L Whitledge for How to log exceptions in Windows Forms ApplicationJeffrey L Whitledge2009-11-17T15:56:08Z2009-11-17T15:56:08Z<p>In response to "4. Any other suggestions?":</p>
<p>In your example code, a message box is displayed before logging the exception. I would recommend logging the exception before displaying the message, just in case the user sees the error message, panics, and goes on vacation without clicking "OK". It's a minor thing, but message boxes block the program indefinitely and should be used with discretion!</p>
http://stackoverflow.com/questions/1749462/when-should-we-create-a-new-method/1749727#17497271Answer by Jeffrey L Whitledge for When should we create a new method?Jeffrey L Whitledge2009-11-17T15:39:45Z2009-11-17T15:39:45Z<p>A method should do one thing, and do it well. It should do nothing more or less than what its name implies. A CustomerSave method should not also normalize the customer's address. </p>
<p>A method should be concerned with only one "level" of functionality. If more than one line of code appears in a CustomerSave method for each of the following: opening the database, logging changes, checking security, etc., then the code is operating at the wrong level, and new methods should be created for dealing with these things at the proper granularity.</p>
<p>A method should typically be very short. Only in special circumstances should a method spill over more than one screen. If a method is a hundred lines long, then something is very, very wrong.</p>
<p>Code should not be repetitive. Duplicate functionality should be placed in a method.</p>
<p>Methods should be designed so that typical kinds of changes can be made easily. If a small change needs to be made in dozens of places, then that signals repetitive code that should have been placed in a single method.</p>
http://stackoverflow.com/questions/1730107/convert-an-array-of-integers-for-use-in-a-sql-in-clause/1730327#17303270Answer by Jeffrey L Whitledge for Convert an array of integers for use in a SQL "IN" clauseJeffrey L Whitledge2009-11-13T16:30:41Z2009-11-13T16:30:41Z<pre><code>/// <summary>
/// Converts an array of integers into a string that may be used in a SQL IN expression.
/// </summary>
/// <param name="values">The array to convert.</param>
/// <returns>A string representing the array as a parenthetical comma-delemited list. If the array
/// is empty or missing, then "(null)" is returned.</returns>
public static string ToSqlInList(int[] values)
{
if (values == null || values.Length == 0)
return "(null)"; // In SQL the expression "IN (NULL)" is always false.
return string.Concat("(", string.Join(",", Array.ConvertAll<int, string>(values,x=>x.ToString())), ")");
}
</code></pre>
http://stackoverflow.com/questions/1728636/matlab-solving-equations-problem/1729080#17290800Answer by Jeffrey L Whitledge for MATLAB Solving equations problemJeffrey L Whitledge2009-11-13T12:58:51Z2009-11-13T12:58:51Z<p>x = 0, y = 0, z = 0 is the correct solution. This problem can be easily worked by hand.</p>
http://stackoverflow.com/questions/1703213/c-is-there-an-advantage-to-disposing-resources-in-reverse-order-of-their-alloca/1703262#17032621Answer by Jeffrey L Whitledge for C#: Is there an Advantage to Disposing Resources in Reverse Order of their Allocation?Jeffrey L Whitledge2009-11-09T19:42:16Z2009-11-09T19:47:26Z<p>If you are referring to the time the destructor on the objects gets called, then that's up the garbage collector, the programming can have very little influence over that, and it is explicity non-deterministic according to the language definition.</p>
<p>If you are referring to calling IDisposable.Dispose(), then that depends on the behavior of the objects that implement the IDisposable interface.</p>
<p>In general, the order doesn't matter for most Framework objects, except to the extent that it matters to the calling code. But if object A maintains a dependency on object B, and object B is disposed, then it could very well be important not to do certain things with object A.</p>
<p>In most cases, Dispose() is not called directly, but rather it is called implicitly as part of a using or foreach statement, in which case the reverse-order pattern will naturally emerge, according to the statement embedding.</p>
<pre><code>using(Foo foo = new Foo())
using(FooDoodler fooDoodler = new FooDoodler(foo))
{
// do stuff
// ...
// fooDoodler automatically gets disposed before foo at the end of the using statement.
}
</code></pre>
http://stackoverflow.com/questions/1693257/is-there-a-fairly-simple-way-for-a-script-to-tell-from-context-whether-her-is/1693363#16933631Answer by Jeffrey L Whitledge for Is there a fairly simple way for a script to tell (from context) whether "her" is a possessive pronoun?Jeffrey L Whitledge2009-11-07T15:13:49Z2009-11-07T15:13:49Z<p>I will address regex, since that is one of the tags. Regular expressions are insufficiently powerful for parsing human language, because regex does not do recursion, and all human lnguages are recursive.</p>
<p>When this fact is combined with the other ambiguities in English, such as the way many words can serve multiple functions in a sentense, I think that a reliable automated solution will be a very difficult and costly project.</p>
http://stackoverflow.com/questions/1684133/visual-c-publishing-without-installer/1684241#16842410Answer by Jeffrey L Whitledge for Visual C# publishing without installerJeffrey L Whitledge2009-11-05T22:56:08Z2009-11-05T22:56:08Z<p>Typically, you can just distribute whatever is in the bin/Release directory, and it should be fine, as long the target machine has the correct .Net Framework installed.</p>
http://stackoverflow.com/questions/1683706/when-are-two-enums-equal-in-c/1684063#16840632Answer by Jeffrey L Whitledge for When are two enums equal in C#?Jeffrey L Whitledge2009-11-05T22:23:05Z2009-11-05T22:23:05Z<p>Unlike Java, C# does not provide any facility for adding methods (such as operator==()) to an enum.</p>
<p>What I have done in the past when needing smarter enums is create an <code>XHelper</code> class (where <code>X</code> is the name of the enum), and I put all of the methods on it. Thus something like this:</p>
<pre><code>public static bool EnumAHelper.EqualsEnumB(EnumA enumA, EnumB enumB)
{
return (int)enumA == (int)enumB;
}
</code></pre>
<p>Though, I do not recall running into a case where I needed two different enums to signify the same thing.</p>
http://stackoverflow.com/questions/144283/what-is-the-difference-between-varchar-and-nvarchar/147302#1473024Answer by Jeffrey L Whitledge for What is the difference between varchar and nvarcharJeffrey L Whitledge2008-09-29T02:16:22Z2009-11-04T16:25:33Z<p>An nvarchar column can store any Unicode data. A varchar column is restricted to an 8-bit codepage. Some people think that varchar should be used because it takes up less space. I believe this is not the correct answer. Codepage incompatabilities are a pain, and Unicode is the cure for codepage problems. With cheap disk and memory nowadays, there is really no reason to waste time mucking around with code pages anymore.</p>
<p>All modern operating systems and development platforms use Unicode internally. By using nvarchar rather than varchar, you can avoid doing encoding conversions every time you read from or write to the database. Conversions take time, and are prone to errors. And recovery from conversion errors is a non-trivial problem.</p>
<p>If you are interfacing with an application that uses only ASCII, I would still recommend using Unicode in the database. The OS and database collation algorithms will work better with Unicode. Unicode avoids conversion problems when interfacing with <em>other</em> systems. And you will be preparing for the future. And you can always validate that your data is restricted to 7-bit ASCII for whatever legacy system you're having to maintain, even while enjoying some of the benifits of full Unicode storage.</p>
http://stackoverflow.com/questions/1671803/which-side-has-more-characters/1672105#16721051Answer by Jeffrey L Whitledge for which side has more charactersJeffrey L Whitledge2009-11-04T07:01:41Z2009-11-04T07:08:09Z<p>I hope this satisfies your requirements.</p>
<pre><code> /// <summary>
/// Determines whether a string has more characters to the left of the separator.
/// </summary>
/// <param name="a">An arbitrary string, possibly delimited into two parts.</param>
/// <param name="separator">The characters that partition the string.</param>
/// <returns>0 if left of the separator has more characters, otherwise returns 1.</returns>
/// <exception cref="ArgumentException">No separator was supplied.</exception>
public static int MoreCharactersLeftOfSeparator(string a, string separator)
{
if (string.IsNullOrEmpty(separator))
throw new ArgumentException("No separator was supplied.", "separator");
if (a == null)
return 1;
int separatorIndex = a.LastIndexOf(separator, StringComparison.Ordinal);
if (separatorIndex == -1)
return 1;
int charactersRight = a.Length - separatorIndex - separator.Length;
if (charactersRight >= separatorIndex)
return 1;
return 0;
}
</code></pre>
http://stackoverflow.com/questions/1671872/c-calling-a-structure-method-inside-a-non-default-structure-contructor/1672034#16720341Answer by Jeffrey L Whitledge for C# - Calling a structure method inside a non-default structure contructor Jeffrey L Whitledge2009-11-04T06:35:45Z2009-11-04T06:35:45Z<p>You could set each of the fields to zero before validating the inputs. This makes some sense because the default constructer will set them to zero anyway, so that's a case that has to be handled in your program anyway. Once the values are set, you can call whatever methods you want, even in the constructor.</p>
<p>But the correct solution is what everyone else is saying: make the range checks static methods. In fact, in this case they are pure functions (no side effects and operating only on the parameters rather than static or instance fields). Pure functions can always be static. And static pure functions are chocolate-covered-awesome from the perspectives of debugging, multi-threading, performance, etc.</p>
http://stackoverflow.com/questions/1652965/udp-multicast-performance-under-load/1653351#16533510Answer by Jeffrey L Whitledge for UDP Multicast Performance Under LoadJeffrey L Whitledge2009-10-31T03:56:07Z2009-10-31T03:56:07Z<p>I'm no expert on this, but it sounds like your bumping up against the capacity of your network. You may need to upgrade your hardware to get better throughput. But without knowing the size of the packets, the network bandwidth, or how many machines are trying to communicate, etc., that's just a guess.</p>
http://stackoverflow.com/questions/1653248/creating-a-catch-all-apptoolbox-class-is-this-a-bad-practice/1653334#16533341Answer by Jeffrey L Whitledge for Creating a Catch-All AppToolbox Class - Is this a Bad Practice?Jeffrey L Whitledge2009-10-31T03:44:29Z2009-10-31T03:44:29Z<p>My experience has been that utility functions seldom occur in isolation. If you need a method for formatting telephone numbers, then you will also need one for validating phone numbers, and parsing phone numbers. Following the YAGNI principle, you certainly wouldn't want to write such things until they're actually needed, but I think it's helpful to just go ahead and separate such functionality into individual classes. The growth of those classes from single methods into minor subsystems will then happen naturally over time. I have found this to be the easiest way to keep the code organized, understandable, and maintainable over the long term.</p>
http://stackoverflow.com/questions/480775/programmatically-obtaining-big-o-efficiency-of-code/480807#48080740Answer by Jeffrey L Whitledge for Programmatically obtaining Big-O efficiency of codeJeffrey L Whitledge2009-01-26T18:15:29Z2009-10-23T05:58:40Z<p>It sounds like what you are asking for is an extention of the Halting Problem. I do not believe that such a thing is possible, even in theory.</p>
<p>Just answering the question "Will this line of code ever run?" would be very difficult if not impossible to do in the general case.</p>
<p>Edited to add:
Although the general case is intractable, see here for a partial solution: <a href="http://research.microsoft.com/apps/pubs/default.aspx?id=104919" rel="nofollow">http://research.microsoft.com/apps/pubs/default.aspx?id=104919</a></p>
<p>Also, some have stated that doing the analysis by hand is the only option, but I don't believe that is really the correct way of looking at it. An intractable problem is still intractable even when a human being is added to the system/machine. Upon further reflection, I suppose that a 99% solution may be doable, and might even work as well as or better than a human.</p>
http://stackoverflow.com/questions/924929/parsing-source-code-unique-identifiers-for-different-languages/1392314#13923142Answer by Jeffrey L Whitledge for Parsing Source Code - Unique Identifiers for Different Languages?Jeffrey L Whitledge2009-09-08T06:37:21Z2009-09-08T06:37:21Z<p>Here is a simple way to do it. Just run the parser on every language. Whatever language gets the farthest without encountering any errors (or has the fewest errors) wins.</p>
<p>This technique has the following advantages:</p>
<ul>
<li>You already have most of the code necessary to do this.</li>
<li>The analysis can be done in parallel on multi-core machines.</li>
<li>Most languages can be eliminated very quickly.</li>
<li>This technique is very robust. Languages that might appear very similar when using a fuzzy analysis (baysian for example), would likely have many errors when the actual parser is run.</li>
<li>If a program is parsed correctly in two different languages, then there was never any hope of distinguishing them in the first place.</li>
</ul>
http://stackoverflow.com/questions/270005/in-the-visual-studio-sql-editor-how-do-i-get-rid-of-the-boxes1In the Visual Studio SQL editor, how do I get rid of the boxes?Jeffrey L Whitledge2008-11-06T19:46:21Z2009-07-16T18:06:09Z
<p>I usually create my SQL tables and stored procedures by writing a script inside Visual Studio. This works really well for me except for one simple annoyance: VS puts blue boxes around all the SQL queries and data-manipulation commands. The purpose of these boxes is to draw undue attention to the fact that VS thinks the query can be edited in “Query Builder.”</p>
<p>I don’t want to use Query Builder. I just want a nice, clean script that reflects my fantastic vision of what the DB engine should do. Blast it, Jim, I’m a programmer not a Microsoft Access hobbiest!</p>
<p>I do, however, like the syntax highlighting and source-control integration that VS provides.</p>
<p>So my question is this: How do I turn off the annoying blue boxes?</p>
http://stackoverflow.com/questions/1862881/c-sort-list-by-multiple-conditions/1862898#1862898Comment by Jeffrey L Whitledge on C# Sort List by multiple conditionsJeffrey L Whitledge2009-12-07T23:33:32Z2009-12-07T23:33:32ZComparion<T> should be slightly more performant, since it doesn't have to maintain and compare prior sort subgroup information, and it doesn't generate the multiplicity of objects necessary to support that infrastructure. While I agree that readability is king, I would probably go with the IComparable version if this functionality is a key part of the application and if no RDBMS were available to handle the reporting functions of the application.http://stackoverflow.com/questions/1843359/approach-question-regarding-generics-in-cComment by Jeffrey L Whitledge on Approach question regarding Generics in C#Jeffrey L Whitledge2009-12-04T15:28:59Z2009-12-04T15:28:59ZI'm sorry, I still don't see it. The example of what you would (kinda) like presupposes the constructor that you want to avoid. "return new T(xmlElement)" requires the repetitive constructor. I would really love to see an extended explanation of where this is headed, because I really feel like I'm missing something. Did you mean something like "T t = new T(); t.Id = xmlElement.GetElementValue(key); return t;" ? That would avoid writing the constructor, and move most of the stuff into a base class. But then I don't see what the problem is.http://stackoverflow.com/questions/1846930/what-is-the-difference-between-int-i-and-int-i/1847135#1847135Comment by Jeffrey L Whitledge on what is the difference between "int *i" and "int* i"?Jeffrey L Whitledge2009-12-04T14:16:03Z2009-12-04T14:16:03ZThis is what happens when you ask a programmer. People never ask what they really want to know!http://stackoverflow.com/questions/1846930/what-is-the-difference-between-int-i-and-int-iComment by Jeffrey L Whitledge on what is the difference between "int *i" and "int* i"?Jeffrey L Whitledge2009-12-04T14:10:51Z2009-12-04T14:10:51ZI prefer int /*/*/*/*/*/ i;http://stackoverflow.com/questions/1843359/approach-question-regarding-generics-in-cComment by Jeffrey L Whitledge on Approach question regarding Generics in C#Jeffrey L Whitledge2009-12-03T22:28:50Z2009-12-03T22:28:50ZI don't see the goal you are trying to accomplish. You would rather call "User user = element.ToParsedObject<User>();" or "User user = element.ToUser();" rather than "User user = new User(element);" ? What am I missing?http://stackoverflow.com/questions/1843071/c-static-property-locking/1843137#1843137Comment by Jeffrey L Whitledge on C# Static Property LockingJeffrey L Whitledge2009-12-03T21:48:41Z2009-12-03T21:48:41ZActually, now that I look at it again, it could even load a different list from the one that was locked, and if the loading is happening on the static variable, it could load different portions to multiple Lists!http://stackoverflow.com/questions/1841758/how-to-remove-punctuation-from-a-string-in-c/1841809#1841809Comment by Jeffrey L Whitledge on How to remove punctuation from a String in CJeffrey L Whitledge2009-12-03T18:56:49Z2009-12-03T18:56:49ZSearching for characters to replace will not make the algorithm exponential. Perhaps you are thinking it will change O(n) to O(n^2). This would be a geometric algorithm, not exponential (O(2^n)). But unless the characters to be replaced depends on the input in some way, the searching version will only multiply the algorithm's time by some constant (the number of such characters), which is still O(n) (though, obviously, a much less efficient O(n)).http://stackoverflow.com/questions/1829271/replace-switch-case-with-patternComment by Jeffrey L Whitledge on Replace Switch/Case with PatternJeffrey L Whitledge2009-12-01T22:29:26Z2009-12-01T22:29:26ZAre the things stored in the drop-down list user-generated? I wish I could see more of your code! There may be further opportunities for improvement here. The ToUpper() is signaling some red flags.http://stackoverflow.com/questions/1829271/replace-switch-case-with-patternComment by Jeffrey L Whitledge on Replace Switch/Case with PatternJeffrey L Whitledge2009-12-01T22:17:00Z2009-12-01T22:17:00ZWhat types of things are stored in the dropDownList? Could you make the list options an Enum? What type is the parameter?http://stackoverflow.com/questions/194484/whats-the-strangest-corner-case-youve-seen-in-c-or-net/195808#195808Comment by Jeffrey L Whitledge on What's the strangest corner case you've seen in C# or .NET?Jeffrey L Whitledge2009-11-25T22:23:20Z2009-11-25T22:23:20ZSomeday I shall write a program that depends on this behavior, and the demons of darkest hell will prepare a welcome for me. Bwahahahahaha!http://stackoverflow.com/questions/1799984/finding-out-total-and-free-disk-space-in-net/1800173#1800173Comment by Jeffrey L Whitledge on Finding out total and free disk space in .NETJeffrey L Whitledge2009-11-25T22:14:22Z2009-11-25T22:14:22ZThanks for the votes, guys! But please don't let me be a distraction. Anybody, got an answer with pinvoke, or something?http://stackoverflow.com/questions/1799997/project-euler-10-conundrumComment by Jeffrey L Whitledge on Project Euler #10 ConundrumJeffrey L Whitledge2009-11-25T21:31:16Z2009-11-25T21:31:16ZWhy not calculate it directly? Let's see, the sum of all integers is n * (n + 1) / 2...subtract composite multiples of two... n(n+1)/(2p)-p...um.... I'll leave the rest as an excersize. :-)http://stackoverflow.com/questions/731832/interview-question-ffn-n/931320#931320Comment by Jeffrey L Whitledge on Interview question: f(f(n)) == -nJeffrey L Whitledge2009-11-23T17:12:58Z2009-11-23T17:12:58Z@DrJokepu - Wow, after six months--jinx!http://stackoverflow.com/questions/731832/interview-question-ffn-n/931320#931320Comment by Jeffrey L Whitledge on Interview question: f(f(n)) == -nJeffrey L Whitledge2009-11-23T17:11:28Z2009-11-23T17:11:28ZThe question specified 32-bit signed integers. This solution does not work for two's-complement or one's-complement representations of the 32-bit signed integers. It will only work for sign-and-magnitude representations, which are very uncommon in modern computers (other than floating point numbers).http://stackoverflow.com/questions/1757942/interlocked-and-memory-barriers/1760967#1760967Comment by Jeffrey L Whitledge on Interlocked and Memory BarriersJeffrey L Whitledge2009-11-23T14:24:35Z2009-11-23T14:24:35ZVolatile is not an alternative to Interlocked.Exchange(), because it does not ensure atomic sequences of read and write operations. Volatile only ensures that the operations will not be reordered.