User Ash - Stack Overflowmost recent 30 from stackoverflow.com2009-12-06T04:14:23Zhttp://stackoverflow.com/feeds/user/5023http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1846587/execution-time-performance-of-code-in-class-created-using-reflection-versus-a-no1Execution-time performance of code in class created using reflection versus a 'normal' class.Ash2009-12-04T12:13:28Z2009-12-04T12:26:21Z
<p>Is the execution time (run-time) performance of code in a class that is loaded via reflection <em>identical</em> to the same code when the class is created using the new keyword?</p>
<p>I say yes. But I was discussing this with a colleague who believes that the reflection oriented code is always slower. </p>
<p>My view is that regardless of how the class was originally loaded/created, the performance will be identical because the JIT compiler does not care how a class was loaded. </p>
<p>Am I correct? Either way, I'd appreciate any references that can help clarify this.</p>
<p>(NB: I'm not talking about the performance of <em>creating</em> a class using reflection versus the new keyword. I'm referring to the actual code in methods of the class after it has been created.)</p>
http://stackoverflow.com/questions/1736444/using-the-controls-of-one-form-into-another/1801193#18011931Answer by Ash for Using The Controls Of One Form Into AnotherAsh2009-11-26T02:10:30Z2009-11-26T02:44:07Z<p>This question, or variations of it, as been asked many times on StackOverflow. I think it is caused by a misunderstanding about Forms and the Visual Studio designer.</p>
<ul>
<li><a href="http://stackoverflow.com/questions/1249468/how-to-transferring-objects-between-windows-forms-in-c">how-to-transferring-objects-between-windows-forms-in-c</a> </li>
<li><a href="http://stackoverflow.com/questions/1012631/how-to-call-a-form-when-there-are-3-forms-in-a-project-and-data-transfer-between">how-to-call-a-form-when-there-are-3-forms-in-a-project-and-data-transfer-between</a> </li>
<li><a href="http://stackoverflow.com/questions/394005/windows-application">windows-application</a> </li>
<li><a href="http://stackoverflow.com/questions/1433182/passing-variables-from-main-form-to-input-form">passing-variables-from-main-form-to-input-form</a> </li>
<li><a href="http://stackoverflow.com/questions/818930/how-to-pass-values-from-one-form-to-another">how-to-pass-values-from-one-form-to-another</a> </li>
<li><a href="http://stackoverflow.com/questions/1736444/using-the-controls-of-one-form-into-another">using-the-controls-of-one-form-into-another</a> </li>
</ul>
<p>A Form is just a standard class that happens to represent a visual window. It is completely reasonable to add your own private fields and public properties to a Form.</p>
<p>So, when you need to pass data between forms or even other parts of your application, simply create a new class (not a Form) that will contain this data and call it something like "ApplicationData". It is entirely up to you what properties and fields this class contains.</p>
<p>Then, for each Form that needs to access the data, add a public get/set property of type ApplicationData. Finally set this property to the ApplicationData object just before Showing each form.</p>
<p>The form can then get data from and update this object in any way it needs to. Because it is a reference type (ie class) all changes to the object are visible to any other form that uses the same object.</p>
<p>Here's rough example. Note, this code is indicative only:</p>
<pre><code>class ApplicationData{
private string _firstName;
public string FirstName;
{
get { return _firstName;; }
set { __firstName;=value; }
}
private string _lastName;
public string LastName;
{
get { return _lastName; }
set { __lastName=value; }
}
}
class ChildForm : Form
{
private ApplicationData _applicationData=null;
public ApplicationData AppData
{
get { return _applicationData; }
set { _applicationData=value; }
}
void Load_Form(object sender, EventArgs args)
{
txtFirstName.Text=AppData.FirstName;
txtLastName.Text=AppData.LastName;
}
void Form_Closing(object sender, EventArgs args)
{
AppData.FirstName=txtFirstName.Text;
AppData.LastName=txtLastName.Text;
}
}
class MainForm : Form
{
private ApplicationData _applicationData=new ApplicationData();
void Button_Click(object sender, EventArgs args)
{
ChildForm childForm=new ChildForm ();
ChildForm.AppData=_applicatonData;
ChildForm.ShowDialog();
string fullName=_applicatonData.LastName + " " + _applicatonData.FirstName
}
}
</code></pre>
<p>Some of the answers in other questions such as a publisher / subscriber design are really complete overkill for anything but very complex applications. Keeping it simple is a very important guideline to follow.</p>
<p>Of course it doesn't help that the Visual Studio designer makes it appear that all classes must be visually oriented and created from the toolbox or New Form option. This is simply incorrect. </p>
<p>The design pattern of creating and using an "ApplicationData" class is the first step towards separating your presentation from your content. It's a shame Visual Studio doesn't provide more guidance in this area.</p>
http://stackoverflow.com/questions/1796903/net-framework-built-in-interfaces-recommendations-when-building-a-custom-data-s2.NET Framework built-in interfaces, recommendations when building a custom data structure?Ash2009-11-25T13:27:51Z2009-11-25T13:47:06Z
<p>I'm implementing an AVL binary tree data structure in C# .NET 2.0 (possibly moving to 3.5). I've got it to the point where it is passing my initial unit tests without needing to implement any framework level interfaces. </p>
<p>But now, just looking through the FCL I see a whole bunch of interfaces, both non-generic and generic that I <em>could</em> implement to ensure my class plays nicely with language features and other data structures. </p>
<p>At the moment the only obvious choice (to me at least) is one of the Enumeration style interfaces to allow a caller to use the tree in a foreach loop and possibly with Linq later on. But which one (or more)? </p>
<p>Here are the interfaces I'm considering at present: </p>
<ul>
<li>IEnumerable and IEnumerable<code><T></code></li>
<li>IEnumerator and IEnumerator<code><T></code></li>
<li>IComparable and IComparable<code><T></code></li>
<li>IComparer and IComparer<code><T></code></li>
<li>ICollection and ICollection<code><T></code></li>
<li>IEquatable and IEquatable<code><T></code></li>
<li>IEqualityComparer and IEqualityComparer<code><T></code></li>
<li>ICloneable</li>
<li>IConvertible</li>
</ul>
<p>Are there any published guidelines, either online or in book form, that provide recommendations regarding which framework interfaces to implement and when? </p>
<p>Obviously for some interfaces, if you don't want to provide that functionality, just don't implement the entire interface. But it appears there are certain conventions in the FCL classes (such as Collection classes) that perhaps we should also follow when building custom data structures.</p>
<p>Ideally the recommendations would provide guidance on such questions as when to use IComparer or IEqualityComparer, IEnumerable or IEnumerator? Or, if you implement a generic interface, should you also implement the non-geneic interface? etc.. </p>
<p>Alternatively, if you have guidance to offer based on your own experiences, that would be equally useful.</p>
http://stackoverflow.com/questions/1780679/net-webbrowser-webclient-webrequest-httpwebrequest-argh/1780747#17807474Answer by Ash for .NET: WebBrowser, WebClient, WebRequest, HTTPWebRequest... ARGH!Ash2009-11-23T01:53:17Z2009-11-24T08:44:05Z<p><strong>WebBrowser</strong> is actually in System.Windows.Forms and is a visual control that you can add to a form. It is primarily a wrapper around the Internet Explorer browser (MSHTML). It allows you to easily display and interact programmatically with a web page. You call the Navigate method passing a web URL, wait for it to complete downloading and display and then interact with the page using the object model it provides.</p>
<p><strong>HttpWebRequest</strong> is a concrete class that allows you to request in code any sort of file over HTTP. You usually receive it as a stream of bytes. What you do with it after that is up to your application.</p>
<p><strong>HttpWebResponse</strong> allows you to process the response from a web server that was previously requested using HttpWebRequest.</p>
<p><strong>WebRequest</strong> and <strong>WebResponse</strong> are the abstract base classes that the HttpWebRequest and HttpWebResponse inherit from. You can't create these directly. Other classes that inherit from these include Ftp and File classes.</p>
<p><strong>WebClient</strong> I have always seen as a nice helper class that provides simpler ways to, for example, download or upload a file from a web url. (eg DownloadFile and DownloadString methods). I have heard that it actually uses HttpWebRequest / HttpWebResponse behind the scenes for certain methods.</p>
<p>If you need more fine grained control over web requests and responses, HttpWebRequest / HttpWebResponse are probably the way to go. Otherwise WebClient is generally simpler and will do the job.</p>
http://stackoverflow.com/questions/1780211/how-does-the-apple-itunes-web-site-launch-the-itunes-application-on-my-computer-w/1780828#17808280Answer by Ash for How does the Apple iTunes web site launch the iTunes application on my computer when I click the blue "Launch iTunes" button?Ash2009-11-23T02:30:48Z2009-11-23T02:30:48Z<p>In Windows this is called a Pluggable Protocol Handler. <a href="http://www.codeproject.com/KB/IP/DataProtocol.aspx" rel="nofollow">This article on CodeProject</a> shows how to implement a pluggable protocol handler on Windows.</p>
<p>Note, this is more involved then just registering a new protocol in the registry, such as myprotocol:// and having it start a specific exe whenever a myprotocol:// anchor is clicked. </p>
<p>It actually allows your application to receive and process the request and to create response data dynamically. If your protocol will also be called programmatically this is usually important.</p>
<p>This may be overkill for your situation however it is handy to know about.</p>
http://stackoverflow.com/questions/1376965/when-to-use-a-sortedlisttkey-tvalue-over-a-sorteddictionarytkey-tvalue/1754080#17540800Answer by Ash for When to use a SortedList<TKey, TValue> over a SortedDictionary<TKey, TValue>?Ash2009-11-18T06:38:44Z2009-11-18T06:38:44Z<p>I'm not sure how accurate the MSDN documentation is on SortedList and SortedDictionary. It seems to be saying both are implemented using a binary search tree. But if the SortedList uses a binary search tree, why would it be much slower on additions than SortedDictionary?</p>
<p>Anyway, here are some performance test results. </p>
<p>Each test operates on a SortedList / SortedDictionary containing 10,000 int32 keys. Each test is repeated 1.000 times (Release build, Start without Debugging). </p>
<p>The first group of tests add keys in sequence from 0 to 9,999. The second group of tests add random shuffled keys between 0 to 9,999 (every number is added exactly once).</p>
<pre><code>***** Tests.PerformanceTests.SortedTest
SortedDictionary Add sorted: 4411 ms
SortedDictionary Get sorted: 2374 ms
SortedList Add sorted: 1422 ms
SortedList Get sorted: 1843 ms
***** Tests.PerformanceTests.UnsortedTest
SortedDictionary Add unsorted: 4640 ms
SortedDictionary Get unsorted: 2903 ms
SortedList Add unsorted: 36559 ms
SortedList Get unsorted: 2243 ms
</code></pre>
<p>As with any profiling, the important thing is the relative performance, not the actual numbers. </p>
<p>As you can see, on sorted data the sorted list is faster than the SortedDictionary. On unsorted data the SortedList is slightly quicker on retrieval, but about 9 times slower on adding.</p>
<p>If both are using binary trees internally, it is quite surprising that the Add operation on unsorted data is so mcuh slower for SortedList. It is possible that sorted list may also be adding items to a sorted linear data structure at the same time, which would slow it down. </p>
<p>However, you would expect the memory usage of a SortedList to be equal or greater than or at least equal to a SortedDictionary. But this contradicts what the MSDN documentation says.</p>
http://stackoverflow.com/questions/1740245/what-amount-of-documentation-is-needed-for-a-non-trivial-one-man-software-project/1740363#17403630Answer by Ash for What amount of documentation is needed for a non-trivial one-man software projectAsh2009-11-16T06:07:46Z2009-11-16T06:07:46Z<p>As an alternative to documentation intended to describe the application design, ie. how it works, I would recommend writing unit tests. This may not seem obvious at first, but I have found this has helped me out in describing code I myself wrote a while ago, but did not want the overhead of formal written documentation.</p>
<p>The unit tests themselves provide good examples of how the code is to be used, and if you have written decent tests, can show subtleties in the usage that may be awkward to describe in written documentation.</p>
<p>You say you are working in a one man situation, therefore unit tests are an even better fit as they are executable code themselves and are kept right alongside your application code in a version control system. </p>
<p>If you leave the job, unit tests are going to be more valuable to your replacement than written documentation because they can actually see the code running and get a better feel for how it can be used.</p>
<p>Unit tests are just code that test other code, so there is also a better chance (than written documentation) that they will be kept up to date by developers as time advances.</p>
http://stackoverflow.com/questions/1740133/7-1-7-10-ordering-numbers/1740285#17402850Answer by Ash for 7.1 < 7.10 - ordering numbersAsh2009-11-16T05:44:27Z2009-11-16T05:44:27Z<p>You don't say what you're actually using these numbers for, but if it's for versioning you should look at using the <a href="http://msdn.microsoft.com/en-us/library/system.version%5Fmembers.aspx" rel="nofollow">Version class</a> in your .NET code.</p>
<p>That way you get all the benefits of the built in class (comparisons etc) and when you need to store them in a database, call Version.ToString() to get the result as a string. This can then be easily stored as a varchar field. </p>
<p>To get a previously stored version back from the database, retrieve the varchar field and then pass it as a string parameter to the Version class constructor.</p>
<p>You could also use the Version.Major, Version.Minor properties to store and retrieve the values in separate integer database fields, if you prefer.</p>
http://stackoverflow.com/questions/1727271/manually-implementing-high-performance-algorithms-in-net6Manually implementing high performance algorithms in .NETAsh2009-11-13T05:18:58Z2009-11-14T15:47:54Z
<p>As a learning experience I recently tried implementing <a href="http://www.cs.princeton.edu/~rs/talks/QuicksortIsOptimal.pdf" rel="nofollow">Quicksort with 3 way partitioning</a> in C#.</p>
<p>Apart from needing to add an extra range check on the left/right variables before the recursive call, it appears to work quite well.</p>
<p>I knew beforehand that the framework provides a <a href="http://msdn.microsoft.com/en-us/library/b0zbh7b6.aspx" rel="nofollow">built-in Quicksort implementation</a> in List<>.Sort (via Array.Sort). So I tried some basic profiling to compare performance. Results: The built-in List<>.Sort method, operating on the same lists, performs about 10 times faster than my own manual implementation.</p>
<p>Using reflector, I found that the actual sorting in List<>.Sort is implemented in external code, not IL (in a function named tryszsort()).</p>
<p>Looking at my own Quicksort implementation I would expect that replacing the recursive calls with iteration might give some improvement. Also, disabling array bounds checking (if possible) could also give some benefits. Maybe this would get some way closer to the built-in implementation but I'm not confident.</p>
<p>So my question: Is it realistic to expect performance in an optimised algorithm (written in .NET IL, jitted to native code) can compete with performance of an externally implemented algorithm? </p>
<p>Once again, I realise Quicksort is provided as part of the framework, this was just a learning experience for me. However there are also many algorithms (CRC32 comes to mind) that are not provided, but still could be of much value to many applications. Here's a related question regarding <a href="http://stackoverflow.com/questions/945641/why-is-this-crc32-implementation-in-c-so-slow">implementing CRC32 in .NET</a> and performance issues.</p>
<p>So if you need to implement such an algorithm in .NET, what are the major performance considerations to understand, so that your algorithm can at least approach the performance of external code?</p>
<p>[Update]</p>
<p>I have improved execution speed to within about 10% of the built in Array.Sort by changing the algorithm to operate on a simple array of Int, instead of List. In Reflector, I can see this avoids a Callvirt operation on every get or set on the list. I thought this might improve things, but I'm surprised by how much.</p>
http://stackoverflow.com/questions/70402/why-is-quicksort-better-than-mergesort/1727198#17271980Answer by Ash for Why is quicksort better than mergesort?Ash2009-11-13T04:53:23Z2009-11-13T04:53:23Z<p>"and yet most people use Quicksort instead of Mergesort. Why is that?"</p>
<p>One psychological reason that has not been given is simply that Quicksort is more cleverly named. ie good marketing. </p>
<p>Yes, Quicksort with triple partioning is probably one of the best general purpose sort algorithms, but theres no getting over the fact that "Quick" sort sounds much more powerful than "Merge" sort.</p>
http://stackoverflow.com/questions/1725987/set-clientrectangle-in-custom-form-in-c/1726057#17260570Answer by Ash for Set ClientRectangle in custom form in C#Ash2009-11-12T23:11:42Z2009-11-12T23:11:42Z<p>As you are responsible for painting the entire form, it is probably simplest to define your own content Rectangle that is positioned ,say, 10 pixels in from the top/left of the form and has a width/height 20 pixels less then the form width/height.</p>
<p>Then, in the control Paint event, first draw your border area as normal, then call Graphics.Translate(10,10) and then draw the actual content.</p>
http://stackoverflow.com/questions/1695288/getting-the-current-time-in-milliseconds-from-the-system-clock-in-windows/1695297#16952971Answer by Ash for Getting the current time (in milliseconds) from the system clock in Windows?Ash2009-11-08T03:37:35Z2009-11-08T03:37:35Z<p>Depending on the needs of your application there are six common options. This <a href="http://www.ddj.com/windows/184416651" rel="nofollow">Dr Dobbs Journal article</a> will give you all the information (and more) you need on choosing the best one.</p>
<p>In your specific case, from this article:</p>
<blockquote>
<p>GetSystemTime() retrieves the current
system time and instantiates a
SYSTEMTIME structure, which is
composed of a number of separate
fields including year, month, day,
hours, minutes, seconds, and
milliseconds.</p>
</blockquote>
http://stackoverflow.com/questions/17125/what-are-real-life-applications-of-yield/1692705#16927050Answer by Ash for What are real life applications of yield?Ash2009-11-07T11:05:37Z2009-11-07T11:05:37Z<p>I realise this is an old question (pre Jon Skeet?) but I have been considering this question myself just lately. Unfortunately the current answers here (in my opinion) don't mention the most obvious advantage of the yield statement.</p>
<p>The biggest benefit of the yield statement is that it allows you to iterate over very large lists with much more efficient memory usage then using say a standard list.</p>
<p>For example, let's say you have a database query that returns 1 million rows. You could retrieve all rows using a DataReader and store them in a List, therefore requiring list_size * row_size bytes of memory.</p>
<p>Or you could use the yield statement to create an Iterator and only ever store one row in memory at a time. In effect this gives you the ability to provide a "streaming" capability over large sets of data. </p>
<p>Moreover, in the code that uses the Iterator, you use a simple foreach loop and can decide to break out from the loop as required. If you do break early, you have not forced the retrieval of the entire set of data when you only needed the first 5 rows (for example).</p>
<p>Regarding:</p>
<pre><code>Ideally some problem that cannot be solved some other way
</code></pre>
<p>The yield statement does not give you anything you could not do using your own custom iterator implementation, but it saves you needing to write the often complex code needed. There are very few problems (if any) that can't solved more than one way.</p>
<p>Here are a couple of more recent questions and answers that provide more detail:</p>
<p><a href="http://stackoverflow.com/questions/384392/yield-keyword-value-added">http://stackoverflow.com/questions/384392/yield-keyword-value-added</a></p>
<p><a href="http://stackoverflow.com/questions/317619/is-yield-useful-outside-of-linq">http://stackoverflow.com/questions/317619/is-yield-useful-outside-of-linq</a></p>
http://stackoverflow.com/questions/1672339/how-to-create-a-standalone-self-contained-setup-program-written-in-c/1672388#16723881Answer by Ash for How to create a standalone, self-contained setup program written in C#?Ash2009-11-04T08:32:16Z2009-11-04T08:32:16Z<p>Just create a standard Visual Studio install project containing just a single <a href="http://msdn.microsoft.com/en-us/library/d9k65z2d.aspx" rel="nofollow">custom install action</a>. </p>
<p>This is actually a standard .NET dll assembly where you can run any code you require to install and un-install your application.</p>
<p>It exists for exactly the reasons you mention, ie when your app. requires more complex installation and uninstallation steps then the standard installer provides.</p>
http://stackoverflow.com/questions/519200/beginners-guide-to-3d-graphics-programming6Beginner's guide to 3D graphics programmingAsh2009-02-06T05:18:10Z2009-11-02T19:49:21Z
<p>What are the best guides / tutorials / books / websites for someone with minimal experience (or none) in the world of 3D graphics programming?</p>
<p>I realise that the fundamentals of 3D graphics and mathematics apply across platform specific 3D library implementations such as OpenGL, DirectX, WPF etc..</p>
<p>Therefore it would be useful if answers would explain if they focus on a specific library implementation, on the fundamentals, or maybe both.</p>
<p>Rationale for for asking this question: </p>
<p>With Windows Presentation Foundation (WPF) 3D on the scene, it's realistic for many programmers to now seriously consider using 3D for their applications, where this would have been almost impossible even a few years ago. Also, I'm sure there are many programmers out there, like me, who find the leap from 2D to 3D a very big one.</p>
http://stackoverflow.com/questions/1643365/why-no-love-for-sql/1644888#16448880Answer by Ash for Why no love for SQL?Ash2009-10-29T16:19:39Z2009-10-29T16:19:39Z<p>I've found that database abstraction layers exist not to isolate you from actual SQL itself, but the sometimes primitive and difficult to maintain database "programming languages" that have grown up around it.</p>
<p>I have a SQL Server background so I'm primarily referring to Transact SQL and stored procedures. </p>
<p>In many peoples minds SQL is (unfairly) lumped together with such things as 1000 line stored procedures that call other stored procedures and create side effects all over the place. This maintenance nightmare then greatly exacerbates difficulty in first isolating and then understanding actual SQL statements.</p>
http://stackoverflow.com/questions/1643532/c-libraries-with-hidden-gems/1643732#16437322Answer by Ash for C# libraries with hidden gemsAsh2009-10-29T13:27:33Z2009-10-29T13:27:33Z<p>The entire text editing component in SharpDevelop is re-usable in your own applications. See <a href="http://www.codeproject.com/KB/cs/ICSharpCodeCore.aspx" rel="nofollow">this article</a> for more information.</p>
<p>In fact the whole <a href="http://www.icsharpcode.net/OpenSource/SD/" rel="nofollow">SharpDevelop</a> project is full of useful features such as regular expression support, profiling, debugger, add-ins etc, that you can learn just by looking at the source and/or referencing assemblies in your projects.</p>
http://stackoverflow.com/questions/1642659/is-it-more-efficient-to-compare-ints-and-ints-or-strings-and-strings/1642721#16427214Answer by Ash for Is it more efficient to compare ints and ints or strings and stringsAsh2009-10-29T10:20:08Z2009-10-29T10:53:28Z<p>A few comments mentioned running a profiling tool to prove which has better performance. </p>
<p>This is a ok, but the simplest way to check performance of specific statements is to put them in a loop and use the Stopwatch class.</p>
<p>Jeff Atwood asked about making this sort of timing even simpler in <a href="http://stackoverflow.com/questions/232848/wrapping-stopwatch-timing-with-a-delegate-or-lambda">this question</a>. In that question and answer you will also find some good code examples and background details.</p>
<p>Heres a very simple working example:</p>
<pre><code> System.Diagnostics.Stopwatch sw=new System.Diagnostics.Stopwatch();
int a = 5;
string b = "5";
sw.Start();
for (int i=0;i<1000000;i++)
{
if(a == int.Parse(b))
{
}
}
sw.Stop();
Console.WriteLine("a == int.Parse(b) milliseconds: " + sw.ElapsedMilliseconds);
sw.Reset();
sw.Start();
for (int i=0;i<1000000;i++)
{
if(a.ToString() == b)
{
}
}
sw.Stop();
Console.WriteLine("a.ToString() == b milliseconds: " + sw.ElapsedMilliseconds);
</code></pre>
<p>On my computer it outputs:</p>
<p>a == int.Parse(b) milliseconds: 521</p>
<p>a.ToString() == b milliseconds: 697</p>
<p>So in this simple scenario int.Parse() is slightly faster, but not enough to really worry about.</p>
http://stackoverflow.com/questions/1641633/what-does-front-office-back-office-programmer-position-mean/1641676#16416761Answer by Ash for What does Front Office/Back Office programmer position mean?Ash2009-10-29T04:55:05Z2009-10-29T04:55:05Z<p>In my experience these terms are not just used in trading companies. More generally:</p>
<p>Back office programmers: </p>
<p>Develop "enterprise applications" and other software that is used by the company internally to perform day to day company business (eg. ERP systems: Accounting, HR, Inventory etc).</p>
<p>Front office programmers:</p>
<p>Develop applications and software actually used by the customers of the company or other external organisations.</p>
http://stackoverflow.com/questions/1629615/is-it-okay-if-my-unit-tests-content-1-2-methods-per-class/1629647#16296476Answer by Ash for Is it okay if my unit tests content 1-2 methods per class?Ash2009-10-27T09:30:22Z2009-10-27T09:37:58Z<p>Don't get hung up on the number of methods. Just think about the ways in which your code could fail and add tests, preferably as separate methods, as you think of them.</p>
<p>The reason for separate methods is mostly to allow each test to be focused on just one aspect of your code and therefore keeping the test code short and simple to understand. </p>
<p>It's also acceptable to have a test method perform a number of Assertions, but once again these assertions should be checking a similar aspect of your code. </p>
<p>In some cases test code may need to be more complex ie. longer methods with calls to helper methods, but in general it is often possible to avoid this. </p>
<p>A good practical book that I've read on unit testing is <a href="http://www.pragprog.com/titles/utc2/pragmatic-unit-testing-in-c-with-nunit" rel="nofollow">Pragmatic Unit Testing in C# with nUnit</a>. It provides handy guidance on many questions such as this.</p>
http://stackoverflow.com/questions/1629391/how-to-generate-a-unique-hash-for-a-url/1629557#16295571Answer by Ash for How to generate a unique hash for a URL ?Ash2009-10-27T09:09:10Z2009-10-27T09:09:10Z<p>While CRC32 produces a maximum 2^32 values regardless of your input and so will not avoid conflicts, it is still a viable option for this scenario.</p>
<p>It is fast, so if you generate filename that conflicts, just add/change a character to your URL and simply re-calc the CRC. </p>
<p>4.3 billion possible checksums mean the likelihood of a filename conflict, when combined with the original filename, are going to be so low as to be be unimportant in normal situations.</p>
<p>I've used this approach myself for something similar and was pleased with the performance.
See <a href="http://www.cl.cam.ac.uk/research/srg/bluebook/21/crc/node6.html#SECTION00060000000000000000" rel="nofollow">Fast CRC32 in Software.</a> </p>
http://stackoverflow.com/questions/1628157/is-there-any-way-to-write-c-code-without-either-the-net-framework-or-mono/1628179#1628179-1Answer by Ash for Is there any way to write C# code without either the .NET framework or Mono?Ash2009-10-27T00:51:59Z2009-10-27T00:58:53Z<p>A good scripting style approach that uses C# is <a href="http://www.csscript.net/" rel="nofollow">CS-SCript</a> . However this still requires the .NET framework, it just let's you write C# without worrying about compiling it yourself. For example, it allows you to write a plain CS file containing C# code and then run it by simply double clicking on it in windows explorer. It still compiles it and uses the framework behind the scenes.</p>
<p>To write C# without the dependency on the framework at all, you would need a .NET linker. Microsoft do not provide one with .NET but there are a number of commercial options. Search for Remotesoft or Xenocode in google. Joel Spolsky <a href="http://www.joelonsoftware.com/articles/PleaseLinker.html" rel="nofollow">wrote about the need for this</a> a few years ago now.</p>
<p>In these days of Vista and Windows 7 where .NET 3+ is provided as part of the OS, its becoming more debatable as to the need for a linker for development.</p>
http://stackoverflow.com/questions/1624671/substitute-the-timer/1624717#16247174Answer by Ash for Substitute the timer.Ash2009-10-26T13:15:15Z2009-10-26T14:02:41Z<p>You should look into the .NET Asynchronous Programming Model. It's much simpler then it sounds. You simply create a delegate to a method that you want to run asynchronously. Then call BeginInvoke on the delegate and your method is automatically run on a background thread.</p>
<p>In the asynchronous method, if you need to update the UI, you must use Control.Invoke/BeginInvoke on the relevant form or control. </p>
<p>Also, if the asynchronous method needs to return some result to the UI thread, you will need to utilise the IAsyncResult (returned from BeginInvoke) and the EndInvoke method. </p>
<p>See the article <a href="http://msdn.microsoft.com/en-us/library/2e08f6yc.aspx" rel="nofollow">Calling Synchronous Methods Asynchronously</a> for more details.</p>
<p>On the other hand, if you're just looking for an equivalent to the javascript method window.settimeout() in Windows.Forms the following avoids threads entirely by wrapping the standard Timer in a re-usable method:</p>
<pre><code>public void SetTimeout(EventHandler doWork, int delayMS)
{
System.Windows.Forms.Timer timer = new System.Windows.Forms.Timer();
timer.Interval = delayMS;
timer.Tick += delegate(object s, EventArgs args) { timer.Stop(); };
timer.Tick += doWork;
timer.Start();
}
</code></pre>
<p>then to call it:</p>
<pre><code> SetTimeout(delegate { YourMethod(); }, 100);
</code></pre>
<p>Just like the Timer you drag onto a form, YourMethod() is run on the UI thread by the form message loop. Therefore you do not need to worry about BeginInvoke/Invoke at all.</p>
http://stackoverflow.com/questions/203616/why-does-c-not-provide-the-c-style-friend-keyword16Why does C# not provide the C++ style 'friend' keyword?Ash2008-10-15T03:23:43Z2009-10-23T13:01:03Z
<p>The C++ friend keyword allows a class A to designate class B as it's friend. This allows Class B to access the private/protected members of class A.</p>
<p>I've never seen or read anything as to why this was left out of C# (and VB.NET). Most answers to this <a href="http://stackoverflow.com/questions/17434/when-should-you-use-friend-in-c">earlier StackOverflow question</a> seem to be saying it is a useful part of C++ and there are good reasons to use it. I'd have to agree.</p>
<p>Another <a href="http://stackoverflow.com/questions/200079/inheritance-trees-and-protected-constructors-in-c#200117">recent question</a> seems to me to be really asking how to do something similar to friend in a C# application. While the answers generally revolve around nested classes, it doesn't seem quite as elegant as using the friend keyword.</p>
<p>The original <a href="http://rads.stackoverflow.com/amzn/click/0201633612" rel="nofollow">Design Patterns book</a> uses the friend keyword quite often throughout its examples.</p>
<p>Why is friend missing from C#, and what is the "best practice" way (or ways) of simulating it in C#?</p>
<p>(By the way, the "internal" keyword is not the same thing, it allows ALL classes within the entire assembly to access internal members, friend allows you to give access to just one other class.) </p>
http://stackoverflow.com/questions/1604302/c-display-loading-1-100-within-4-seconds/1604337#16043370Answer by Ash for C# - Display loading 1-100% within 4 seconds.Ash2009-10-22T00:08:23Z2009-10-22T00:08:23Z<p>A timer with the interval set to say 100 milliseconds would be the simplest approach. Keep a count of the number of times the timer event is called and update the progress bar by 2.5 percent each tick.</p>
<p>While this would work, I'd say that a progress bar is not ideal for this situation. Instead just an animated graphic would be better as it gives an indication that your program is starting up, but does not mislead like a progress bar can. </p>
<p>I think Microsoft regularly make this mistake of using misleading progress bars in certain applications.</p>
http://stackoverflow.com/questions/1593079/develop-an-application-similar-to-windows-explorer/1593164#15931640Answer by Ash for develop an application similar to windows explorerAsh2009-10-20T08:26:48Z2009-10-20T08:26:48Z<p>I'm not sure the .NET Directory classes hook in to higher performance operating system services (WinAPI) to retrieve files.</p>
<p>For example I wrote a simple app. to list files and folders in a given directory in .NET. When I pointed this to say C:\Windows\System32 (containing about 2300 files), my application takes >5 seconds to retrieve all files, where-as windows explorer does this in less then a second.</p>
<p>This may not be an issue for you, but it is surprising. If anyone knows why or how to improve this performance I'm interested to hear.</p>
http://stackoverflow.com/questions/1437532/good-online-library-of-common-file-formats5Good online library of common file formats.Ash2009-09-17T08:42:24Z2009-10-19T11:24:03Z
<p>Is there a good online library site that brings together, in one place, the specifications of various file common formats such as PNG, MP3, 7Z, SVG, PDF, DOC and so on?</p>
<p>By "good" I mostly mean:</p>
<ul>
<li>Extensive. </li>
<li>Up to date.</li>
<li>Tips and guidance.</li>
<li>Free.</li>
</ul>
<p>I have in mind something the equivalent of <a href="http://www.pinvoke.net" rel="nofollow">http://www.pinvoke.net</a>, but for file specifications.</p>
http://stackoverflow.com/questions/1586166/career-killer-nhibernate-oop-design-patterns-domain-driven-design-test-driv/1586864#15868641Answer by Ash for Career Killer? Nhibernate, OOP, Design Patterns, Domain Driven Design, Test Driven Development, IoC, MVCAsh2009-10-19T03:48:17Z2009-10-19T03:48:17Z<p>I think changing to Java or some other platform because of a view that they "do it right" is risky. ie The grass is always greener. As someone with similar experiences, I am definitely sticking with .NET.</p>
<p>I'm tipping that, in many Java shops, the application of good design, testing and development approaches didn't just happen magically. It was probably initiated by an experienced architect or developer just like you (or me) who had the experience to be able to see beyond the current project.</p>
<p>It does appear that the Java culture in general seems to encourage a focus on good design and testing as well as coding. However there is no technical reason why these same focuses can't be applied to .NET projects. </p>
<p>Non technical reasons such as culture and deadlines definitely cause problems, however Java projects suffer from exactly the same problems. Cultural issues in Java shops are often at the other extreme can occur (i.e. "never use stored procedures" even when they are the best choice).</p>
<p>That's not to say making change is easy. But I think having good a relationship with management, demonstrating by example, and basic perseverance are probably the most important factors in helping to improve the situation.</p>
<p>From a career perspective, it is completely reasonable to leave a company that just doesn't value your experience or ability to see the bigger picture, regardless of the technologies used. There are of course many practical considerations (i.e. having another job to go to) but with some companies, if you feel this way, you're far better off moving on.</p>
http://stackoverflow.com/questions/1575889/hire-or-no-hire/1575918#15759185Answer by Ash for Hire or No Hire ?Ash2009-10-16T00:49:02Z2009-10-16T00:49:02Z<p>You only need one question:</p>
<p>Thanks for attending this interview. We feel your entire career and work history can be summed up in 3 questions. </p>
<p>So, do you still want to work for us?</p>
http://stackoverflow.com/questions/1557763/net-component-to-view-and-annotate-documents-and-images/1557857#15578571Answer by Ash for .NET component to view and annotate documents and imagesAsh2009-10-13T01:47:15Z2009-10-13T01:47:15Z<p>Only a technology like Flash or Silverlight would be able to approach providing that functionality. The biggest benefits would be avoid cross-browser/platform issues and decent security. </p>
<p>Also, I would be guessing that if Flash/Silverlight components are available to do this, they would not be cheap due to the licensing of Adobe and Microsoft document formats etc.</p>
<p>Standard .NET custom/user controls are simply not an option as they generate HTML based user interfaces.</p>
<p>Sorry I don't have any more specific suggestions.</p>
http://stackoverflow.com/questions/1840847/can-someone-copyright-a-sql-query/1840919#1840919Comment by Ash on Can someone copyright a SQL query?Ash2009-12-05T03:24:35Z2009-12-05T03:24:35Z"Somewhat libellous". Sorry, how does libel come into it considering the query writer is <i>completely</i> anonymous? I find the strong comments very interesting. Seems to have hit a raw nerve.http://stackoverflow.com/questions/1846587/execution-time-performance-of-code-in-class-created-using-reflection-versus-a-no/1846617#1846617Comment by Ash on Execution-time performance of code in class created using reflection versus a 'normal' class.Ash2009-12-04T12:30:01Z2009-12-04T12:30:01ZInteresting point about security checks. That may be what my colleague was referring to, although they didn't say so at the time. http://stackoverflow.com/questions/1846587/execution-time-performance-of-code-in-class-created-using-reflection-versus-a-no/1846617#1846617Comment by Ash on Execution-time performance of code in class created using reflection versus a 'normal' class.Ash2009-12-04T12:27:24Z2009-12-04T12:27:24ZMarc, We use Activator.CreateInstance() and cast the returned object to a known class type. From then on it's always accessed through this strongly typed instance. We're working with c#2 and moving to C#3/4 hopefully soon. http://stackoverflow.com/questions/1846587/execution-time-performance-of-code-in-class-created-using-reflection-versus-a-no/1846593#1846593Comment by Ash on Execution-time performance of code in class created using reflection versus a 'normal' class.Ash2009-12-04T12:21:48Z2009-12-04T12:21:48ZAny references such as web pages, blogs etc?http://stackoverflow.com/questions/1846587/execution-time-performance-of-code-in-class-created-using-reflection-versus-a-no/1846598#1846598Comment by Ash on Execution-time performance of code in class created using reflection versus a 'normal' class.Ash2009-12-04T12:20:52Z2009-12-04T12:20:52ZYou misunderstand my question, see the NB.http://stackoverflow.com/questions/78756/what-do-you-use-to-keep-notes-as-a-developer/78772#78772Comment by Ash on What do you use to keep notes as a developer?Ash2009-12-01T07:34:53Z2009-12-01T07:34:53Z@Chris S, saying it requires 2 files is also a "bit of a lie". It depends on entirely the browser you use. Firefox and IE work perfectly with just a single html file. Opera, Safari require the Tiddlysaver add-in (which is a jar, from memory).http://stackoverflow.com/questions/1823271/can-anyone-guess-what-protocol-these-packets-belong-toComment by Ash on Can anyone guess what protocol these packets belong to?Ash2009-12-01T01:36:10Z2009-12-01T01:36:10ZYou'll probably find more people with experience in packet analysis on ServerFault.com.http://stackoverflow.com/questions/25952/best-programming-based-games/25963#25963Comment by Ash on Best programming based gamesAsh2009-11-26T10:11:34Z2009-11-26T10:11:34ZActually reading the question makes it clear it's definitely not Core War! Instead it's likely to be either RoboWar, RobotWar or C-Robots.http://stackoverflow.com/questions/801528/thread-safe-blocking-queue-implementation-on-net/801631#801631Comment by Ash on Thread-safe blocking queue implementation on .NETAsh2009-11-26T05:41:51Z2009-11-26T05:41:51Z@Shrike, not strange at all. Just yet another example of how bad StackOverflow search is. It's so bad that everyone will tell you to just use Google (and the 'site:' command) instead.http://stackoverflow.com/questions/1736444/using-the-controls-of-one-form-into-another/1736486#1736486Comment by Ash on Using The Controls Of One Form Into AnotherAsh2009-11-26T02:34:21Z2009-11-26T02:34:21ZWhy implement your own pub/sub model when you can use the built .NET event model to do this? Also, you only need pub/sub between forms if you're displaying multiple forms simultaneously. In most applications a simple "ApplicationData" object can be passed around between forms to allow communication of data. This is both a simpler approach and is the first step on separation of presentation from data.http://stackoverflow.com/questions/9033/hidden-features-of-cComment by Ash on Hidden Features of C#?Ash2009-11-25T14:19:44Z2009-11-25T14:19:44ZIf all of these listed features actually are "hidden" the C# language designers are doing a <i>really</i> bad job. ;)http://stackoverflow.com/questions/1796903/net-framework-built-in-interfaces-recommendations-when-building-a-custom-data-s/1796980#1796980Comment by Ash on .NET Framework built-in interfaces, recommendations when building a custom data structure?Ash2009-11-25T13:49:57Z2009-11-25T13:49:57ZThanks David, some useful tips. You misunderstood my point on not implementing interfaces. I mean the entire interface, not just certain methods. ie, if you don't want to provide cloneable functionality, don't implement ICLoneable at all. I've changed the wording in my question.http://stackoverflow.com/questions/1796903/net-framework-built-in-interfaces-recommendations-when-building-a-custom-data-s/1796970#1796970Comment by Ash on .NET Framework built-in interfaces, recommendations when building a custom data structure?Ash2009-11-25T13:45:22Z2009-11-25T13:45:22ZYes, it's not a simple answer, but I'm interested in any guidelines for choosing between similar sounding interfaces, for example.http://stackoverflow.com/questions/1796903/net-framework-built-in-interfaces-recommendations-when-building-a-custom-data-s/1796971#1796971Comment by Ash on .NET Framework built-in interfaces, recommendations when building a custom data structure?Ash2009-11-25T13:43:10Z2009-11-25T13:43:10ZYes, I realise this. My question is what guidelines, conventions etc that help choosing between similar looking interfaces (IEquatable, IEqualityComparer) etc. I say this in my question.http://stackoverflow.com/questions/1796903/net-framework-built-in-interfaces-recommendations-when-building-a-custom-data-s/1796966#1796966Comment by Ash on .NET Framework built-in interfaces, recommendations when building a custom data structure?Ash2009-11-25T13:41:06Z2009-11-25T13:41:06ZThanks, I'll take a look.