User Student for Life - Stack Overflow most recent 30 from stackoverflow.com 2009-12-18T11:15:29Z http://stackoverflow.com/feeds/user/38041 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1142860/do-you-use-a-flag-or-make-it-two-operations 1 Do you use a flag or make it two operations? Student for Life 2009-07-17T12:05:33Z 2009-08-19T15:40:33Z <p>An interesting discussion arose today around the concept of having one method with flags versus two methods for each state of the flag. Which makes more sense and why?</p> <pre><code>void Submit(object data, bool isDraft); </code></pre> <p>or</p> <pre><code>void Submit(object data); void SubmitAsDraft(object data); </code></pre> <p>I am tending toward the later, where each operation explicitly indicates what the transaction is performing.</p> <p>Which makes more sense and are there well known rules or patterns that suggest why?</p> <p><strong>EDIT:</strong></p> <p>Assume the methods are being exposed as operations via a SOAP Service and OO concepts don't necessarily apply. Although OO is the implementation behind the service.</p> http://stackoverflow.com/questions/1216810/which-design-option-is-more-suitable-for-auto-correction-on-construction 1 Which design option is more suitable for auto-correction on construction? Student for Life 2009-08-01T15:23:01Z 2009-08-02T10:00:39Z <p>Trying to decipher an appropriate OO design to implement. The basic scenario is that you have a PstnNumber which is essentially a 10 digit phone number that always starts with 0 (e.g. 0195550000). A rule has been introduced to allow auto-correcting of a number if the leading 0 is missing (e.g. 195550000). </p> <p><strong>START EDIT</strong></p> <p>I realised the original question may have been misunderstood (thankyou kindly to those whom have answered already), so I have edited to try and better explain the scenario.</p> <p><strong>END EDIT</strong></p> <p>I started playing with some preliminary concepts and then thought I would ask if there was a more appropriate way to go or do one of these suffice (on some level)?</p> <p>Concept 1</p> <pre><code>public class PstnNumber { public virtual string Number { get; set; } public PstnNumber() { } public PstnNumber(string number) { this.Number = number; } } public class AutoFormattedPstnNumber : PstnNumber { public override string Number { get { return base.Number; } set { base.Number = value.PadLeft(10, '0'); } } public AutoFormattedPstnNumber() : base() { } public AutoFormattedPstnNumber(string number) { this.Number = number; } } </code></pre> <p>Concept 2 (removed)</p> <p>Concept 3</p> <pre><code>public class PstnNumber { public bool AutoCorrect { get; set; } private string number; public virtual string Number { get { return (this.AutoCorrect) ? this.number.PadLeft(10, '0') : this.number; } set { this.number = value; } } public PstnNumber() : this(false) { } public PstnNumber(bool autoCorrect) { this.AutoCorrect = autoCorrect; } public PstnNumber(string number) : this(false) { this.Number = number; } public PstnNumber(string number, bool autoCorrect) : this(autoCorrect) { this.Number = number; } } </code></pre> <p>I think Concept 1 may violate the Liskov Substitution rule because the subclass changes the behaviour of the Number property (happy to learn if I've misunderstood that).</p> <p>Any alternative suggestions would be received happily.</p> http://stackoverflow.com/questions/1152887/can-you-reverse-order-a-string-in-one-line-with-linq-or-a-lambda-expression 0 Can you reverse order a string in one line with LINQ or a LAMBDA expression Student for Life 2009-07-20T10:57:50Z 2009-07-21T10:45:30Z <p>Not that I would want to use this practically (for many reasons) but out of strict curiousity I would like to know if there is a way to reverse order a string using LINQ and/or LAMBDA expressions in <strong>one line of code</strong>, without utilising any framework "Reverse" methods.</p> <p>e.g.</p> <pre><code>string value = "reverse me"; string reversedValue = (....); </code></pre> <p>and reversedValue will result in "em esrever"</p> <p><strong>EDIT</strong> Clearly an impractical problem/solution I know this, so don't worry it's strictly a curiosity question around the LINQ/LAMBDA construct.</p> http://stackoverflow.com/questions/1143383/log-all-methodcalls-with-minimal-code-changes-c-3-0-net-3-5/1143402#1143402 3 Answer by Student for Life for Log all MethodCalls with minimal code changes (C# 3.0, .NET 3.5) Student for Life 2009-07-17T13:49:51Z 2009-07-17T13:59:11Z <p>Actually, there is a concept called Aspect Oriented Programming (AOP) and an implementation in c# called PostSharp (<a href="http://www.postsharp.org/" rel="nofollow">http://www.postsharp.org/</a>) that allows you to inject code post compilation.</p> http://stackoverflow.com/questions/345873/would-you-give-a-programmer-a-2nd-chance-if 11 Would you give a programmer a 2nd chance if... Student for Life 2008-12-06T03:58:30Z 2009-07-17T13:39:59Z <p>Would you give a potential programmer a 2nd chance in an interview if the face to face interview went really well, great communication skills, great cultural fit for the team and general chemistry was good. </p> <p>The candidate doesn't have a formal background (education wise) rather they have been taught on the job, but your gut feel is that they have a real raw talent that you can work with (I enjoy the mentoring).</p> <p>The problem is, when I gave them our programming problem (which isn't particularly difficult) their solution failed some of the test cases, these weren't edge cases but core to the algorithm. I don't want to state the problem, as its rather lengthy.</p> <p>I believe you could argue nerves, or the fact that as they have been taught on the job, they may have just not had the right teachers.</p> <p>Would you let them try again?</p> <p><strong>[Edited]</strong> If anyone was interested, I ended up hiring them and it was a good decision!</p> http://stackoverflow.com/questions/340518/should-we-introduce-biztalk-esb 2 Should we introduce BizTalk/ESB? Student for Life 2008-12-04T13:07:59Z 2009-07-07T08:28:10Z <p>My company are about to implement a new architecture in which we have proposed BizTalk (we are a Microsoft shop) as the Enterprise Service Bus (ESB) in a SOA (please don't quote Service Oriented Ambiguity) environment.</p> <p>Our business is to take Orders through our new Order Capture GUI which must connect to our Customers Database, Product Catalogue, Ordering System and some other ancillary systems each of which will be exposed as WCF services, orders are then passed to our Order Management and other downstream systems for fulfilment and finally to our Billing system for invoicing. Currently each system has its own GUI and uses manual process to pass information between them, in an effort to automate and integrate the natural thought was to introduce an ESB to connect them.</p> <p>Some of my rationale for an ESB is, the bus will worry about how to connect the systems (each system is agnostic and knows nothing of any other system) and how to format/translate the information. It is highly likely that in the future some of the existing systems will be swapped out for new systems or systems within our family of companies.</p> <p>This seems to make sense to me but I am now being met with some resistance as to why introduce it when a Point-to-Point solution could suffice.</p> <p>Unfortunately in the company history (prior to my appointment) an initial attempt to introduce BizTalk failed, but I am confident that it has a place and I can deliver it.</p> <p>My question is perhaps not so much about BizTalk but whether an ESB is a good idea in my scenario described, when does it make sense to introduce an ESB?</p> http://stackoverflow.com/questions/1069300/which-xml-structure-makes-more-sense 2 Which XML structure makes more sense? Student for Life 2009-07-01T14:06:08Z 2009-07-01T14:18:29Z <p>Without going into too much detail we are looking to use XML as meta-data to describe constraints on properties (This is a cutdown example and XSD did not support our proposed complex model), there are two options being considered, which of the following XML strucutures makes better sense?</p> <p>Option 1)</p> <pre><code>&lt;?xml version="1.0" encoding="us-ascii"?&gt; &lt;Properties xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"&gt; &lt;Property type="string"&gt; &lt;name&gt;quanitity&lt;/name&gt; &lt;contraints&gt; &lt;contraint type="isRequired"&gt; &lt;value&gt;true&lt;/value&gt; &lt;/contraint&gt; &lt;contraint type="regex"&gt; &lt;value&gt;^[0-9]$&lt;/value&gt; &lt;/contraint&gt; &lt;contraint type="regex"&gt; &lt;value&gt;^[a-zA-Z]$&lt;/value&gt; &lt;/contraint&gt; &lt;/contraints&gt; &lt;/Property&gt; &lt;/Properties&gt; </code></pre> <p>Option 2)</p> <pre><code>&lt;?xml version="1.0" encoding="us-ascii"?&gt; &lt;Properties xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"&gt; &lt;Property type="string"&gt; &lt;name&gt;quantity&lt;/name&gt; &lt;IsRequired&gt;true&lt;/IsRequired&gt; &lt;Regex&gt;^[0-9]$&lt;/Regex&gt; &lt;Regex&gt;^[a-zA-Z]$&lt;/Regex&gt; &lt;/Property&gt; &lt;/Properties&gt; </code></pre> http://stackoverflow.com/questions/846753/c-finding-instances-of-a-string-within-a-string/846760#846760 1 Answer by Student for Life for C#: finding instances of a string within a string Student for Life 2009-05-11T05:01:40Z 2009-05-11T05:01:40Z <p>Your probably looking for a tokeniser or Lexer, have a look at the following article:</p> <p><a href="http://en.csharp-online.net/CSharp%5FRegular%5FExpression%5FRecipes%E2%80%94A%5FBetter%5FTokenizer" rel="nofollow">C# Regular Expression Recipes—A Better Tokenizer</a></p> http://stackoverflow.com/questions/798122/how-can-i-remove-a-colon-between-two-numbers-in-vb-net/798228#798228 6 Answer by Student for Life for How can I remove a colon between two numbers in VB.NET? Student for Life 2009-04-28T14:22:36Z 2009-04-28T14:22:36Z <p>In VB.NET (credit Jonathan):</p> <pre><code> Dim text As String = "term: 156:59 datainput" Dim fixedText As String = Regex.Replace(text, "(\d+):(\d+)", "$1-$2") </code></pre> <p>nb: removed last two lines as suggested.</p> http://stackoverflow.com/questions/743866/configuring-file-for-dlls/743884#743884 0 Answer by Student for Life for configuring file for DLLs Student for Life 2009-04-13T13:26:58Z 2009-04-13T13:26:58Z <p>I was certain there is a way to do this in the framework, just can't remember off the top of my head. What you're looking for is Per-Assembly configuration files, I remember reading an article about this <a href="http://www.bearcanyon.com/dotnet/#AssemblySettings" rel="nofollow">Per Assembly Configuration Files</a></p> http://stackoverflow.com/questions/743409/what-is-the-correct-way-to-model-an-object-which-provides-many-services/743440#743440 0 Answer by Student for Life for What is the correct way to model an object which provides many services ? Student for Life 2009-04-13T09:28:39Z 2009-04-13T09:52:00Z <p>To me it looks like a classic Facade pattern, you talk about services is this for a SOA implementation? perhaps have a look at <a href="http://www.soapatterns.org/service%5Ffacade.asp" rel="nofollow">Service Facade</a>. I would be looking at using a singular entry point as you have described (Facade) with the parameters driving a Factory to return the specific implementation. The following example would allow you to add additional services without changing the implementation.</p> <pre><code>interface ISessionFacade { void ServicesSignIn(string serviceType); void ServiesSignOut(string serviceType); } interface ISessionService { void ServicesSignIn(); void ServiesSignOut(); } class ServiceFactory { public static ISessionService CreateService(string serviceType) { ISessionService sessionService = null; // TODO: Configuration lookup of serviceType, returning a fully qualified class name to load // TODO: Dynamically load class, perhaps this should be a singleton? return sessionService; } } class Session : ISessionFacade { public void ServicesSignIn(string serviceType) { ISessionService serviceSession = ServiceFactory.CreateService(serviceType); serviceSession.ServicesSignIn(); } public void ServiesSignOut(string serviceType) { ISessionService serviceSession = ServiceFactory.CreateService(serviceType); serviceSession.ServiesSignOut(); } } </code></pre> http://stackoverflow.com/questions/740890/c-how-can-i-change-the-text-of-a-label-thats-in-form1-from-another-class/740904#740904 0 Answer by Student for Life for C#: How can i change the text of a label thats in form1 from another class? Student for Life 2009-04-11T22:37:01Z 2009-04-11T22:55:04Z <p>You might want to consider using delegates or events and having your classes raise events back to the form, that way your classes will have no knowledge of your form.</p> <p><strong>EXAMPLE</strong></p> <pre><code>class SomeClass { public delegate void UpdateLabel(string value); public event UpdateLabel OnLabelUpdate; public void Process() { if (OnLabelUpdate != null) { OnLabelUpdate("hello"); } } } public partial class Form1 : Form { public Form1() { InitializeComponent(); } private void UpdateLabelButton_Click(object sender, EventArgs e) { SomeClass updater = new SomeClass(); updater.OnLabelUpdate += new SomeClass.UpdateLabel(updater_OnLabelUpdate); updater.Process(); } void updater_OnLabelUpdate(string value) { this.LabelToUpdateLabel.Text = value; } } </code></pre> http://stackoverflow.com/questions/574892/does-everything-go-through-the-bus 0 Does everything go through the bus? Student for Life 2009-02-22T13:05:55Z 2009-02-23T14:20:54Z <p>We have introduced BizTalk into our organization as a Service Bus, it is linking a new Web GUI to numerous existing back end systems. We have wrapped our existing systems as Services (WCF) and connected them to the BUS.</p> <p>We are also replacing some of the legacy system GUI's with our new web GUI (ensuring we replicate existing functionality) but I am curious as to whether we should expose all legacy services/api's via the BUS, connect to them directly or compose them differently and expose them via the bus. For example, lets say our Customer Management system has 5 existing services/api's, Search, Add, Retrieve, Update, Set Billing Details.</p> <p>Does it make sense to expose each of these services through the BUS (some argure it adds latency)? Or should the BUS only expose the coarse grained services such as Search, Add, Retrieve &amp; Update and not the fine grained one? Should the GUI connect to the fine grained service directly?</p> <p>I am under the impression that in an ideal SOA/ESB you would compose both Update and Set billing Details into one Coarse grained service, is this correct?</p> <p>I would like to stay true to the SOA/ESB paradigm, could someone enlighten me please.</p> http://stackoverflow.com/questions/464983/get-list-of-computers-in-a-domain-using-net/465010#465010 0 Answer by Student for Life for Get list of computers in a domain using .Net Student for Life 2009-01-21T12:05:45Z 2009-01-21T12:05:45Z <p>If you are on a windows domain, you can run an LDAP query against the directory to pull back a list of Machine Accounts</p> http://stackoverflow.com/questions/320593/what-is-the-purpose-of-a-bpm-in-a-purest-architecture 2 What is the purpose of a BPM in a purest architecture? Student for Life 2008-11-26T12:49:08Z 2009-01-09T18:59:34Z <p>I am putting together an architecture for a mid sized company who want to introduce a BPM (Business Process Management) tool. I understand that this would be helpful and want to introduce it but stuggle to find its appropriate place within the architecture. </p> <p>I want to know when and how you should use a BPM tool, how do you differentiate Business Process from Application Workflow?</p> http://stackoverflow.com/questions/301693/why-didnt-unit-testing-work-out-for-your-project/301820#301820 22 Answer by Student for Life for Why didn't unit testing work out for your project? Student for Life 2008-11-19T13:02:21Z 2008-12-25T21:14:20Z <p>Ego, most team members felt their code is superior enough to not require Unit Tests, at the end of the day its a <strong>cultural change</strong>.</p> http://stackoverflow.com/questions/392280/what-is-the-algorithm-used-to-generate-those-little-gravatar-identicon-images/392290#392290 5 Answer by Student for Life for what is the algorithm used to generate those little gravatar identicon images? Student for Life 2008-12-24T22:28:00Z 2008-12-24T23:15:14Z <p>Checkout <a href="http://www.codinghorror.com/blog/archives/000774.html" rel="nofollow">Coding Horror</a>, it has an algorithm based on IP Address similar to SO.</p> <p>From <a href="http://en.wikipedia.org/wiki/Identicon" rel="nofollow">Wikipedia:</a></p> <blockquote> <p>An Identicon is a visual representation of a hash value, usually of the IP address, serving to identify a user of a computer system. The original Identicon is a 9-block graphic, which has been extended to other graphic forms by third parties some of whom have used MD5 instead of the IP address as the identifier. In summary, an Identicon is a privacy protecting derivative of each user's IP address built into a 9-block image and displayed next the user's name. A visual representation is thought to be easier to compare than one which uses only numbers and more importantly, it maintains the person's privacy. The Identicon graphic is unique since it's based on the users IP, but it is not possible to recover the IP by looking at the Identicon.</p> </blockquote> http://stackoverflow.com/questions/355875/combine-two-linq-queries 0 Combine two LINQ queries? Student for Life 2008-12-10T12:22:10Z 2008-12-11T14:08:20Z <p>Hello,</p> <p>I think I am having a mental block but can someone please enlighten me on how to combine these two LINQ statements into one? </p> <pre><code>/// &lt;summary&gt; /// Returns an array of Types that implement the supplied generic interface in the /// current AppDomain. /// &lt;/summary&gt; /// &lt;param name="interfaceType"&gt;Type of generic interface implemented&lt;/param&gt; /// &lt;param name="includeAbstractTypes"&gt;Include Abstract class types in the search&lt;/param&gt; /// &lt;param name="includeInterfaceTypes"&gt;Include Interface class types in the search&lt;/param&gt; /// &lt;returns&gt;Array of Types that implement the supplied generic interface&lt;/returns&gt; /// &lt;remarks&gt; /// History.&lt;br/&gt; /// 10/12/2008 davide Method creation.&lt;br/&gt; /// &lt;/remarks&gt; public static Type[] GetTypesImplementingGenericInterface(Type interfaceType, bool includeAbstractTypes, bool includeInterfaceTypes) { // Use linq to find types that implement the supplied interface. var allTypes = AppDomain.CurrentDomain.GetAssemblies().ToList() .SelectMany(s =&gt; s.GetTypes()) .Where(p =&gt; p.IsAbstract == includeAbstractTypes &amp;&amp; p.IsInterface == includeInterfaceTypes); var implementingTypes = from type in allTypes from intf in type.GetInterfaces().ToList() where intf.FullName != null &amp;&amp; intf.FullName.Contains(interfaceType.FullName) select type; return implementingTypes.ToArray&lt;Type&gt;(); } </code></pre> <p>I am avoiding IsAssignableFrom as its seems to fail when not supplying the specific type of the generic interface therefore I believe using FullName caparison over IsAssignableFrom should suffice, for example:</p> <pre><code>namespace Davide { interface IOutput&lt;TOutputType&gt; { } class StringOutput : IOutput&lt;string&gt; { } } </code></pre> <p>typeof(IOutput&lt;>).FullName will return "Davide+IOutput`1"</p> <p>typeof(StringOutput).GetInterfaces()[0].FullName will return "Davide+IOutput`1[[System.String, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]]"</p> <p>Therefore using FullName.Contains should suffice</p> http://stackoverflow.com/questions/355875/combine-two-linq-queries/359466#359466 0 Answer by Student for Life for Combine two LINQ queries? Student for Life 2008-12-11T14:08:20Z 2008-12-11T14:08:20Z <p>After a short discussion with Jon Skeet and a bit more thought, I have posted the following answer. I altered the method to utilise GetGenericTypeDefinition rather than FullName.Contains, this would be a more robust solution. I also altered the LINQ query Where clauses for IsAbstract and IsInterface as these did not exclude types as expected. Thanks everyone for your feedback.</p> <pre><code>/// &lt;summary&gt; /// Returns an array of Types that implement the supplied generic interface in the /// current AppDomain. /// &lt;/summary&gt; /// &lt;param name="interfaceType"&gt;Type of generic interface implemented&lt;/param&gt; /// &lt;param name="excludeAbstractTypes"&gt;Exclude Abstract class types in the search&lt;/param&gt; /// &lt;param name="excludeInterfaceTypes"&gt;Exclude Interface class types in the search&lt;/param&gt; /// &lt;returns&gt;Array of Types that implement the supplied generic interface&lt;/returns&gt; /// &lt;remarks&gt; /// History.&lt;br/&gt; /// 11/12/2008 davide Created method.&lt;br/&gt; /// 11/12/2008 davide Altered method to use a two LINQ query pass.&lt;br/&gt; /// 11/12/2008 davide Altered method to use optimised combined LINQ query.&lt;br/&gt; /// 12/12/2008 davide Altered method and replaced FullName criteria match with GetGenericTypeDefinition.&lt;br/&gt; /// &lt;/remarks&gt; public static Type[] GetTypesImplementingGenericInterface(Type interfaceType, bool excludeAbstractTypes, bool excludeInterfaceTypes) { if (!interfaceType.IsGenericType) { throw new ArgumentException("Supplied interface is not a Generic type"); } if (interfaceType.ContainsGenericParameters) { interfaceType = interfaceType.GetGenericTypeDefinition(); } // Use linq to find types that implement the supplied generic interface. var implementingTypes = from assembly in AppDomain.CurrentDomain.GetAssemblies() from type in assembly.GetTypes() where (type.IsAbstract != excludeAbstractTypes) || (!excludeAbstractTypes) where (type.IsInterface != excludeInterfaceTypes) || (!excludeInterfaceTypes) from intf in type.GetInterfaces() where intf.IsGenericType &amp;&amp; intf.GetGenericTypeDefinition() == interfaceType select type; return implementingTypes.ToArray&lt;Type&gt;(); } </code></pre> http://stackoverflow.com/questions/320645/check-status-of-process/320670#320670 6 Answer by Student for Life for Check status of process Student for Life 2008-11-26T13:20:10Z 2008-11-26T13:20:10Z <p>Everything you need is in System.Diagnostics, for example: to check if a process is responding.</p> <pre><code>using System; using System.Diagnostics; namespace ProcessStatus { class Program { static void Main(string[] args) { Process[] processes = Process.GetProcesses(); foreach (Process process in processes) { Console.WriteLine("Process Name: {0}, Responding: {1}", process.ProcessName, process.Responding); } Console.Write("press enter"); Console.ReadLine(); } } } </code></pre> http://stackoverflow.com/questions/295235/getting-notified-when-the-datetime-changes-in-c/295252#295252 1 Answer by Student for Life for Getting notified when the datetime changes in c# Student for Life 2008-11-17T10:18:14Z 2008-11-17T11:13:08Z <p>Try looking into monitoring WMI events, you should be able to create a Wql event query that monitors the day of week change (i.e. ManagementEventWatcher etc) and then setup an event handler that fires when the event arrives.</p> <pre> using System; using System.Management; class Program { public static void Main() { WqlEventQuery q = new WqlEventQuery(); q.EventClassName = "__InstanceModificationEvent "; q.Condition = @"TargetInstance ISA 'Win32_LocalTime' AND TargetInstance.Hour = 22 AND TargetInstance.Minute = 7 AND TargetInstance.Second = 59"; Console.WriteLine(q.QueryString); using (ManagementEventWatcher w = new ManagementEventWatcher(q)) { w.EventArrived += new EventArrivedEventHandler(TimeEventArrived); w.Start(); Console.ReadLine(); // Block this thread for test purposes only.... w.Stop(); } } static void TimeEventArrived(object sender, EventArrivedEventArgs e) { Console.WriteLine("This is your wake-up call"); Console.WriteLine("{0}", new DateTime((long)(ulong)e.NewEvent.Properties["TIME_CREATED"].Value)); } } </pre> http://stackoverflow.com/questions/293916/how-to-iterate-hierarchical-data-and-output-the-hierarchy-using-c/293921#293921 0 Answer by Student for Life for How to iterate hierarchical data and output the hierarchy using C# Student for Life 2008-11-16T14:30:52Z 2008-11-16T14:30:52Z <p>recently i read about Hierarchical Linq Queries, check out <a href="http://weblogs.asp.net/okloeten/archive/2006/07/09/Hierarchical-Linq-Queries.aspx" rel="nofollow">http://weblogs.asp.net/okloeten/archive/2006/07/09/Hierarchical-Linq-Queries.aspx</a></p> <p>but I tend to aggree with Jon Skeet.</p> http://stackoverflow.com/questions/293874/program-to-simulate-vehicles-at-an-intersection-using-queues/293893#293893 1 Answer by Student for Life for Program to simulate vehicles at an intersection using queues Student for Life 2008-11-16T14:01:08Z 2008-11-16T14:13:30Z <p>For managing the Stop/Wait/Go light sequences look into "Finite State Machines"</p> http://stackoverflow.com/questions/1216810/which-design-option-is-more-suitable-for-auto-correction-on-construction/1216829#1216829 Comment by Student for Life on Which design option is more suitable for auto-correction on construction? Student for Life 2009-08-01T15:42:22Z 2009-08-01T15:42:22Z @Charles: Thanks Charles, my concern here would be that when you add a Validate method which property do you validate? Ideally you want to validate this.Number and the Auto Format rule should allow for 195550000 to pass. http://stackoverflow.com/questions/1216810/which-design-option-is-more-suitable-for-auto-correction-on-construction Comment by Student for Life on Which design option is more suitable for auto-correction on construction? Student for Life 2009-08-01T15:34:53Z 2009-08-01T15:34:53Z @Zed: Are you suggesting for e.g. PstnNumber AutoPstnFormatter.CreatePstn(&quot;195550000&quot;); ? http://stackoverflow.com/questions/1152887/can-you-reverse-order-a-string-in-one-line-with-linq-or-a-lambda-expression/1152917#1152917 Comment by Student for Life on Can you reverse order a string in one line with LINQ or a LAMBDA expression Student for Life 2009-07-21T00:23:52Z 2009-07-21T00:23:52Z @Jon, the question was edited to indicate &quot;curiosity&quot; as I wouldn't be using this idea anywhere as I know its an impractical concept. I just wanted to find a non obvious way to perform a known operation and then was thinking of sharing it with my team to see if they could figure it out, although i have now decided to scrap the idea. http://stackoverflow.com/questions/1152887/can-you-reverse-order-a-string-in-one-line-with-linq-or-a-lambda-expression/1152910#1152910 Comment by Student for Life on Can you reverse order a string in one line with LINQ or a LAMBDA expression Student for Life 2009-07-20T11:13:57Z 2009-07-20T11:13:57Z @Mehrdad, don't worry I wouldn't use it practically but was trying to satisfy personal curiosity. http://stackoverflow.com/questions/1152887/can-you-reverse-order-a-string-in-one-line-with-linq-or-a-lambda-expression Comment by Student for Life on Can you reverse order a string in one line with LINQ or a LAMBDA expression Student for Life 2009-07-20T11:01:11Z 2009-07-20T11:01:11Z @Mitch - I was trying to produce a problem for my team thinking it was possible, and got stuck http://stackoverflow.com/questions/1142860/do-you-use-a-flag-or-make-it-two-operations/1142897#1142897 Comment by Student for Life on Do you use a flag or make it two operations? Student for Life 2009-07-17T12:14:54Z 2009-07-17T12:14:54Z Agreed, that definitely makes sense from an OO implementation which may be whats going on in the background but what if you are exposing these operations as a Service where property settings do not apply? http://stackoverflow.com/questions/1142860/do-you-use-a-flag-or-make-it-two-operations/1142885#1142885 Comment by Student for Life on Do you use a flag or make it two operations? Student for Life 2009-07-17T12:12:31Z 2009-07-17T12:12:31Z Absolutely, but these methods would simply be a facade. http://stackoverflow.com/questions/1069300/which-xml-structure-makes-more-sense/1069312#1069312 Comment by Student for Life on Which XML structure makes more sense? Student for Life 2009-07-01T14:10:01Z 2009-07-01T14:10:01Z Trying to build an agnostic solution. http://stackoverflow.com/questions/740890/c-how-can-i-change-the-text-of-a-label-thats-in-form1-from-another-class/740904#740904 Comment by Student for Life on C#: How can i change the text of a label thats in form1 from another class? Student for Life 2009-04-11T22:45:41Z 2009-04-11T22:45:41Z working on an example now. http://stackoverflow.com/questions/438073/do-stackoverflow-users-agree-with-the-cwe-sans-top-25-most-dangerous-programming/438177#438177 Comment by Student for Life on Do stackoverflow users agree with the CWE/SANS Top 25 most dangerous programming mistakes? Student for Life 2009-01-13T11:29:11Z 2009-01-13T11:29:11Z @Chuck: Teach them the right thing from the start, then teach them again and again. I have mentored so many developers over the years and it astounds me that even experienced developers make fundamental mistakes because no one corrected them! http://stackoverflow.com/questions/110600/making-the-most-of-below-average-team-members/110627#110627 Comment by Student for Life on Making the most of below-average team members Student for Life 2008-12-27T11:46:01Z 2008-12-27T11:46:01Z Up vote just for &quot;Hire for attitude, train for skills&quot;. http://stackoverflow.com/questions/355875/combine-two-linq-queries/355989#355989 Comment by Student for Life on Combine two LINQ queries? Student for Life 2008-12-11T14:12:10Z 2008-12-11T14:12:10Z Jon, I have posted my own answer with the final solution, I found my alternative (yay) and decided to use GetGenericTypeDefinition as discussed. Thanks for the discussion it helped. http://stackoverflow.com/questions/355875/combine-two-linq-queries/355989#355989 Comment by Student for Life on Combine two LINQ queries? Student for Life 2008-12-11T03:36:42Z 2008-12-11T03:36:42Z @Jon: I updated the question with an example (hopefully it makes sense), let me know if you think I am missing something with FullName comparison. To be perfectly honest its not my preferred method, but I'm not sure on an alternative yet. http://stackoverflow.com/questions/355875/combine-two-linq-queries/355953#355953 Comment by Student for Life on Combine two LINQ queries? Student for Life 2008-12-10T22:07:14Z 2008-12-10T22:07:14Z Thanks Bruno, check out the comment I made on Jon Skeet's post about IsAssignableFrom, you may find it of interest. http://stackoverflow.com/questions/355875/combine-two-linq-queries/355989#355989 Comment by Student for Life on Combine two LINQ queries? Student for Life 2008-12-10T22:06:32Z 2008-12-10T22:06:32Z I originally had IsAssignableFrom but discovered that when you supply a generic interface with no specified type e.g. typeof(IInterface&lt;&gt;), it fails as the actual classes implement specific types e.g ConcreteClass : IInterface&lt;string&gt;, hence they don't match.