User Brian B. - Stack Overflowmost recent 30 from stackoverflow.com2009-12-06T05:36:52Zhttp://stackoverflow.com/feeds/user/21817http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/644841/can-you-pass-an-instance-of-a-generic-type-to-other-strongly-typed-methods2Can you pass an instance of a generic type to other strongly-typed methods?Brian B.2009-03-13T22:29:03Z2009-03-14T01:08:38Z
<p>I have a situation where I have a method that takes a couple of overloads. I have a fairly common scenario where if some condition is true, I call one of the overloads, otherwise I call something else. I decided to try to be clever and refactor the common code into a single generic method that would take an object and a condition, and call the overloaded method or otherwise call the common code.</p>
<p>A much simplified example of the code: </p>
<pre><code>/// <summary>
/// Dummy interface
/// </summary>
public interface ITest1
{ }
/// <summary>
/// Dummy interface
/// </summary>
public interface ITest2
{ }
/// <summary>
/// Generic Class
/// </summary>
public class GenericClass
{
/// <summary>
/// First overload
/// </summary>
/// <param name="test1"></param>
public void TestMethod(ITest1 test1)
{ }
/// <summary>
/// Second overload
/// </summary>
/// <param name="test2"></param>
public void TestMethod(ITest2 test2)
{ }
/// <summary>
/// method with common logic
/// </summary>
/// <typeparam name="TInterfaceType">
/// Type of the test object
/// </typeparam>
/// <param name="test">
/// Test object to pass to the method.
/// </param>
public void ConditionallyCallTest<TInterfaceType>(
TInterfaceType test, bool someLogic)
{
if (someLogic)
{
this.TestMethod(test);
}
else
{
// .. Perform Common operations here
}
}
}
</code></pre>
<p>Ignoring the fact that this doesn't do anything, if you compile this code segment, you will get a compiler error that it can't convert TInterfaceType to ITest1.</p>
<p>I was hoping for the compiler to wait until I specified the type to do the type checking, so:</p>
<pre><code>GenericClass g = new GenericClass();
// We have an overload, so this is OK:
g.ConditionallyCallTest<ITest1>(test1);
// We have an overload, so this is OK:
g.ConditionallyCallTest<ITest2>(test2);
// Compiler error, no overload available:
g.ConditionallyCallTest<UnknownType>(obj);
</code></pre>
<p>Is it possible to do something like this using C#?</p>
<p>I also tried to use the where clause to specify the allowable types, but I couldn't figure out how to get the where clause to specify an either/or relationship between the specified types, only an AND relationship.</p>
<p>EDIT</p>
<p>As I <a href="http://stackoverflow.com/questions/644841/can-you-pass-an-instance-of-a-generic-type-to-other-strongly-typed-methods/644883#644883">mentioned in the comments below</a>, I was attempting to avoid having to create matching overload methods, so are there any other suggestions to solve this problem, or am I limited by the language here?</p>
http://stackoverflow.com/questions/489573/how-do-you-measure-estimate-size-of-xml-programming-effort/496718#4967183Answer by Brian B. for How do you measure/estimate size of XML programming effort?Brian B.2009-01-30T18:54:16Z2009-01-30T18:54:16Z<p>Interesting question. The only metric I am aware of (other than just counting nodes and attributes as you suggest) is something called the Structured Document Complexity Metric. </p>
<p><a href="http://www.oreillynet.com/xml/blog/2006/05/metrics_for_xml_projects_5_str_1.html" rel="nofollow">http://www.oreillynet.com/xml/blog/2006/05/metrics_for_xml_projects_5_str_1.html</a></p>
<p>Is the best link I can find on it currently (its been a while). I also found this little tool which will apparently calculate it for you (there may be others):</p>
<p><a href="http://schematron.com/resources/documentcomplexitymetric.html" rel="nofollow">http://schematron.com/resources/documentcomplexitymetric.html</a></p>
<p>Beyond that, I'm afraid my only advice would be to just pick a couple of metrics to track that seem reasonable, and re-evaluate them to determine if they actually do trend with the effort being applied to each document...</p>
http://stackoverflow.com/questions/427335/how-to-wait-for-a-thread-to-finish-its-work/427376#4273760Answer by Brian B. for How to wait for a thread to finish its workBrian B.2009-01-09T08:02:27Z2009-01-09T08:02:27Z<p>Assuming you have no access to the Worker class, just add a flag that indicates when PostProcessing has done and sleep until the flag is set:</p>
<pre><code>static bool isProcessed = false;
static void Main(string[] args)
{
Worker worker = new Worker();
worker.WorkCompleted += PostProcess;
worker.DoWork();
while(!isProcessed)
{
System.Threading.Thread.Sleep(-1);
}
}
static void PostProcess(object sender, EventArgs e)
{
// Cannot see this happening
isProcessed=true;
}
</code></pre>
<p>THis should do the trick, but I can't guarantee that it is robust without more information on your setup.</p>
http://stackoverflow.com/questions/427286/why-are-many-of-the-banking-sites-implemented-in-java-rather-than-net/427323#4273233Answer by Brian B. for Why are many of the banking sites implemented in Java rather than .NET?Brian B.2009-01-09T07:29:13Z2009-01-09T07:29:13Z<p>Its hard to take a single data point and extrapolate from it. As a counterpoint - US bank appears to be running Coldfusion (.cfm - unless I am mistaken in my extensions). </p>
<p>This client may have simply meant they have sysadmins experienced with running a java stack vs a .NET stack. The person in charge may have simply made a judgement call based on what he knows/she knows. Its difficult to tell from just that statement. </p>
<p>If it is true that banks tend to run on Java, then it may just be a crowd thing - everyone else is doing it so better not risk doing something different - one more thing to point to if something bad does happen.</p>
<p>If you are curious (and you have a more than passing relationship) why not simply ask them how they arrived at that conclusion? If nothing else its a good chance to learn something.</p>
http://stackoverflow.com/questions/402265/beginner-programmer-which-direction/402309#4023090Answer by Brian B. for Beginner Programmer - Which directionBrian B.2008-12-31T04:33:36Z2008-12-31T04:33:36Z<p>In my opinion languages are secondary. Learn the fundamentals and it won't matter what language you use (you can always learn a new one).</p>
<p>When I was learning the basics I read everything I could get my hands on. This gave me exposure to other ways of thinking about problems and just as importantly it gave me a huge set of interesting problems to solve. It didn't matter that they had been solved already,
I would take a problem and write an application to solve it, and then compare it to how other people solved it.</p>
<p>I was never concerned with <em>finishing</em> anything - there is plenty of time to fuss with the details of how to actually ship something later - but instead I just experimented with as much as I could.</p>
<p><em>edit</em></p>
<p>Since you mentioned the XNA game tutorials I should probably admit that anytime I learn a new language/framework I usually try to implement a version of the old Breakout game. I've wasted many an hour playing that game and its simple enough to do quickly, but complicated enough to give me exposure to most of the features I am trying to learn... :)</p>
http://stackoverflow.com/questions/402161/black-box-vs-white-box-testing/402258#4022582Answer by Brian B. for Black box vs White box TestingBrian B.2008-12-31T03:48:16Z2008-12-31T03:48:16Z<p>In my experience most developers naturally migrate towards white box testing. Since we need to ensure that the underlying algorithm is "correct", we tend to focus more on the internals. But, as has been pointed out, both white and black box testing is important.</p>
<p>Therefore, I prefer to have testers focus more on the Black Box tests, to cover for the fact that most developers don't really do it, and frequently aren't very good at it.</p>
<p>That isn't to say that testers should be kept in the dark about how the system works, just that I prefer them to focus more on the problem domain and how actual users interact with the system, not whether the function SomeMethod(int x) will correctly throw an exception if x is equal to 5.</p>
http://stackoverflow.com/questions/399224/how-to-get-a-positive-mental-attitude-towards-testing/399268#3992681Answer by Brian B. for How to get a positive mental attitude towards testing?Brian B.2008-12-30T01:18:50Z2008-12-30T01:18:50Z<p>Assuming you already have a list of bugs to fix, I always like to go back through and where ever possible create an automated test that demonstrates the bug. Then fix the bug and watch the test pass. Since you have to test the bug anyway, and the bug should already give you enough information to recreate it, you can see an immediate return on your tests. </p>
<p>Eventually, you'll start to get a feel for putting the tests together and how to write them, and you won't need the "blueprint" of an existing bug.</p>
http://stackoverflow.com/questions/316120/need-tips-on-how-to-prioritize-and-schedule-a-bunch-of-work-items/316350#3163500Answer by Brian B. for Need tips on how to prioritize and schedule a bunch of work itemsBrian B.2008-11-25T04:13:40Z2008-11-25T04:13:40Z<p>Since you are indicating that all these items are required, I will assume that there is not much chance of dropping items off the list (at least for now). Given that, you have 2 large tasks at hand - deciding when to do items, and determining how long it will take to do them.</p>
<p>Since you have already conveniently grouped the items by feature, I would start by prioritizing the features. Hopefully this will significantly reduce your working set, and allow you to actually get through it in a reasonable amount of time.</p>
<p>I would prioritize each feature based on its risk. Some things are easy to implement and others are difficult. Since they are <em>all</em> required, do the riskiest features first, when your schedule is more flexible to meet any unanticipated problems. Wait until the end of your cycle, and Murphy's law will strike you down. </p>
<p>Given your small team, I would just send the list of features around and ask everyone to mark it if they consider it a risky or difficult feature to implement. Add up all the marks and you have your "risk assessment", with the highest scoring items getting assigned first. </p>
<p>Alternatively, if you have easy access to your customer, ask them to rate the "risk" associated with each feature (in this case risk refers to the worst-case scenario of not having the feature - if not having something would be annoying, it is not risky. If not having the feature would result in them not using your product, it is high-risk).</p>
<p>Now that you have a priority queue, it is time to estimate. For the initial estimates, I would simply do an order of magnitude estimate for each of the features. Since it sounds as if you have already broken the features up, you should be able to get a decent feel for whether something is going to take hours, days or weeks. From the sounds of it, you are still early in development, so I don't believe there is much point in trying to get an accurate estimate on something that won't be implemented for another month or so.</p>
<p>As you pull items off your queue, have your team provide more accurate estimates by identifying granular tasks that shouldn't take more than a few hours. If you want to refine your order of magnitude estimates, you can progressively provide quick estimates for the remaining tasks based on your up-to-date knowledge of the system.</p>
<p>This should provide you with a fairly accurate short term schedule, and a fuzzier long term schedule that will progressively get more accurate.</p>
<p>Finally, if you are facing a long development cycle, I would recommend you identify certain target goals or dates, and when you meet those goals, sit down and repeat this whole process. I would never go longer than 2 weeks without revisiting these things. New items will get added, others will get overtaken and become obsolete, and others will become higher risk as you better understand the problem. All of this must be taken into account.</p>
http://stackoverflow.com/questions/314863/how-to-convince-a-client-that-expensive-is-cheaper/315311#3153113Answer by Brian B. for How to convince a client that "expensive" is "cheaper"?Brian B.2008-11-24T20:21:20Z2008-11-24T20:21:20Z<p>If the client is simply focused on cost, put your money where your mouth is:</p>
<ul>
<li>Offer to fix bugs for free (Just be sure you define EXACTLY what a bug is - which is hard to do).</li>
<li>Provide free (or reduced cost) support for some length of time (again with clear definitions of what this means)</li>
<li>Guarantee an average level of development experience on the project</li>
<li>Cap the costs, and provide overruns for free (just make sure you define "done")</li>
<li>Cap the time, and provide overruns for free (again, better define "done", and estimate well)</li>
<li>Demonstrate good will - offer up a preliminary design document, simple prototype, something, anything to demonstrate interest in the client, and the quality and professionalism you offer. </li>
</ul>
<p>Simply being more expensive does not imply/guarantee quality, in the same way that being inexpensive does not imply/guarantee a lack of quality, so instead of assuming that the potential client screwed up by selecting the cheaper alternative, I would ask what did I lack that caused them to select the cheaper alternative. Often times it is as simple as communicating and differentiating the value in terms they understand.</p>
<p>Of course, some clients just aren't worth the trouble and once you identify them as such, I would simply not bother. </p>
http://stackoverflow.com/questions/313036/generic-class-used-as-constraint-to-generic-method-in-c/313044#3130443Answer by Brian B. for Generic class used as constraint to generic method in C#?Brian B.2008-11-23T22:30:00Z2008-11-23T22:30:00Z<p>Just follow the T:</p>
<pre><code> // ...
{
//...
MyCollection1 collection3 = GetCollectionFromDb<MyCollection1>(Collection1Name);
}
private static T GetCollectionFromDb<T>(string pCollectionName) where T : MyCollectionBase<T>
{
IList<T> queryResult = db.Query((T c) => c.CollectionName == pCollectionName);
if (queryResult.Count != 0) return queryResult[0];
return null;
}
</code></pre>
<p>would translate into:</p>
<pre><code> private static MyCollection1 GetCollectionFromDb<MyCollection1>(string pCollectionName) where T : MyCollectionBase< MyCollection1 >
{
IList< MyCollection1 > queryResult = db.Query((MyCollection1 c) => c.CollectionName == pCollectionName);
if (queryResult.Count != 0) return queryResult[0];
return null;
}
</code></pre>
<p>Which is not what you want since MyCollection1 derives off MyCollectionBase< Entity1 > and not MyCollectionBase< MyCollection1 >, which is why you got the error. If you want the constraint to work, you will probably have to use a second type identifier to express the type being used in the generic collection.</p>
http://stackoverflow.com/questions/307984/declare-a-generic-type-instance-dynamically/308035#3080350Answer by Brian B. for Declare a generic type instance dynamicallyBrian B.2008-11-21T06:20:42Z2008-11-21T06:20:42Z<p>See the answer from the similar question <a href="http://stackoverflow.com/questions/67370/dynamically-create-a-generic-type-for-template">"Dynamically Create a Generic Type for Template"</a>. The only difference is that they are generating the type from the command line, the rest you should be able to adapt to your needs.</p>
<p>As an aside, you cannot call typeof on an instance - to get the type of an instance (for example "i" call GetType():</p>
<pre><code>Type intType = i.GetType();
</code></pre>
http://stackoverflow.com/questions/305874/how-to-get-back-a-file-my-svn-client-deleted/306733#3067331Answer by Brian B. for How to get back a file my SVN client deleted?Brian B.2008-11-20T20:21:53Z2008-11-20T20:21:53Z<p>If you are looking for the file in VS, it is likely that the file still exists in your directory, but is simply no longer referenced in the project (Since VS will only show you files in your project). If the file was renamed, that is likely why you can no longer find it in Visual Studio. I would check the actually directory where the file used to exist.</p>
<p>If it is not there, you can retrieve the old file from the repository by clicking on the containing directory and reverting to a previous revision that contains the file (file deletes are operations on the directory).</p>
<p>Your local copy of the file should not be deleted if there are modifications. This type of thing is annoying, but hopefully doesn't happen very often (how often do you rename files?). Of course, this is also exactly why you should update before committing. In this case, you need to manually merge the changes you made to the old file into the new file and make sure that it all still compiles.</p>
http://stackoverflow.com/questions/303018/your-personal-successful-coding-practices/303535#3035358Answer by Brian B. for Your personal, successful coding practices.Brian B.2008-11-19T21:59:37Z2008-11-19T21:59:37Z<p>When approaching other people's code I've taken to assuming that I am the biggest idiot on the face of the planet who has never seen a single line of code in his life. That way, whenever I get the urge to "correct" some line of code that seems pointless and wrong, I think to myself </p>
<blockquote>
<p>"You know, I'm pretty dumb, and the
person who wrote this probably isn't,
so maybe I should find out why they
wrote it before I go mucking around in
here".</p>
</blockquote>
<p>Often I will discover that there is in fact a reason for that line of code that I had never considered. Not to mention the number of times someone has "simplified" some piece of my code, only to discover the week before it releases that the code was actually required to handle that one case where if you hit the "o" key at the exact moment that you press OK while simultaneously playing "Eye of the Tiger" in iTunes via your iPod you will crash the application (which is relevant because your customer is a huge Survivor fan who obsessively presses the first letter of whatever dialog button he is clicking on - it happens).</p>
http://stackoverflow.com/questions/302701/null-difference/302743#3027435Answer by Brian B. for Null DifferenceBrian B.2008-11-19T17:42:24Z2008-11-19T17:42:24Z<p>In the good old days, compilers would happily let you make assignments inside conditionals, leading to unintentional errors:</p>
<pre><code>if(a = false)
{
// I'll never execute
}
if(b = null)
{
// I'll never execute
}
b.Method(); // And now I'm null!
</code></pre>
<p>So some clever developers started putting their constants first in their conditionals:</p>
<pre><code>if(false = a) // OOPS! Compiler error
{
// ..
}
if(null = b) // OOPS! Compiler error
{
// ..
}
</code></pre>
<p>So they trained themselves to avoid a whole class of errors. Most modern compilers will no longer let you make that error, but the practice continues.</p>
<p>There is one other advantage to always putting your constants first:</p>
<pre><code>if(myString != null && myString.Equals("OtherString"))
{
// ...
}
</code></pre>
<p>can (in .NET, Java, and most languages with an object-based string type) be reduced to:</p>
<pre><code>if("OtherString".Equals(myString))
{
// ..
}
</code></pre>
http://stackoverflow.com/questions/300605/scrum-but-with-no-testing-or-documentation/300759#3007590Answer by Brian B. for Scrum, but with no testing or documentationBrian B.2008-11-19T01:29:14Z2008-11-19T01:29:14Z<p>Is the issue that they don't have any documentation and tests, or that they aren't implementing the entire Scrum methodology? Those are 2 very different problems in my mind. </p>
<p>I would much prefer an organization that has taken the time and effort to find and fit a development process that matches their development style as opposed to mandating down from on high the one true process. So I would not be concerned at all if they were using a process that they called Scrum but that didn't meet all the "official" guidelines. Try to determine why the process is the way it is. Chances are that if they have taken the time to tailor it, the team will be receptive to your ideas, especially if you have taken the time to determine why things are the way they are. If you simply approach it as "this isn't Scrum and so isn't right", you will probably not make much headway, but by being pragmatic about the benefits you can likely make some substantial improvements.</p>
<p>Alternatively, if they aren't doing testing and don't have any documentation I would consider that a fairly bad sign. And by documentation I am taking the minimalist view here - a list of features, bug tracking, etc. - I would be very concerned by the absence of these items, less concerned by the absence of items higher up the abstraction list. In the absence of support from management, I would suggest you lead by example. Take it on yourself to setup a simple bug tracking system (there are several - in a pinch, simple text lists in a central location work as well). Don't declare your features complete until someone else has tested it. This can be as simple as walking over to another developer and asking them to try it in front of you. If someone claims a feature is complete, take a few minutes to familiarize yourself with it. If you find a bug, politely mention it to the responsible developer. Slowly build an environment where the team can see the benefits of running tests and tracking features and bugs.</p>
<p>Most teams operate in this manner simply because of a mistaken belief that they don't have time to "do it right", or that they will get to it later. Often this will occur when a simple proof-of-concept done by a developer or two as a side-project turns into a full-on development effort. By showing that it can actually save time and effort, and reducing the initial costs to the rest of the team, you will often find that it becomes ingrained as part of the process without ever actually being officially endorsed or accepted.</p>
<p>If you have management support it will make it much easier, but always be careful to make sure that the team is receptive to the changes. This may mean it takes longer than you want, but so be it, without the team's support any mandated process will fail at the first sign of pressure, which is when you need the process the most.</p>
<p>*Disclaimer - On my last project I spearheaded the movement to tailor the SCRUM process to fit our environment. The "official" process was simply untenable for our client, but it was still an invaluable guide in tailoring our process. </p>
http://stackoverflow.com/questions/297667/road-warrior-habits-to-encourage-coding-productivity/297766#2977660Answer by Brian B. for Road Warrior - habits to encourage coding productivity?Brian B.2008-11-18T03:19:09Z2008-11-18T03:19:09Z<p>Note that I am assuming work-related development and travel. When I'm traveling for personal reasons I like to do something other than write code. Helps me focus when I get back...</p>
<p>It sounds obvious and stupid, but make sure your laptop is setup to do development on it. This means that you have all your environments, tools, utilities, etc. that you need, access to your source control and bug tracking system, etc. etc. Make sure that it can connect to what you need when you need it. Verify that it works before you travel. Don't expect to be able to set it up on the road. My experience is that by the time you get it set up the way you want, you'll be on your way back. Its also useful to "test-drive" the setup. Take it into work and use your laptop for a day instead of your normal development machine. Of course, if your laptop is your normal development machine, you should be all set (mine is not - I have to keep my laptop in sync with my desktop, and is done by choice because I prefer the power of my desktop to my tiny laptop I use for travel).</p>
<p>Anyway, you would be surprised how many times I have been traveling with someone only to have them tell me they can't get anything done because they forgot some utility or they forgot to install some library. Or they don't have licenses.</p>
<p>Don't count on internet access. You should always be prepared to develop with some minimal amount of internet connectivity. It doesn't have to be your most productive development time, but you need to be able to do <em>something</em> when you don't have internet. Often I will use this time to document or clean code. Since my work is done on a team, I try to avoid major functionality changes when I am offline to avoid collisions and out-of-date requirements. </p>
<p>Having said that - if you can do it (and your laptop is not your regular machine), set up remote access to your development machine :)... When you have an internet connection, just remote into your standard machine. That helps keep everything in one place and synchronized. No need to update libraries or anything else (This is my current mode of operation - despite the lag I still find it to be the most productive since it is <em>always</em> current with the latest project needs - no need to constantly sync and update).</p>
<p>Always have a backup - laptops fail, and you don't want to lose all the code you spent the last 2 weeks working on. This means when you get an internet connection, use it to put your work somewhere safe. Source control on a central server is my preferred place, but put it somewhere. Don't assume you'll be able to recover the data - its just as likely you'll lose your whole laptop or have it stolen.</p>
<p>I have been doing the travel and development thing for a while now (I haven't been in to my office in almost 3 months). Have multiple ways to get in touch with your co-workers. Even for trivial things make sure you email, call, IM, whatever to check in. Find out what everyone else is doing, even if it isn't strictly your business. In a week, it may be and you don't have the benefit of being in place to overhear what happened. </p>
<p>I don't do my development when in transit. I treat development on the road the same as I would treat it in my office. I use my transit time to catch up on reading, sleep and so forth, that way when I get to my hotel, conference, customer site, where ever I am, I am relaxed and ready to go. Travel is stressful enough without trying to cram in an extra 15 minutes of productivity. Plenty of time for that when you arrive.</p>
http://stackoverflow.com/questions/286619/exception-safety-handling-with-net-htmltextwriter/292294#2922941Answer by Brian B. for Exception safety/handling with .Net HtmlTextWriter?Brian B.2008-11-15T08:06:04Z2008-11-15T08:06:04Z<p>If you are only concerned about errors that occur during the GenerateHtml() call, and don't like the second approach (which seems fine to me), why not move the closing span tag into a finally block, and pull out the open call:</p>
<pre><code>htw.RenderBeginTag( HtmlTextWriterTag.Span );
try
{
htw.Write(myObject.GenerateHtml());
}
catch (Exception e)
{
GenerateHtmlErrorMessage(htw);
}
finally
{
htw.RenderEndTag( );
}
</code></pre>
<p>This way the span is always opened and always closed. If GenerateHtml throws an exception, you catch it and generate the error inside the span, before closing it.</p>
<p>Of course, if the exception occurs trying to write the tags, then you are out of luck writing an error message anyway, so I'll assume that is being handled elsewhere.</p>
http://stackoverflow.com/questions/288318/problem-drawing-graphics-to-user-control/289384#2893840Answer by Brian B. for Problem drawing graphics to user controlBrian B.2008-11-14T06:49:57Z2008-11-14T06:49:57Z<p>Without more information I can't say for sure why you are seeing the difference in behavior (I would suggest you are seeing the same problem since you admit that the debug version doesn't always work either), but you may find that breakpoints will often "fix" paint problems because switching back to Visual Studio ends up invalidating the entire painting surface, as opposed to just a small part. So you bring up the application and its not painting correctly, you hit a breakpoint in visual studio, switch over look at some variables, go back to the application and its painted correctly because OnPaint was called with the proper clipping rectangle to repaint the entire surface (and OnPaintBackground is also usually called, see below).</p>
<p>If this is the case, you should be able to replicate it in the release version by minimizing and restoring your application. If that "fixes" the display of your control, then it is likely caused by a problem with your paint method assuming that it is painting the entire control when it may not be.</p>
<p>You might also look into PaintBackground to make sure that you are erasing your control's surface properly. It is possibly that you are leaving your old display and then repainting on top of it instead of starting from a "fresh" canvas.</p>
<p>Based on your description of what is going on, and the ways that you make it redraw, those are my best suggestions. I would need some more specific details (Paint code, specific description of what happens - is the control not drawn or does it display only parts, etc.) to provide any more accurate help.</p>
http://stackoverflow.com/questions/289002/how-to-raise-custom-event-from-a-static-class/289351#2893512Answer by Brian B. for How to raise custom event from a Static ClassBrian B.2008-11-14T06:20:58Z2008-11-14T06:20:58Z<p>Several folks have offered up code examples, just don't fire an event using code such as:</p>
<pre><code>if(null != ExampleEvent)
{
ExampleEvent(/* put parameters here, for events: sender, eventArgs */);
}
</code></pre>
<p>as this contains a race condition between when you check the event for null and when you actually fire the event. Instead use a simple variation:</p>
<pre><code>MyEvent exampleEventCopy = ExampleEvent;
if(null != exampleEventCopy)
{
exampleEventCopy(/* put parameters here, for events: sender, eventArgs */);
}
</code></pre>
<p>This will copy any event subscribers into the exampleEventCopy, which you can then use as a local-only version of the public event without having to worry about any race conditions (Essentially, it is possible that another thread could pre-empt you right after you have checked the public event for null and proceed to remove all subscribers from the event, causing the subsequent firing of the event to throw an exception, by using a local-only copy, you avoid the possibility of another thread removing subscribers, since there is no way they could access the local variable).</p>
http://stackoverflow.com/questions/254281/best-practices-for-overriding-isequal-and-hash/254446#2544462Answer by Brian B. for Best practices for overriding isEqual: and hashBrian B.2008-10-31T18:27:13Z2008-10-31T18:27:13Z<p>I'm just picking up Objective-C myself, so I can't speak for that language specifically, but in the other languages I use if two instances are "Equal" they must return the same hash - otherwise you are going to have all sorts of problems when trying to use them as keys in a hashtable (or any dictionary-type collections). </p>
<p>On the other hand, if 2 instances are not equal, they may or may not have the same hash - it is best if they don't. This is the difference between an O(1) search on a hash table and an O(N) search - if all your hashes collide you may find that searching your table is no better than searching a list.</p>
<p>In terms of best practices your hash should return a random distribution of values for its input. This means that, for example, if you have a double, but the majority of your values tend to cluster between 0 and 100, you need to make sure that the hashes returned by those values are evenly distributed across the entire range of possible hash values. This will significantly improve your performance.</p>
<p>There are a number of hashing algorithms out there, including several listed here. I try to avoid creating new hash algorithms as it can have large performance implications, so using the existing hash methods and doing a bitwise combination of some sort as you do in your example is a good way to avoid it.</p>
http://stackoverflow.com/questions/251439/passing-int-list-as-a-parameter-to-a-web-user-control/251751#2517510Answer by Brian B. for Passing int list as a parameter to a web user controlBrian B.2008-10-30T20:57:44Z2008-10-30T20:57:44Z<p>WHile I can't say I have any particular experience with this error, other sources indicate that you need to add a conversion to the type InstanceDescriptor. check out:</p>
<p><a href="http://weblogs.asp.net/bleroy/archive/2005/04/28/405013.aspx" rel="nofollow">http://weblogs.asp.net/bleroy/archive/2005/04/28/405013.aspx</a></p>
<p>Which provides an explanation of the reasons or alternatively:</p>
<p><a href="http://forums.asp.net/p/1191839/2052438.aspx#2052438" rel="nofollow">http://forums.asp.net/p/1191839/2052438.aspx#2052438</a></p>
<p>Which provides example code similar to yours.</p>
http://stackoverflow.com/questions/133977/is-there-net-replacement-for-getasynckeystate/134179#1341790Answer by Brian B. for Is there .Net replacement for GetAsyncKeyState?Brian B.2008-09-25T15:56:39Z2008-09-25T18:39:21Z<p>Depending on your desired use there are a couple of options, including invoking the same method as described above).
From a console app:</p>
<pre><code>bool exitLoop = false;
for(int i=0;i<bigNumber && !exitLoop;i++)
{
// Do Stuff.
if(Console.KeyAvailable)
{
// Read the key and display it (false to hide it)
ConsoleKeyInfo key = Console.ReadKey(true);
if(ConsoleKey.Escape == key.Key)
{
exitLoop=false;
}
}
}
</code></pre>
<p>If you are working on a windows form, every form has a number of key related events you can listen to and handle as necessary (Simplified most of the logic):</p>
<pre><code>public partial class Form1 : Form
{
private bool exitLoop;
public Form1()
{
InitializeComponent();
this.KeyUp += new System.Windows.Forms.KeyEventHandler(this.Form1_KeyUp);
}
public void doSomething()
{
// reset our exit flag:
this.exitLoop = false;
System.Threading.ThreadPool.QueueUserWorkItem(new System.Threading.WaitCallback(delegate(object notUsed)
{
while (!exitLoop)
{
// Do something
}
}));
}
private void Form1_KeyUp(object sender, KeyEventArgs e)
{
if (Keys.Escape == e.KeyCode)
{
e.Handled = true;
this.exitLoop = true;
}
}
}
</code></pre>
<p>Note that this is <em>very</em> simplified - it doesn't handle any of the usual threading issues or anything like that. As was pointed out in the comments, the original go-round didn't address that problem, I added a quick little ThreadPool call to thread the background work. Also note, that the problem with listening for the key events is that other controls may actually handle them, so you need to make sure that you register for the event on the correct control(s). If a windows form application is the direction you are heading, you can also attempt to inject yourself into the message loop itself... </p>
<pre><code>public override bool PreProcessMessage(ref Message msg)
{
// Handle the message or pass it to the default handler...
base.PreProcessMessage(msg);
}
</code></pre>
http://stackoverflow.com/questions/131517/should-constructor-variables-pass-direct-to-private-fields-or-properties/131568#1315685Answer by Brian B. for Should constructor variables pass direct to private fields or properties?Brian B.2008-09-25T05:11:27Z2008-09-25T05:11:27Z<p>Using properties is OK as long as they are not virtual/overridden. Properties are essentially methods, and you should not call virtual methods from within the constructor because the appropriate type may not be constructed yet. Microsoft has listed their own <a href="http://msdn.microsoft.com/en-us/library/ms229060.aspx" rel="nofollow">set of guidelines</a>, just scroll down to the bottom to see the relevant guidance and code snippet illustrating the problem (they illustrate it using methods, but as I mentioned .NET properties are essentially special methods). </p>
http://stackoverflow.com/questions/131153/open-source-code-review-tools-mondrian/131206#1312068Answer by Brian B. for Open Source Code Review Tools? (Mondrian)Brian B.2008-09-25T02:43:22Z2008-09-25T02:43:22Z<p>Check out <a href="http://www.review-board.org/" rel="nofollow">Review Board</a> (see <a href="http://radar.oreilly.com/archives/2008/03/review-board-is-good-software.html" rel="nofollow">here</a> for a better review than I could give).</p>
http://stackoverflow.com/questions/130575/whats-a-good-free-bug-tracker-for-a-small-shop/130610#1306100Answer by Brian B. for What's a good free bug tracker for a small shopBrian B.2008-09-24T23:33:07Z2008-09-24T23:33:07Z<p>I have had great success with <a href="http://www.bugzilla.org/" rel="nofollow">bugzilla</a>... Its even pretty easy to customize if you want it to match with your website themes and so forth. You do need to run your own server though. I had it setup in a day, and my manager at the time was able to customize it to display our various progress charts and so forth. <a href="http://landfill.bugzilla.org/" rel="nofollow">Try it out for free here...</a></p>
http://stackoverflow.com/questions/123619/vsts-code-coverage-bug/130224#1302241Answer by Brian B. for VSTS Code Coverage bug?Brian B.2008-09-24T22:00:42Z2008-09-24T22:00:42Z<p>I ran into this once, it is very annoying. In my case, there were a number of dlls not covered, so I ended up estimating blocks/kb for our code base by using the covered dlls information divided by their size. Then of course to get the number of blocks for the uncovered dlls, you simply multiply your average by the size of the dll. This is not the most accurate method but it gets you a quick ballpark, and you can determine your error by calculating your known dlls and comparing against the actual values. It is helpful if you have a good number of assemblies that are calculated.</p>
<p>Of course, you could just do a LOC count (ignoring comments) and figure on a single LOC roughly equivalent to a block. If I remember correctly that fairly accurate, and so should get you even closer.</p>
<p>The only way I know of to force a report on uncovered assemblies is to actually write a test that loads the assembly (the test doesn't even need to do anything).</p>
http://stackoverflow.com/questions/111744/how-do-you-preview-user-actions-like-resize-or-editing-in-godiagrams/130039#1300390Answer by Brian B. for How do you "preview" user actions like resize or editing in GoDiagrams?Brian B.2008-09-24T21:17:17Z2008-09-24T21:17:17Z<p>The event arguments (GoChangedEventArgs) for the change event has a property IsBeforeChanging which indicates whether the change event was raised from the "RaiseChanging" method (true), or the RaiseChanged (false). That should tell you whether the change has occurred yet, but I know of no way to cancel it. </p>
<p>The best I can suggest is instead of checking if the change is allowed and performing it, check if the change is <em>not</em> allowed, and if it isn't call the "Undo" method on the arguments in the change event. So essentially:</p>
<pre><code>OnChanged(GoChangedEventArgs e)
{
if(NotAllowed)
{
e.Undo();
}
}
</code></pre>
http://stackoverflow.com/questions/644841/can-you-pass-an-instance-of-a-generic-type-to-other-strongly-typed-methodsComment by Brian B. on Can you pass an instance of a generic type to other strongly-typed methods?Brian B.2009-03-13T23:05:07Z2009-03-13T23:05:07ZThis was just a made-up example of the problem since the real code is too extensive to post.http://stackoverflow.com/questions/644841/can-you-pass-an-instance-of-a-generic-type-to-other-strongly-typed-methods/644857#644857Comment by Brian B. on Can you pass an instance of a generic type to other strongly-typed methods?Brian B.2009-03-13T23:00:14Z2009-03-13T23:00:14ZI guess hoping doesn't make it so... :) I expanded the question to see if there is a way to do something like this.http://stackoverflow.com/questions/644841/can-you-pass-an-instance-of-a-generic-type-to-other-strongly-typed-methods/644883#644883Comment by Brian B. on Can you pass an instance of a generic type to other strongly-typed methods?Brian B.2009-03-13T22:58:07Z2009-03-13T22:58:07ZValid answer, and close to the solution I actually have, but I was hoping for something that would avoid having to create a corresponding method for each of my overloads. I went with generics because it seemed a clean and easy way to get it, which sparked my curiosity when it failed. http://stackoverflow.com/questions/427335/how-to-wait-for-a-thread-to-finish-its-work/427376#427376Comment by Brian B. on How to wait for a thread to finish its workBrian B.2009-01-09T09:28:18Z2009-01-09T09:28:18ZI actually have no idea what the behavior of WaitHandle is when it is only signaled from the blocking thread, and I was too lazy to test it. I had assume PostProcess executes on the blocked thread. Without more information this was an easy solution that works.http://stackoverflow.com/questions/427286/why-are-many-of-the-banking-sites-implemented-in-java-rather-than-net/427314#427314Comment by Brian B. on Why are many of the banking sites implemented in Java rather than .NET?Brian B.2009-01-09T08:08:52Z2009-01-09T08:08:52ZIf you are writing a web app does it really matter if the language is cross-platform? You control the servers, everybody else can run whatever browser they want to on whatever platform they want to regardless of the language the web application was written in... That's the benefit of webapps...http://stackoverflow.com/questions/379371/what-makes-a-good-spec/379402#379402Comment by Brian B. on What makes a good spec?Brian B.2008-12-19T01:15:40Z2008-12-19T01:15:40ZI prefer textual descriptions. But that is my preference, all I'm saying is don't skip the description because you have a diagram. Not everyone sees things the same way.http://stackoverflow.com/questions/379540/what-do-you-consider-before-refactoring-code/379549#379549Comment by Brian B. on What do you consider before refactoring code?Brian B.2008-12-19T01:05:13Z2008-12-19T01:05:13ZI don't know - if a program needed rework but had no unit tests, I wouldn't skip refactoring, I'd just be careful. I look at them as a safety net, but I would never refactor just cause I had them, or not refactor cause I didn't.http://stackoverflow.com/questions/379540/what-do-you-consider-before-refactoring-code/379730#379730Comment by Brian B. on What do you consider before refactoring code?Brian B.2008-12-19T00:43:41Z2008-12-19T00:43:41ZIn this particular case there was no mention of design problems - simply that there are some new goodies out there that could be used.http://stackoverflow.com/questions/303018/your-personal-successful-coding-practices/303064#303064Comment by Brian B. on Your personal, successful coding practices.Brian B.2008-11-19T22:09:54Z2008-11-19T22:09:54ZThere are times when "what" is more informative than "why". If you are implementing a complicated algorithm, its useful to know what the algorithm is <i>supposed</i> to be, to compare against the reality of the code, but I'm guessing you are referring to the "add 1 to i" type comment and not the former.http://stackoverflow.com/questions/303018/your-personal-successful-coding-practices/303442#303442Comment by Brian B. on Your personal, successful coding practices.Brian B.2008-11-19T22:03:45Z2008-11-19T22:03:45ZI would just add that all things being equal consistency should always win. If every other GetName method returns only the first name, do not decide that your GetName method will return the full name because it is easier. You (or someone you know) will regret it.http://stackoverflow.com/questions/289002/how-to-raise-custom-event-from-a-static-class/289054#289054Comment by Brian B. on How to raise custom event from a Static ClassBrian B.2008-11-14T05:59:54Z2008-11-14T05:59:54ZAdding comments requires 50 reputation points, which Mike does not have. http://stackoverflow.com/questions/289255/term-for-find-remove-and-return-an-element-in-a-setComment by Brian B. on Term for "find, remove and return an element" in a set?Brian B.2008-11-14T05:14:45Z2008-11-14T05:14:45ZNothing trivial about the question at all. Much better to pick a good name upfront then have to live with it for years (or worse, make someone else live with it)