User Brian Genisio - Stack Overflowmost recent 30 from stackoverflow.com2009-11-30T01:09:15Zhttp://stackoverflow.com/feeds/user/36687http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/331419/best-practice-for-wcf-service-proxy-lifetime4Best Practice for WCF Service Proxy lifetime?Brian Genisio2008-12-01T16:52:37Z2009-11-29T16:16:42Z
<p>When working with WCF services, is it better to create a new instance of the service every time you use it? Or is it better to create one and re-use it? Why is either approach better? Is it the same for asynchronous proxies? </p>
http://stackoverflow.com/questions/1813472/get-notified-of-silverlight-binding-errors1Get Notified of Silverlight Binding Errors?Brian Genisio2009-11-28T19:16:41Z2009-11-28T22:50:32Z
<p>So, lets say I write a binding in Silverlight that cannot be resolved. </p>
<p>I get a message in the output window: </p>
<pre><code>"System.Windows.Data Error: BindingExpression path error: ...."
</code></pre>
<p>Is there a way to get notified when this happens? Ultimately, I'd like to throw an exception or something. Is this somehow configurable?</p>
http://stackoverflow.com/questions/1797584/how-to-add-an-item-to-a-list-of-generics-declared-as-a-list-of-an-abstract-object/1797663#17976631Answer by Brian Genisio for How to add an item to a list of generics declared as a list of an abstract object in C#Brian Genisio2009-11-25T15:25:06Z2009-11-25T15:25:06Z<p>Hmmm... I don't see anything wrong. I think your problem is not related to your list and must be in some other code you haven't shown. I just ran the following test without failure:</p>
<pre><code>public abstract class Base {}
public class D1 : Base {}
public class D2 : Base {}
[Test]
public void Test_Generic_Lists_With_Abstract_Base()
{
var list = new List<Base>();
list.Add(new D1());
list.Add(new D2());
Assert.That(list[0] is D1);
Assert.That(list[1] is D2);
}
</code></pre>
<p><strong>EDIT</strong> Your stack trace does not line up with the code you showed. The return of new can never be null, and your stack trace shows that null was passed in. What else are we missing?</p>
http://stackoverflow.com/questions/1796784/how-to-carry-out-performance-test-on-our-website/1796808#17968081Answer by Brian Genisio for How to carry out performance test on our websiteBrian Genisio2009-11-25T13:08:20Z2009-11-25T13:08:20Z<p>When running load tests, it is really best to emulate your environment as best as possible. If the resources of the test system are different than the production system, you are bound to get different results.</p>
<p>Still, you can run tests with given hardware and report on the numbers you get. For instance, you can know how much bandwidth your system needs regardless of how much the production system has available because that can be measured. </p>
<p>But if you want to measure against what the client will see, you have to do it with the same environment.</p>
http://stackoverflow.com/questions/1790918/silverlight-application-for-the-web-storing-data-on-site/1790934#17909342Answer by Brian Genisio for Silverlight Application for the web - storing data on siteBrian Genisio2009-11-24T15:48:56Z2009-11-25T12:58:39Z<p>You can add a small WCF service to your website with an ISaveScores interface. The SL app can connect to the WCF service to post scores, and the WCF service can then store the data however you want. If you use a csv file, make sure you handle locking properly, since it is very possible for multiple requests to happen simultaneously.</p>
<p><strong>EDIT</strong>
Since the host is Linux, just create yourself a rest service or some other service that silverlight can post to in the same way. Silverlight can talk to pretty much any type of service, so use the same technique in your environment.</p>
http://stackoverflow.com/questions/1770656/silverlight-communicate-between-2-view-models-in-mvvm-using-commands/1770827#17708272Answer by Brian Genisio for silverlight - communicate between 2 view models in MVVM using commandsBrian Genisio2009-11-20T14:36:13Z2009-11-20T14:53:11Z<p>There are several ways to go about this.</p>
<p>First, it is completely appropriate to have ViewModels that are composed of other ViewModels, as long as you are OK with them being coupled in that way. When you do that, they can just talk to each other using regular method calls.</p>
<p>Next, you can decouple a bit and use events. Nothing wrong with that. There is still an Observer -> Observable coupling, but they are less dependent upon each other. </p>
<p>Next, you can completely decouple and use something like an EventAggregator (Prism has a good one you can use). Shoot a Publish a message. The other subscribes. They don't know about each other at all.</p>
<p>I have used commands for this as well... but for ViewModel to ViewModel communication, I find this to be a bit awkward.</p>
http://stackoverflow.com/questions/1751572/adding-mimemap-via-wix-failed0Adding MimeMap via WIX failed. Brian Genisio2009-11-17T20:33:08Z2009-11-19T23:20:04Z
<p>I've been given a bug to fix an installer issue. Unfortunately, I know nothing about WIX, so I am not exactly where to start.</p>
<p>The WXS file is adding the necessary MimeMap, but when QA installed our app on Windows 2003 with IIS6, the MIME type was not set.</p>
<p>I am not sure where to start. We are using Wix 3.0. Here is the XML:</p>
<pre><code><iis:WebSite Id="DefaultWebSite" Description="Default Web Site">
<iis:WebAddress Id="AllUnassigned" Port="80" />
<iis:MimeMap Id="registerXapMimeType" Extension=".xap" Type="application/x-silverlight-app"/>
</iis:WebSite>
</code></pre>
<p>Any idea to why this MIME type was not mapped?</p>
http://stackoverflow.com/questions/1749652/using-dataannotations-for-validation-in-mvvm/1749685#17496850Answer by Brian Genisio for Using DataAnnotations for validation in MVVMBrian Genisio2009-11-17T15:33:34Z2009-11-17T15:33:34Z<p>Unfortunately, there is not much of a better way to do this. The only way to have the UI update itself based on validators is in the setter of the binding. </p>
<p>This, I believe, is a huge limitation of the validation system in Silverlight. That JoyOfCode article is really the best way to go about it. </p>
<p>I would also recommend the <a href="http://www.thejoyofcode.com/Silverlight%5FValidation%5Fand%5FViewModel.aspx" rel="nofollow">article by the same publisher</a> where you can bind errors to your viewmodel, but it doesn't work the other way around.</p>
http://stackoverflow.com/questions/617377/decoupling-silverlight-client-from-service-reference-generated-class/1702908#17029081Answer by Brian Genisio for Decoupling Silverlight client from service reference generated classBrian Genisio2009-11-09T18:38:35Z2009-11-09T18:38:35Z<p>Here is something I like doing... The service proxy is generated with an interface</p>
<pre><code>HelloWorldClient : IHelloWorld
</code></pre>
<p>But the problem is that <code>IHelloWorld</code> does not include the Async versions of the method. So, I create an async interface:</p>
<pre><code>public interface IHelloWorldAsync : IHelloWorld
{
void HelloWorldAsync(...);
event System.EventHandler<HelloWorldEventRgs> HelloWorldCompleted;
}
</code></pre>
<p>Then, you can tell the service proxy to implement the interface via partial:</p>
<pre><code>public partial class HelloWorldClient : IHelloWorldAsync {}
</code></pre>
<p>Because the <code>HelloWorldClient</code> does, indeed, implement those async methods, this works.</p>
<p>Then, I can just use <code>IHelloWorldAsync</code> everywhere and tell the <code>UnityContainer</code> to use <code>HelloWorldClient</code> for <code>IHelloWorldAsync</code> interfaces.</p>
http://stackoverflow.com/questions/1650260/is-there-a-way-to-add-event-handlers-for-controls-in-c-without-using-the-designe/1650619#16506190Answer by Brian Genisio for Is there a way to add event handlers for controls in c# without using the designer?Brian Genisio2009-10-30T15:48:39Z2009-10-30T15:48:39Z<p>Why is everyone suggesting a new EventHandler object??? Redundant</p>
<pre><code>button1.Click += MyHandler;
private void MyHandler(object sender, EventArgs args)
{
}
</code></pre>
<p>or with C# 3.0</p>
<pre><code>button.Click += (sender, args) => Handler();
</code></pre>
http://stackoverflow.com/questions/742742/should-i-use-properties-in-my-c-programs-or-should-i-use-get-set-accessors/742822#7428220Answer by Brian Genisio for Should I use properties in my C# programs or should I use get/set accessors?Brian Genisio2009-04-13T01:46:35Z2009-10-29T21:25:05Z<p>If you don't use Properties, you loose a very prominent feature that I consider to be extremely useful in .NET: Binding. You can only bind to/from properties in .NET so if you use get/set accessors, you are not playing nicely with others.</p>
http://stackoverflow.com/questions/1620771/need-of-interfaces-in-c/1620867#16208670Answer by Brian Genisio for Need of interfaces in c# Brian Genisio2009-10-25T13:04:48Z2009-10-25T13:04:48Z<p>If you want to write testable code, you will usually need to employ interfaces. When unit testing, you may have ClassA which depends upon ClassB which Depends upon ClassC etc, but you only want to test ClassA. You certainly don't want to create a ClassC to pass to a ClassB just to instantiate ClassA.</p>
<p>In that case, you make ClassA depend upon IClassB (or some more generic name, most likely that does not imply anything about the ClassB implementation) and mock out IClassB in your tests.</p>
<p>It is all about dependency management for me.</p>
http://stackoverflow.com/questions/1567341/distance-between-ellipse-path-and-point1Distance between ellipse path and point?Brian Genisio2009-10-14T16:08:18Z2009-10-23T16:21:05Z
<p>So, I am working with an ellipse on a drawing surface, and I need to know the shortest distance from the ellipse path (center of the line thickness is fine) to a given point.</p>
<p>I can do this with raw math, if I need to, since I know Major and Minor axis of the ellipse. As far as I can tell, this will be rather complex.</p>
<p>I was wondering if my view can calculate this for me?</p>
<p>I am using an EllipseGeometry and setting the axis. The EllipseGeometry is then handed to the path (Path.Data) and it gets drawn.</p>
<p>Any thoughts to know what the shortest distance to the path is?</p>
http://stackoverflow.com/questions/1613239/getting-the-object-out-of-a-memberexpression3Getting the object out of a MemberExpression?Brian Genisio2009-10-23T12:55:12Z2009-10-23T13:28:06Z
<p>So, lets say I have the following expression in C#:</p>
<pre><code>Expression<Func<string>> expr = () => foo.Bar;
</code></pre>
<p>How do I pull out a reference to foo?</p>
http://stackoverflow.com/questions/1567341/distance-between-ellipse-path-and-point/1599807#15998070Answer by Brian Genisio for Distance between ellipse path and point?Brian Genisio2009-10-21T09:56:17Z2009-10-21T09:56:17Z<p>Just to close the loop on this:</p>
<p>I found some C++ code that did this with math, and translated over to C#. I don't know how it works, but it does.</p>
<p>Ultimately, I was looking to highlight an ellipse when the mouse got near it. I was able to accomplish this with a different approach as well (but stayed with the pure-math approach):</p>
<p>Create a second path with the same geometry and translation as the path I am showing, but with a much thicker StrokeThickness and an opacity of 0.1. Do some hit testing on the larger, opaque path.</p>
http://stackoverflow.com/questions/1570202/moq-mocking-a-call-to-an-object-with-a-property-of-type-list/1570221#15702210Answer by Brian Genisio for Moq: Mocking a call to an object with a property of type ListBrian Genisio2009-10-15T04:00:30Z2009-10-15T04:00:30Z<pre><code>var mockSecureAsset = new Mock<ISecureAsset>();
mockSecureAsset.SetupGet(sa => sa.Contexts).Return(new List<SecurityContext>());
</code></pre>
<p>or </p>
<pre><code>mockSecureAsset.SetupProperty(sa => sa.Contexts);
mockSecureAsset.Object.Contexts = new List<SecurityContext>();
</code></pre>
http://stackoverflow.com/questions/1486104/duck-typing-library-for-silverlight/1490235#14902351Answer by Brian Genisio for Duck typing library for Silverlight?Brian Genisio2009-09-29T02:05:34Z2009-09-29T02:05:34Z<p>I recently created a utility I call <a href="http://houseofbilz.com/archive/2009/09/18/introducing-dynamicwrapper.aspx" rel="nofollow">"DynamicWrapper"</a>. It uses Reflection.Emit to generate a wrapper class on the fly that implements the interface -- a way to achieve duck typing in C#. </p>
<p>Unfortunately, it doesn't work in Silverlight. It works really well in .Net 3.5 and my tests passed in my SL environment, but in the SL runtime, I get a security exception.</p>
<p>I haven't had any time to figure it out, but the code is pretty straight forward. Maybe this code can point you in the right direction?</p>
http://stackoverflow.com/questions/1445257/how-to-set-a-role-provider-at-runtime0How to set a role provider at runtime?Brian Genisio2009-09-18T15:25:39Z2009-09-18T16:07:10Z
<p>I need to be able to set a RoleProvider at runtime. I don't even know where it is coming from -- I am using some loosely coupled dependency injection -- so I can't even define it in the web.config file.</p>
<p>How do I set the role provider at runtime?</p>
http://stackoverflow.com/questions/1439064/how-do-i-use-a-collection-to-store-a-delegate/1439121#14391212Answer by Brian Genisio for How do I use a collection to store a delegate?Brian Genisio2009-09-17T14:08:13Z2009-09-17T14:08:13Z<p>If you are using .Net 3.5, you can do what I do when I want to eliminate switch statements:</p>
<pre><code>private readonly Dictionary<string, Action<string>> _lookupTable = new Dictionary<string, Action<string>>
{
{"campaigns", post}
{"somethingElse", doSomethingElse}
{"tryIt", val => doSomethingWithVal(val)}
};
</code></pre>
<p>then, where I would have a switch statement, I would do this:</p>
<pre><code>_lookupTable["foo"]("bar");
</code></pre>
http://stackoverflow.com/questions/1434747/c-generics-constraints-on-type-parameters/1434853#14348532Answer by Brian Genisio for C# Generics - Constraints on type parametersBrian Genisio2009-09-16T18:58:36Z2009-09-16T18:58:36Z<p>I like to use <code>Activator.CreateInstance(typeof(T))</code> in my generics that need to create new objects of type T. It works really well.</p>
http://stackoverflow.com/questions/1434498/how-many-variables-should-a-constructor-have/1434520#14345203Answer by Brian Genisio for How many variables should a constructor have?Brian Genisio2009-09-16T17:50:57Z2009-09-16T17:50:57Z<p>Its difficult to put a hard, fast number to what is "too much". The real question is this: What is your class doing? Is the class doing too much? If so, it is time to break the class into smaller, more concise classes.</p>
<p>Constructor parameters should include as many as necessary to define the dependencies/inputs for the class. If the class is reduced to have one job in life, then your constructor parameters will probably be correct.</p>
http://stackoverflow.com/questions/1434402/whats-wrong-with-output-parameters/1434418#143441821Answer by Brian Genisio for What's wrong with output parameters?Brian Genisio2009-09-16T17:33:33Z2009-09-16T17:39:49Z<p>Output parameters can be a code smell indicating that your method is doing too much. If you need to return more than one value, the method is likely doing more than one thing. If the data is tightly related, then it would probably benefit from a class that holds both values.</p>
<p>Of course, this is not ALWAYS the case, but I have found that it is usually the case.</p>
<p>In other words, I think you are right to avoid them.</p>
http://stackoverflow.com/questions/1434156/other-uses-of-weak-references/1434400#14344000Answer by Brian Genisio for Other uses of weak references?Brian Genisio2009-09-16T17:30:31Z2009-09-16T17:30:31Z<p>I use weak references for a few things...</p>
<p>I like to create "Weak Events" in .Net to avoid observables from keeping observers alive too long. </p>
<p>I have also used weak events to <a href="http://geekswithblogs.net/HouseOfBilz/archive/2008/11/11/writing-tests-to-catch-memory-leaks-in-.net.aspx" rel="nofollow">detect memory leaks</a>.</p>
http://stackoverflow.com/questions/1433596/byte-to-arraylist/1433610#14336102Answer by Brian Genisio for byte[] to ArrayList ?Brian Genisio2009-09-16T15:09:27Z2009-09-16T15:09:27Z<p>Can't you just do this?</p>
<pre><code>ArrayList list = new ArrayList(byteArray);
</code></pre>
http://stackoverflow.com/questions/1433354/why-is-it-so-hard-to-enforce-yagni/1433424#14334241Answer by Brian Genisio for Why is it so hard to enforce YAGNI?Brian Genisio2009-09-16T14:41:14Z2009-09-16T14:41:14Z<p>YAGNI is really more of a question to ask. We, as senior developers, violate YAGNI all the time. It is really a question of "need". Do you need it? Define "need". I have seen awful balls of mud developed using the YAGNI dogma.</p>
<p>Not that I think YAGNI isn't useful... it is always worth asking "Do I need this".</p>
http://stackoverflow.com/questions/1432941/c-switch-in-lambda-expression/1432972#14329722Answer by Brian Genisio for C# switch in lambda expressionBrian Genisio2009-09-16T13:30:28Z2009-09-16T13:30:28Z<p>Yes, it works, but you have to put your code in a block. Example:</p>
<pre><code>private bool DoSomething(Func<string, bool> callback)
{
return callback("FOO");
}
</code></pre>
<p>Then, to call it:</p>
<pre><code>DoSomething(val =>
{
switch (val)
{
case "Foo":
return true;
default:
return false;
}
});
</code></pre>
http://stackoverflow.com/questions/1432689/web-like-desktop-gui-in-c-winforms/1432706#14327065Answer by Brian Genisio for Web like Desktop GUI in C# winforms.Brian Genisio2009-09-16T12:40:12Z2009-09-16T12:40:12Z<p>You would want to include a browser in your application. There is a user control called <a href="http://msdn.microsoft.com/en-us/library/w290k23d.aspx" rel="nofollow">WebBrowser</a> that will do this for you.</p>
http://stackoverflow.com/questions/1424924/print-winform-in-c/1424931#14249310Answer by Brian Genisio for Print winform in C#Brian Genisio2009-09-15T03:12:58Z2009-09-15T03:12:58Z<p>Thought it is possible to do without a 3rd party library, I have used <a href="http://www.winformreports.co.uk/features%5Fpf.htm" rel="nofollow">PrintForm.Net</a> in the past with success.</p>
http://stackoverflow.com/questions/1422403/how-would-you-design-a-state-management-that-would-do-this/1424927#14249271Answer by Brian Genisio for how would you design a "state/management" that would do thisBrian Genisio2009-09-15T03:10:56Z2009-09-15T03:10:56Z<p>You might consider using INotifyPropertyChanged and add handlers for when values change. That way, you can put all of your logic in one place.</p>
http://stackoverflow.com/questions/1399648/windows-form-rotation/1399660#13996603Answer by Brian Genisio for Windows form rotationBrian Genisio2009-09-09T13:22:32Z2009-09-10T11:18:21Z<p>Does it have to be in WinForms? This is very easy to do in WPF, using rotation transforms. Unfortunately, the WindowsFormsHost integration with WPF does not allow rotation transforms.</p>
<p><strong>EDIT</strong></p>
<p>I understand, now, that the form in question is out of the control of the poster. Writing the control in WPF won't fix the problem.</p>
http://stackoverflow.com/questions/1796784/how-to-carry-out-performance-test-on-our-website/1796808#1796808Comment by Brian Genisio on How to carry out performance test on our websiteBrian Genisio2009-11-25T14:00:36Z2009-11-25T14:00:36ZWe currently use Visual Studio Team System Test Edition for our load tests. It works well and gives us a lot of data. It is the cheapest load testing solution I have come across. Others on the mareket include LoadRunner and QALoad.http://stackoverflow.com/questions/1790734/wcf-service-invalid-with-silverlightComment by Brian Genisio on WCF Service invalid with SilverlightBrian Genisio2009-11-24T15:45:01Z2009-11-24T15:45:01ZHow are you hosting the WCF service? In a website project via .svc file?http://stackoverflow.com/questions/654381/what-is-the-point-of-having-using-blocks-in-c-code/654391#654391Comment by Brian Genisio on What is the point of having using blocks in C# code?Brian Genisio2009-10-30T17:11:46Z2009-10-30T17:11:46Z@Sekhat: I am not suggesting that you use using() to scope the variable if it is not IDisposable. I think you misunderstood my point. I am merely explaining a sublety of the functionality that using() provides. Further, it is possible to have code where you don't know if it implements IDisposable. Wrapping it in a using() is a safe way to make it get disposed IF it implements IDisposable, but you have no way of knowing at that time. This happens often in generic methods and extension methods.http://stackoverflow.com/questions/1650260/is-there-a-way-to-add-event-handlers-for-controls-in-c-without-using-the-designe/1650619#1650619Comment by Brian Genisio on Is there a way to add event handlers for controls in c# without using the designer?Brian Genisio2009-10-30T17:05:55Z2009-10-30T17:05:55ZRobert: Of course I realize this. My statement was that it is redundant. I am bringing it up for readability. Creating new EventHandler() is terribly ugly and redundant in our language. Just like GenericMethod<int>(5) is redundant and should just be GenericMethod(5) to increase readability. Lambda notation is also more readable, IMO, because it is immediately recognized by people familiar with other languages that include lambdas.http://stackoverflow.com/questions/1620771/need-of-interfaces-in-c/1620790#1620790Comment by Brian Genisio on Need of interfaces in c# Brian Genisio2009-10-25T13:08:11Z2009-10-25T13:08:11ZBut when you are writing unit tests, you almost always need to mock/stub out the class if it is a dependency of another class. By doing that, you are automatically creating a second implementation of the interface in your test project. Because of this, I find that I create interfaces more often than not for my classes in order to write testable, decoupled code.http://stackoverflow.com/questions/1613239/getting-the-object-out-of-a-memberexpression/1613438#1613438Comment by Brian Genisio on Getting the object out of a MemberExpression?Brian Genisio2009-10-23T13:40:54Z2009-10-23T13:40:54ZGood lord, man! You are teh awesome :) Perfect!!!!http://stackoverflow.com/questions/1599594/ruby-on-rails-web-application-development-from-scratch/1599644#1599644Comment by Brian Genisio on Ruby On Rails Web Application Development From Scratch?!Brian Genisio2009-10-21T09:51:21Z2009-10-21T09:51:21Z+1 to "Agile Web Development with Rails". Just finished the meat of that and it is quite good.http://stackoverflow.com/questions/1585608/c-working-with-linq-bindingComment by Brian Genisio on C# Working with Linq bindingBrian Genisio2009-10-18T18:16:15Z2009-10-18T18:16:15ZThis sounds like homework to me...?http://stackoverflow.com/questions/1567341/distance-between-ellipse-path-and-pointComment by Brian Genisio on Distance between ellipse path and point?Brian Genisio2009-10-14T18:20:10Z2009-10-14T18:20:10ZYes, shortest would be great...http://stackoverflow.com/questions/1486104/duck-typing-library-for-silverlight/1486515#1486515Comment by Brian Genisio on Duck typing library for Silverlight?Brian Genisio2009-09-29T02:08:31Z2009-09-29T02:08:31ZFrom the 2010 preview thus far, you will certainly be able to do this type of duck typing. Unfortunately, you cannot make an object implement an interface that it doesn't already implement... even if it meets the contract of the interface. In other words, the code that uses the duck must depend upon dynamic, instead of IQuacker. I am hoping that they include this capability in the RTM ofr 4.0 (And SL 4.0), because it would be killer for abstracting out framework classes.http://stackoverflow.com/questions/1478094/hotkey-commands-for-silverlight-in-mvvm/1490026#1490026Comment by Brian Genisio on Hotkey commands for Silverlight in MVVM?Brian Genisio2009-09-29T01:55:08Z2009-09-29T01:55:08ZI second Justin's response. I have created a KeyDown/KeyUp command attachment using Option #2 and I handle PageUp/PageDown and other hot keys in my SL app. It works really well. I pass the key code in through the command parameter, so my command can handle the key codes proprly.
It is a good idea to create a mass of these attached commands. They are simple to write, and easy to use anywhere you need them.http://stackoverflow.com/questions/1445257/how-to-set-a-role-provider-at-runtime/1445509#1445509Comment by Brian Genisio on How to set a role provider at runtime?Brian Genisio2009-09-18T16:47:16Z2009-09-18T16:47:16ZYeah, it does... Kind of That is actually what I was doing already... but I wasn't keen on this type of proxy. Deriving AND composing one's self of the same type can lead to troubles... and is ugly. BUT, it is the only thing I can come up with so far, so +1.http://stackoverflow.com/questions/1445257/how-to-set-a-role-provider-at-runtime/1445326#1445326Comment by Brian Genisio on How to set a role provider at runtime?Brian Genisio2009-09-18T15:41:15Z2009-09-18T15:41:15ZUnfortunately, that doesn't mean anything to me. The static method RoleProvider.Providers doesn't seem to exist... and I don't have a name from the web.config to choose... and I don't know what to do with it when I get it :|http://stackoverflow.com/questions/1434402/whats-wrong-with-output-parameters/1434466#1434466Comment by Brian Genisio on What's wrong with output parameters?Brian Genisio2009-09-16T18:27:36Z2009-09-16T18:27:36Z@Pavel: I think the significant difference is that with an out parameter, the variable needs to be declared separately. Any chance I have to reduce the number of temporary variables is a chance to make my code more readable, which is a win in my books :)http://stackoverflow.com/questions/1434402/whats-wrong-with-output-parameters/1434466#1434466Comment by Brian Genisio on What's wrong with output parameters?Brian Genisio2009-09-16T17:57:43Z2009-09-16T17:57:43ZI disagree... Int32.TryParse() should return an int? Any Try* method should return a nullable type... it reads better and it is easier to use. I create extension methods for string that do exactly that. "1".AsInt(), "1.5".AsDouble(), "true".AsBool() etc