User Jason - Stack Overflow most recent 30 from stackoverflow.com 2009-12-18T17:52:06Z http://stackoverflow.com/feeds/user/45914 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1929450/wcf-service-coding-standard-where-to-put-my-class-library/1929476#1929476 0 Answer by Jason for WCF Service - Coding Standard - Where to put my class library? Jason 2009-12-18T16:56:59Z 2009-12-18T16:56:59Z <p>Here's a typical project structure following Löwy's recommendation:</p> <pre><code>MyProject.Data MyProject.Logic MyProject.Services MyProject.ServiceHosts MyProject.Presentation </code></pre> <p>Then <code>MyProject.ServiceHosts</code> will reference <code>MyProject.Services</code> and exposes the services defined there. So in Löwy's language, <code>MyProject.Services</code> is the class library, and <code>MyProject.ServiceHosts</code> contains the hosting executable.</p> http://stackoverflow.com/questions/1929371/is-this-valid-xml/1929418#1929418 2 Answer by Jason for Is this valid XML? Jason 2009-12-18T16:47:40Z 2009-12-18T16:47:40Z <p>The second is preferable. This makes it clear that <code>name</code> is a property of a child and does not identify the child iteself.</p> <p>Think of it in terms of classes:</p> <p>This</p> <pre><code>class Parent { string Name; List&lt;Child&gt; Children; } class Child { string Name; } </code></pre> <p>is preferable to</p> <pre><code>class Parent { string Name; List&lt;string&gt; Children; } </code></pre> <p>The second option also gives you the flexibility to expand in the future (add a birthday element, for example).</p> <p>The more subjective debate is whether to use elements or attributes for properties like <code>name</code>, etc.</p> <p>Finally, add a <code>children</code> element with the <code>child</code> elements contained there.</p> http://stackoverflow.com/questions/1929343/bitwise-and-on-32bit-integer/1929356#1929356 2 Answer by Jason for Bitwise AND on 32bit Integer Jason 2009-12-18T16:40:57Z 2009-12-18T16:40:57Z <p>Use the <code>&amp;</code> operator.</p> <blockquote> <p>Binary &amp; operators are predefined for the integral types[.] For integral types, &amp; computes the bitwise AND of its operands. </p> </blockquote> <p>From <a href="http://tinyurl.com/yeufjr8" rel="nofollow">MSDN</a>.</p> http://stackoverflow.com/questions/1928517/why-is-my-recursiveminimum-function-not-working/1928627#1928627 0 Answer by Jason for Why is my recursiveMinimum function not working? Jason 2009-12-18T14:45:51Z 2009-12-18T14:45:51Z <p>Instead of</p> <pre><code>int recursiveMinimum(int array[], int n); </code></pre> <p>I think that <code>recursiveMinimum</code> should be defined as</p> <pre><code>int recursiveMinimum(int array[], int index, int length); </code></pre> <p>with the intention that <code>recursiveMinimum</code> will return the minimum value in <code>array</code> between indexes <code>index</code> and <code>length</code> (i.e., <code>min array[i]</code> where <code>i</code> in <code>[index, length)</code>). Of course, you want to define this recursively. So then I would note that the minimum value in <code>array</code> between indexes <code>index</code> and <code>length</code> is</p> <pre><code>min(array[index], recursiveMinimum(array, index + 1, length)); </code></pre> <p>Of course, there are boundary cases (such as when <code>index = length - 1</code>). In this case you would just return <code>array[index]</code> as the minimum.</p> <p>Hope this helps. Let me know if this does not make sense.</p> http://stackoverflow.com/questions/1925856/compare-2-listdictionarystring-object/1925951#1925951 3 Answer by Jason for Compare 2 List<Dictionary<string, object>> Jason 2009-12-18T02:42:39Z 2009-12-18T02:42:39Z <pre><code>class DictionaryComparer&lt;TKey, TValue&gt; : IEqualityComparer&lt;Dictionary&lt;TKey, TValue&gt;&gt; { public bool Equals(Dictionary&lt;TKey, TValue&gt; x, Dictionary&lt;TKey, TValue&gt; y) { if (x == null) { throw new ArgumentNullException("x"); } if (y == null) { throw new ArgumentNullException("y"); } if (x.Count != y.Count) { return false; } foreach (var kvp in x) { TValue value; if(!x.TryGetValue(kvp.Key, out value)) { return false; } if(!kvp.Value.Equals(value)) { return false; } } return true; } public int GetHashCode(Dictionary&lt;TKey, TValue&gt; obj) { if (obj == null) { throw new ArgumentNullException("obj"); } int hash = 0; foreach (var kvp in obj) { hash = hash ^ kvp.Key.GetHashCode() ^ kvp.Value.GetHashCode(); } return hash; } } </code></pre> <p>Then:</p> <pre><code>public bool Contains( List&lt;Dictionary&lt;string, object&gt;&gt; first, List&lt;Dictionary&lt;string, object&gt;&gt; second) { if(first == null) { throw new ArgumentNullException("first"); } if(second == null) { throw new ArgumentNullException("second"); } IEqualityComparer&lt;Dictionary&lt;string, object&gt;&gt; comparer = new DictionaryComparer&lt;string, object&gt;(); return second.All(y =&gt; first.Contains(y, comparer)); } </code></pre> http://stackoverflow.com/questions/1925052/do-i-have-a-memory-leak-in-my-wpf-navigation/1925084#1925084 0 Answer by Jason for Do I have a memory leak in my WPF Navigation? Jason 2009-12-17T22:36:32Z 2009-12-17T22:36:32Z <p>This article is so unbelievably helpful on this subject: <a href="http://blogs.msdn.com/jgoldb/archive/2008/02/04/finding-memory-leaks-in-wpf-based-applications.aspx" rel="nofollow">Finding Memory Leaks in WPF-based applications</a>.</p> http://stackoverflow.com/questions/1919632/get-table-data-from-table-name-in-linq-datacontext/1924966#1924966 0 Answer by Jason for Get table-data from table-name in LINQ DataContext Jason 2009-12-17T22:13:02Z 2009-12-17T22:13:02Z <p>Here's an extension method that will do what you want.</p> <pre><code>static class DataContextExtensions { public static ITable GetTableByName(this DataContext context, string tableName) { if (context == null) { throw new ArgumentNullException("context"); } if (tableName == null) { throw new ArgumentNullException("tableName"); } return (ITable)context.GetType().GetProperty(tableName).GetValue(context, null); } } </code></pre> <p>Sample:</p> <pre><code>TextContext db = new TestContext(); db.GetTableByName("MyObjects"); </code></pre> http://stackoverflow.com/questions/1923725/unity-ioc-static-factories/1923799#1923799 0 Answer by Jason for Unity IOC Static Factories Jason 2009-12-17T18:51:55Z 2009-12-17T22:03:48Z <p>Inversion of control/dependency injection and <code>static</code> do not mix well. Instead, do the following. Have an <code>IFooFactory</code> and a concrete implementation <code>FooFactory</code>:</p> <pre><code>public interface IFooFactory { Foo Create(); } public class FooFactory : IFooFactory { public Foo Create() { Foo foo = // create Foo return foo; } } </code></pre> <p>Then, register <code>FooFactory</code> as the concrete implementation of <code>IFooFactory</code> with <code>ContainerControlledLifeTimeManager</code> so that it acts like a singleton:</p> <pre><code>IUnityContainer container = new UnityContainer(); var manager = new ContainerControlledLifeTimeManager(); container.RegisterType&lt;IFooFactory, FooFactory&gt;(manager); </code></pre> <p>Then, when you need the factory:</p> <pre><code>IFooFactory factory = container.Resolve&lt;IFooFactory&gt;(); Foo foo = factory.Create(); </code></pre> <p>If you can't alter the implementation of your factory so that it doesn't have <code>static</code> methods then you will need to create a wrapper:</p> <pre><code>public class FooFactoryWrapper { public Foo Create() { return FooFactoryTypeWithStaticCreateMethod.Create(); } } </code></pre> <p>and then register</p> <pre><code>container.Register&lt;IFooFactory, FooFactoryWrapper&gt;(); </code></pre> <p>Of course, you can register <code>FooFactory</code> or <code>FooFactoryWrapper</code> as the concrete implementation of <code>IFooFactory</code> in XML too. Let me know if you need help with this.</p> <p>The main point is get away from static.</p> <p>That said, here's how you can register a static factory in Unity:</p> <pre><code>IUnityContainer container = new UnityContainer(); container.AddNewExtension&lt;StaticFactoryExtension&gt;() .Configure&lt;IStaticFactoryConfiguration&gt;() .RegisterFactory&lt;IFoo&gt;(container =&gt; FooFactory.Create()); var foo = container.Resolve&lt;IFoo&gt;(); // uses FooFactory </code></pre> <p>I can not figure out how to set this up using XML and after poking around using Reflector I do not think that it is possible. I can not find any classes in <code>Microsoft.Practices.Unity.StaticFactory</code> that could handle a configuration element. You probably have to add your own handler.</p> http://stackoverflow.com/questions/1924097/problem-with-ienumerablet/1924192#1924192 1 Answer by Jason for Problem with IEnumerable<T> Jason 2009-12-17T20:00:02Z 2009-12-17T20:00:02Z <p>You either need to do one of four things:</p> <p>Add to the top of your source file:</p> <pre><code>using System.Collections.Generics; </code></pre> <p>Enclose the method in a generic class:</p> <pre><code>class MyClass&lt;T&gt; { private IEnumerable&lt;T&gt; Read() { // } } </code></pre> <p>Make the method generic:</p> <pre><code>private IEnumerable&lt;T&gt; Read&lt;T&gt;() { // } </code></pre> <p>Replace <code>T</code> with a known type, for example:</p> <pre><code>private IEnumerable&lt;string&gt; Read() { // } </code></pre> http://stackoverflow.com/questions/1923308/insert-into-namevaluecollection-in-net/1923442#1923442 0 Answer by Jason for Insert into NameValueCollection in .NET Jason 2009-12-17T17:48:48Z 2009-12-17T17:48:48Z <p>This is not really what <code>NameValueCollection</code>s are meant for; if you need to manipulate your collection in this way you should consider a different data structure (<a href="http://msdn.microsoft.com/en-us/library/system.collections.specialized.ordereddictionary.aspx" rel="nofollow"><code>OrderedDictionary</code></a>?). That said, here's an extension method that will do what you want:</p> <pre><code>static class NameValueCollectionExtensions { public static void Insert(this NameValueCollection collection, int index, string key, string value) { int count = collection.Count; if (index &lt; 0 || index &gt; count) { throw new ArgumentOutOfRangeException("index"); } List&lt;string&gt; keys = new List&lt;string&gt;(collection.AllKeys); List&lt;string&gt; values = keys.Select(k =&gt; collection[k]).ToList(); keys.Insert(index, key); values.Insert(index, value); collection.Clear(); for (int i = 0; i &lt;= count; i++) { collection.Add(keys[i], values[i]); } } } </code></pre> <p>I don't know that <code>collection.AllKeys</code> is guaranteed to return the keys in the order that they were inserted. If you can find documentation stating that this is the case then the above is fine. Otherwise, replace the line</p> <pre><code>List&lt;string&gt; keys = new List&lt;string&gt;(collection.AllKeys); </code></pre> <p>with</p> <pre><code>List&lt;string&gt; keys = new List&lt;string&gt;(); for(int i = 0; i &lt; count; i++) { keys.Add(collection.Keys[i]); } </code></pre> http://stackoverflow.com/questions/1922497/how-do-i-combine-linq-expressions-into-one/1922552#1922552 4 Answer by Jason for How do I combine LINQ expressions into one? Jason 2009-12-17T15:33:53Z 2009-12-17T15:50:06Z <p>You can use <a href="http://msdn.microsoft.com/en-us/library/bb548651.aspx" rel="nofollow"><code>Enumerable.Aggregate</code></a> combined with <a href="http://msdn.microsoft.com/en-us/library/bb353520.aspx" rel="nofollow"><code>Expression.AndAlso</code></a>. Here's a generic version:</p> <pre><code>Expression&lt;Func&lt;T, bool&gt;&gt; AndAll&lt;T&gt;( IEnumerable&lt;Expression&lt;Func&lt;T, bool&gt;&gt;&gt; expressions) { if(expressions == null) { throw new ArgumentNullExpression("expressions"); } if(expression.Count() == 0) { return t =&gt; true; } Type delegateType = typeof(Func&lt;,&gt;) .GetGenericTypeDefinition() .MakeGenericType(new[] { typeof(T), typeof(bool) } ); var combined = expressions .Cast&lt;Expression&gt;() .Aggregate((e1, e2) =&gt; Expression.AndAlso(e1, e2)); return (Expression&lt;Func&lt;T,bool&gt;&gt;)Expression.Lambda(delegateType, combined); } </code></pre> <p>Your current code is never assigning to <code>combined</code>:</p> <pre><code>expr =&gt; Expression.And(combined, expr); </code></pre> <p>returns a new <code>Expression</code> that is the result of bitwise anding <code>combined</code> and <code>expr</code> but it does not mutate <code>combined</code>.</p> http://stackoverflow.com/questions/1918810/is-it-possible-to-select-data-while-a-transaction-is-occuring/1918831#1918831 -2 Answer by Jason for Is it possible to select data while a transaction is occuring? Jason 2009-12-17T00:55:48Z 2009-12-17T11:38:33Z <p>Yes, by default a <code>TransactionScope</code> will lock the tables involved in the transaction. If you need to read while a transaction is taking place, enter another <code>TransactionScope</code> with <code>TransactionOptions</code> <code>IsolationLevel.ReadUncommitted</code>:</p> <pre><code>TransactionScopeOptions = new TransactionScopeOptions(); options.IsolationLevel = IsolationLevel.ReadUncommitted; using(var scope = new TransactionScope( TransactionScopeOption.RequiresNew, options ) { // read the database } </code></pre> <p>With a LINQ-to-SQL <code>DataContext</code>:</p> <pre><code>// db is DataContext db.Transaction = db.Connection.BeginTransaction(System.Data.IsolationLevel.ReadUncommitted); </code></pre> <p>Note that there is a difference between <code>System.Transactions.IsolationLevel</code> and <code>System.Data.IsolationLevel</code>. Yes, you read that correctly.</p> http://stackoverflow.com/questions/1919236/how-can-i-fairly-choose-an-item-from-a-list/1919245#1919245 3 Answer by Jason for How can I fairly choose an item from a list? Jason 2009-12-17T03:19:33Z 2009-12-17T03:45:47Z <p>Pseudocode for special random number generator:</p> <pre><code>rng is random number generator produces uniform integers from [0, max) compute m = max modulo length of attendee list do { draw a random number r from rng } while(r &gt;= max - m) return r modulo length of attendee list </code></pre> <p>This eliminates the bias to the front part of the list. Then</p> <pre><code>put the attendees in some data structure indexable by integers for every prize in the prize list draw a random number r using above compute index = r modulo length of attendee list return the attendee at index </code></pre> <p>In C#:</p> <pre><code>public NextUnbiased(Random rg, int max) { do { int r = rg.Next(); } while(r &gt;= Int32.MaxValue - (Int32.MaxValue % max)); return r % max; } public Attendee SelectWinner(IList&lt;Attendee&gt; attendees, Random rg) { int winningAttendeeIndex = NextUnbiased(rg, attendees.Length) return attendees[winningAttendeeIndex]; } </code></pre> <p>Then:</p> <pre><code>// attendees is list of attendees // rg is Random foreach(Prize prize in prizes) { Attendee winner = SelectWinner(attendees, rg); Console.WriteLine("Prize {0} won by {1}", prize.ToString(), winner.ToString()); } </code></pre> http://stackoverflow.com/questions/1918086/how-do-i-match-this-pattern-what-is-the-correct-algorithm/1918237#1918237 2 Answer by Jason for How do I match this pattern, what is the correct algorithm? Jason 2009-12-16T22:24:27Z 2009-12-17T02:46:49Z <p>A stack is unnecessary here, but since you asked for it. I tried to code this for clarity.</p> <pre><code>bool AcceptOrReject(string s) { Stack&lt;char&gt; stack = new Stack&lt;char&gt;(); int index = 0; while (index &lt; s.Length &amp;&amp; s[index] == 'a') { stack.Push(s[index]); index++; } if (index == s.Length || s[index] != 'b') { return false; } index++; while (index &lt; s.Length &amp;&amp; s[index] == 'c') { if (stack.Count == 0) { return false; } stack.Pop(); index++; } return (stack.Count == 0) &amp;&amp; (index == s.Length); } </code></pre> http://stackoverflow.com/questions/1917427/which-is-fast-comparison-convert-toint32stringvalueintvalue-or-stringvalue/1917455#1917455 2 Answer by Jason for Which is fast comparison: Convert.ToInt32(stringValue)==intValue or stringValue==intValue.ToString() Jason 2009-12-16T20:28:50Z 2009-12-16T20:58:48Z <p>Yikes, you show your domain logic as being inside your profiling loop so you weren't testing the time difference between the <code>Convert</code> and <code>ToString</code> versions of your code; you were testing the combined time of the conversion plus the execution of your business logic. If your business logic is slow and dominates the conversion time, of course you will see the same time in each version.</p> <p>Now, with that out of the way, even worrying about this until you know that it's a performance bottleneck is premature optimization. In particular, if executing your domain logic dominates the conversion time, the difference between the two will never matter. So, choose the one that is most readable.</p> <p>Now, as for which version to use: You need to start by specifying exactly what you're testing. What are your inputs? Is "007" ever going to be an input? Is "007" different than the integer 7? Is "1,024" ever going to be an input? Are there localization concerns?</p> http://stackoverflow.com/questions/1915801/structuremap-is-not-reset-between-nunit-tests/1915860#1915860 0 Answer by Jason for StructureMap is not reset between NUnit tests Jason 2009-12-16T16:29:54Z 2009-12-16T18:26:53Z <p>Of course it doesn't reset between tests. <code>ObjectFactory</code> is a static wrapper around an <code>InstanceManager</code>; it is static through an <code>AppDomain</code> and as tests run in the same <code>AppDomain</code> this is why it is not reset. You need to <a href="http://www.nunit.org/index.php?p=teardown&amp;r=2.2.10" rel="nofollow"><code>TearDown</code></a> the <code>ObjectFactory</code> between tests or configure a new <code>Container</code> for each test (i.e., get away from using the static <code>ObjectFactory</code>).</p> <p>Incidentally, this is the main reason for avoiding global state and singletons: they are not friendly to testing.</p> <p>From the Google guide to <a href="http://googletesting.blogspot.com/2008/08/by-miko-hevery-so-you-decided-to.html" rel="nofollow">Writing Testable Code</a>:</p> <blockquote> <p>Global State: Global state is bad from theoretical, maintainability, and understandability point of view, but is tolerable at run-time as long as you have one instance of your application. However, each test is a small instantiation of your application in contrast to one instance of application in production. The global state persists from one test to the next and creates mass confusion. Tests run in isolation but not together. Worse yet, tests fail together but problems can not be reproduced in isolation. Order of the tests matters. The APIs are not clear about the order of initialization and object instantiation, and so on. I hope that by now most developers agree that global state should be treated like GOTO.</p> </blockquote> http://stackoverflow.com/questions/1915870/what-is-considered-to-be-net/1915968#1915968 2 Answer by Jason for What is considered to be .Net? Jason 2009-12-16T16:43:06Z 2009-12-16T16:43:06Z <p>Check out Scott Hanselman's <a href="http://www.hanselman.com/blog/WhatGreatNETDevelopersOughtToKnowMoreNETInterviewQuestions.aspx" rel="nofollow">What Great .NET Developers Ought to Know</a>.</p> http://stackoverflow.com/questions/1914977/map-strings-to-numbers-maintaining-the-lexicograhic-ordering/1915030#1915030 14 Answer by Jason for Map strings to numbers maintaining the lexicograhic ordering Jason 2009-12-16T14:36:04Z 2009-12-16T14:36:04Z <p>If you require that <code>f</code> map to integers this is impossible.</p> <p>Suppose that there is such a map <code>f</code>. Consider the strings <code>a</code>, <code>aa</code>, <code>aaa</code>, etc. Consider the values <code>f(a)</code>, <code>f(aa)</code>, <code>f(aaa)</code>, etc. As we require that <code>f(a) &lt; f(aa) &lt; f(aaa) &lt; ... </code> we see that <code>f(a_n)</code> tends to infinity as <code>n</code> tends to infinity; here I am using the obvious notation that <code>a_n</code> is the character <code>a</code> repeated <code>n</code> times. Now consider the string <code>b</code>. We require that <code>f(a_n) &lt; f(b)</code> for all <code>n</code>. But <code>f(b)</code> is some finite integer and we just showed that <code>f(a_n)</code> goes to infinity. We have a contradiction. No such map is possible.</p> <p>Maybe you could tell us what you need this for? This is fairly abstract and we might be able to suggest something more suitable. Further, don't necessarily worry about solving "it" generally. YAGNI and all that.</p> http://stackoverflow.com/questions/1910086/invoking-a-method-from-a-class/1910100#1910100 4 Answer by Jason for Invoking a method from a class Jason 2009-12-15T20:17:38Z 2009-12-15T20:17:38Z <p>Am I understanding correctly that you want to call a method asynchronously? If so:</p> <pre><code>Thread.QueueUserWorkItem(myCallBack) </code></pre> <p>where <code>myCallBack</code> is a delegate eating an <code>object</code> and returning <code>void</code>. See <a href="http://msdn.microsoft.com/en-us/library/kbf0f1ct.aspx" rel="nofollow">MSDN</a> where there's even a simple example.</p> http://stackoverflow.com/questions/1909528/regular-expression-where-part-of-string-must-be-number-between-0-100/1909559#1909559 9 Answer by Jason for Regular expression where part of string must be number between 0-100 Jason 2009-12-15T18:53:59Z 2009-12-15T18:53:59Z <p>Don't use regex? If you're struggling to come up with the regex to parse this that says that maybe it's too complex and you should find something simpler. I see absolutely no benefit to using regex here when a simple</p> <pre><code>int value; if(!Int32.TryParse(s, out value)) { throw new ArgumentException(); } if(value &lt; 0 || value &gt; 86400) { throw new ArgumentOutOfRangeException(); } </code></pre> <p>will work just fine. It's just so clear and easily maintainable.</p> http://stackoverflow.com/questions/1909482/process-pipeline-in-c/1909505#1909505 2 Answer by Jason for process pipeline in c# Jason 2009-12-15T18:45:11Z 2009-12-15T18:45:11Z <p>Sure:</p> <pre><code>Queue&lt;Process&gt; processes = GetProcesses(); while(processes.Count &gt; 0) { Process process = processes.Dequeue(); // execute process and capture output } </code></pre> <p>Here's MSDN on <a href="http://msdn.microsoft.com/en-us/library/7977ey2c.aspx" rel="nofollow"><code>Queue(T)</code></a>.</p> http://stackoverflow.com/questions/1908669/mef-wcf-service-host/1908718#1908718 2 Answer by Jason for MEF + WCF Service Host? Jason 2009-12-15T16:41:08Z 2009-12-15T17:00:31Z <p>You can handle this by implementing an <code>IServiceBehavior</code> and an <code>IInstanceProvider</code>, registering my implmentation of <code>IServiceBehavior</code> in <code>OnStart</code>, and having <code>IInstanceProvider</code> manage object lifetime for you. In particular, you can use an inversion of control container that serves up the same instance of your service type on each request (i.e., singleton-like behavior without being a singleton).</p> <pre><code>public partial class MyServiceHost : ServiceBase { // details elided protected override void OnStart(string[] args) { this.Host = new ServiceHost(typeof(MySerivce)); this.Host.Description.Behaviors.Add(new MyServiceBehavior()); this.Host.Open(); } } public class MyServiceBehavior : IServiceBehavior { public void AddBindingParameters( ServiceDescription serviceDescription, ServiceHostBase serviceHostBase, Collection&lt;ServiceEndpoint&gt; endpoints, BindingParameterCollection bindingParameters ) { } public void ApplyDispatchBehavior( ServiceDescription serviceDescription, ServiceHostBase serviceHostBase) { IIoCContainer container = new IocContainer(); foreach (var cdBase in serviceHostBase.ChannelDispatchers) { ChannelDispatcher cd = cdBase as ChannelDispatcher; if (cd != null) { foreach (EndpointDispatcher ed in cd.Endpoints) { ed.DispatchRuntime.InstanceProvider = new MyInstanceProvider( container, serviceDescription.ServiceType ); } } } } public void Validate( ServiceDescription serviceDescription, ServiceHostBase serviceHostBase ) { } } public class MyInstanceProvider : IInstanceProvider { readonly IIocContainer _container; readonly Type _serviceType; public InstanceProvider(IIoCContainer container, Type serviceType) { _container = container; _serviceType = serviceType; } public object GetInstance(InstanceContext instanceContext, Message message) { return _container.Resolve(_serviceType); } public object GetInstance(InstanceContext instanceContext) { return GetInstance(instanceContext, null); } public void ReleaseInstance(InstanceContext instanceContext, object instance) { } } </code></pre> http://stackoverflow.com/questions/1908539/net-registery-reading-writing/1908565#1908565 2 Answer by Jason for .net registery reading writing Jason 2009-12-15T16:16:48Z 2009-12-15T16:16:48Z <p>Look at <a href="http://msdn.microsoft.com/en-us/library/microsoft.win32.registry.aspx" rel="nofollow"><code>Microsoft.Win32.Registry</code></a>. There is an abundance of sample code there. You can also look at <a href="http://www.codeproject.com/KB/system/modifyregistry.aspx" rel="nofollow">CodeProject</a>. Lastly, MSDN has a good overview on the <a href="http://tinyurl.com/y9yst3b" rel="nofollow">Registry</a>.</p> http://stackoverflow.com/questions/1907983/why-is-evaluation-of-lambda-expressions-is-not-valid-in-the-debugger/1908043#1908043 3 Answer by Jason for Why is "Evaluation of lambda expressions is not valid in the debugger"? Jason 2009-12-15T15:03:20Z 2009-12-15T15:03:20Z <p>Here: <a href="http://blogs.msdn.com/jaredpar/archive/2009/08/26/why-no-linq-in-debugger-windows.aspx" rel="nofollow">Why is LINQ absent from debugger windows?</a></p> <p>And this previous question: <a href="http://stackoverflow.com/questions/725499/vs-debugging-quick-watch-tool-and-lambda-expressions">VS debugging “quick watch” tool and lambda expressions</a></p> <p>In short, complexity.</p> http://stackoverflow.com/questions/1904652/c-generics-better-way-to-match-the-generics-type-to-another/1904787#1904787 5 Answer by Jason for C# Generics: Better Way to Match the Generic's Type to Another? Jason 2009-12-15T01:58:54Z 2009-12-15T06:27:57Z <p>What you're doing here is a poor man's <a href="http://martinfowler.com/articles/injection.html" rel="nofollow">inversion of control container</a>. Buckle up, learn the concepts of <a href="http://en.wikipedia.org/wiki/Dependency%5Finjection" rel="nofollow">dependency injection</a> and <a href="http://en.wikipedia.org/wiki/Inversion%5Fof%5Fcontrol" rel="nofollow">inversion of control</a> and then you can write code like this:</p> <pre><code>IIoCContainer container = new IoCContainer(); container.RegisterType&lt;IBaseRepository&lt;UserClass&gt;, UserClassRepository&gt;(); container.RegisterType&lt;IBaseRepository&lt;PostClass&gt;, PostClassRepository&gt;(); var userClassRepository = container.Resolve&lt;IBaseRepository&lt;UserClass&gt;&gt;(); </code></pre> <p>You can configure the container at runtime (as above) or in a configuration file. You can specify the object lifetime (transient, singleton, per thread, or custom). Dependency injection containers are intended to assist with object creation, especially for complex object structures and dependencies, coding to interfaces instead of concrete types (no more <code>new ConcreteType()</code>) and component configuration.</p> <p>(By the way, drop the suffix <code>Class</code> from you class names (so <code>User</code> and <code>Post</code>, not <code>UserClass</code> and <code>PostClass</code>).)</p> http://stackoverflow.com/questions/1904782/whats-the-real-reason-for-preventing-protected-member-access-through-a-base-sibl/1904821#1904821 0 Answer by Jason for What's the real reason for preventing protected member access through a base/sibling class? Jason 2009-12-15T02:12:22Z 2009-12-15T03:41:04Z <p>"Protected" means exactly that a member is accessible only to the defining class and all subclasses.</p> <p>As <code>MySuperDerived</code> is a subclass of <code>MyDerived</code>, <code>Member</code> is accessible to <code>MyDerived</code>. Think of it this way: <code>MySuperDerived</code> is a <code>MyDerived</code> and therefore its private and protected members (inherited from <code>MyDerived</code>) are accessible to <code>MyDerived</code>.</p> <p>However, <code>YourDerived</code> is not a <code>MyDerived</code> and therefore its private and protected members are inaccessible to <code>MyDerived</code>.</p> <p>And you can't access <code>Member</code> on an instance of <code>Base</code> because <code>Base</code> might be a <code>YourDerived</code> which is not a <code>MyDerived</code> nor a subclass of <code>MyDerived</code>.</p> <p>And don't do that using static methods to permit access thing. That's defeating the purpose of encapsulation and is a big smell that you haven't designed things properly.</p> http://stackoverflow.com/questions/1902108/prefix-search-through-list-dictionary-using-net-stringdictionary/1902156#1902156 4 Answer by Jason for Prefix search through list/dictionary using .NET StringDictionary? Jason 2009-12-14T17:03:56Z 2009-12-14T17:03:56Z <p><code>StringDictionary</code> is merely a hash table where the keys and values are <code>string</code>s. This existed before generics (so that <code>Dictionary&lt;string, string&gt;</code> was not possible).</p> <p>The data structure that you want here is a <a href="http://en.wikipedia.org/wiki/Trie" rel="nofollow">trie</a>. There are implementations on <a href="http://www.codeproject.com/" rel="nofollow">CodeProject</a>:</p> <ol> <li><a href="http://www.codeproject.com/KB/recipes/PhoneDirectory.aspx" rel="nofollow">Phone Directory Implementation Using TRIE</a></li> <li><a href="http://www.codeproject.com/KB/recipes/prefixtree.aspx" rel="nofollow">A Reusable Prefix Tree using Generics in C# 2.0</a></li> </ol> <p>Or, if you're that kind of guy, roll your own (see <a href="http://en.wikipedia.org/wiki/Introduction%5Fto%5FAlgorithms" rel="nofollow">CLRS</a>).</p> http://stackoverflow.com/questions/1901236/table-not-getting-updated-while-using-linq/1901259#1901259 0 Answer by Jason for Table not getting updated while using LinQ Jason 2009-12-14T14:34:13Z 2009-12-14T14:34:13Z <p>What does <code>GetEmp</code> do? In particular, as presented it appears that it does not have a reference to the <code>empDataContext</code> named <code>db</code>. <code>DataContext</code>s are examples of <a href="http://martinfowler.com/eaaCatalog/identityMap.html" rel="nofollow">identity maps</a> and as such they track items that have been loaded from a persistence mechanism. If you are using a different <code>DataContext</code> in <code>GetEmp</code> then the <code>DataContext</code> <code>db</code> does not know about the instance of <code>employee</code> with <code>SomeID</code> equal to the value represented by <code>txtempID.Text</code>. </p> <p>So either pass a reference to <code>db</code> into <code>GetEmp</code> or change your code to the following:</p> <pre><code>emptable = db.Single(Function(e as employee) e.SomeID=Int32.Parse(txtempID.Text)) </code></pre> <p>then your update should work.</p> http://stackoverflow.com/questions/1897109/overloaded-constructor-chain/1897150#1897150 1 Answer by Jason for Overloaded constructor chain Jason 2009-12-13T17:42:32Z 2009-12-13T17:42:32Z <pre><code>public class Bar : Foo { public int Amount { get; set; } public Bar() : this(0) { } public Bar(int amount) : this(String.Empty, amount) { } public Bar(string name) : this(name, 0) { } public Bar(string name, int amount) : base(name) { this.Amount = amount; } } </code></pre> <p>or</p> <pre><code>public class Bar : Foo { public int Amount { get; set; } public Bar() : this(String.Empty, 0) { } public Bar(string name) : this(name, 0) { } public Bar(string name, int amount) : base(name) { this.Amount = amount; } } </code></pre> http://stackoverflow.com/questions/1893780/can-i-have-the-sum-in-one-select/1893791#1893791 0 Answer by Jason for Can I have the sum() in one select? Jason 2009-12-12T15:39:41Z 2009-12-12T15:39:41Z <p>Given your description, this will do it for you:</p> <pre><code>select a, sum(b) from myTable group by a </code></pre> http://stackoverflow.com/questions/1929610/collections-and-application-wide-use/1929635#1929635 Comment by Jason on collections and application wide use? Jason 2009-12-18T17:34:08Z 2009-12-18T17:34:08Z Because singletons are evil. http://stackoverflow.com/questions/1929492/using-var-outside-of-a-method/1929536#1929536 Comment by Jason on Using var outside of a method Jason 2009-12-18T17:07:53Z 2009-12-18T17:07:53Z Since when could classes be in multiple assemblies? http://stackoverflow.com/questions/1928517/why-is-my-recursiveminimum-function-not-working/1928562#1928562 Comment by Jason on Why is my recursiveMinimum function not working? Jason 2009-12-18T14:47:36Z 2009-12-18T14:47:36Z The condition is bad to begin with. <code>n + 1</code> is not necessarily a valid index into the array. And checking for <code>NULL</code>? What is that accomplishing? http://stackoverflow.com/questions/1919632/get-table-data-from-table-name-in-linq-datacontext/1924966#1924966 Comment by Jason on Get table-data from table-name in LINQ DataContext Jason 2009-12-18T12:46:45Z 2009-12-18T12:46:45Z An <code>ITable</code> is also an <code>IEnumerable</code>, so enumerate the records using your favorite method (e.g., <code>foreach(object r in tbl) { }</code>). http://stackoverflow.com/questions/1919632/get-table-data-from-table-name-in-linq-datacontext/1924930#1924930 Comment by Jason on Get table-data from table-name in LINQ DataContext Jason 2009-12-18T03:39:04Z 2009-12-18T03:39:04Z This will type <code>table</code> as an <code>object</code>; you need to cast to an <code>ITable</code> before use. http://stackoverflow.com/questions/1925856/compare-2-listdictionarystring-object/1925940#1925940 Comment by Jason on Compare 2 List<Dictionary<string, object>> Jason 2009-12-18T02:49:06Z 2009-12-18T02:49:06Z First, I think you added that while I was making my comment; I'm sorry if I overlooked it. Second, I'm pretty sure that you <i>have</i> to set up a custom <code>IEqualityComparer</code> here so that the default will absolutely not work. http://stackoverflow.com/questions/1925856/compare-2-listdictionarystring-object/1925940#1925940 Comment by Jason on Compare 2 List<Dictionary<string, object>> Jason 2009-12-18T02:45:37Z 2009-12-18T02:45:37Z You almost surely have to set up a custom <code>IEqualityComparer</code> for this to work http://stackoverflow.com/questions/1923725/unity-ioc-static-factories/1923799#1923799 Comment by Jason on Unity IOC Static Factories Jason 2009-12-17T22:04:36Z 2009-12-17T22:04:36Z Okay, in that case I added how register a factory method in Unity. However, I can not figure out how to configure it via XML and I do not think that it is possible. You might have to create your own handler. http://stackoverflow.com/questions/1922735/inject-into-attribute/1923137#1923137 Comment by Jason on Inject into attribute? Jason 2009-12-17T17:06:50Z 2009-12-17T17:06:50Z To add to this correct answer, you have to think about why this is the case. Attributes are embedded in metadata in the assembly and apply to the type, not instances of the type. If attribute parameters were not constant, this could not be the case. http://stackoverflow.com/questions/1359188/c-regular-expression-to-validate-a-date/1359231#1359231 Comment by Jason on C# Regular Expression to validate a date? Jason 2009-12-17T16:57:49Z 2009-12-17T16:57:49Z Please attribute the above statement to Jamie Zawinski. http://stackoverflow.com/questions/1922497/how-do-i-combine-linq-expressions-into-one/1922552#1922552 Comment by Jason on How do I combine LINQ expressions into one? Jason 2009-12-17T16:03:01Z 2009-12-17T16:03:01Z @gilles27: Yeah, if you're only using it for the predicate in a <code>Where</code> clause, then Jon's answer is the way to go. If you ever need a more general version, my version will help you. :-) http://stackoverflow.com/questions/1922497/how-do-i-combine-linq-expressions-into-one/1922543#1922543 Comment by Jason on How do I combine LINQ expressions into one? Jason 2009-12-17T15:58:18Z 2009-12-17T15:58:18Z @Jon Skeet: <code>combined</code> will be typed as an <code>Expression</code>; you need to do some work to return it as an <code>Expression&lt;Func&lt;Company, bool&gt;&gt;</code>. http://stackoverflow.com/questions/1919236/how-can-i-fairly-choose-an-item-from-a-list/1919245#1919245 Comment by Jason on How can I fairly choose an item from a list? Jason 2009-12-17T12:54:05Z 2009-12-17T12:54:05Z There are RNGs with periods large enough to avoid the problems that you describe. For example, variants of the Mersenne Twister have periods as large as 2^216901 - 1. http://stackoverflow.com/questions/1918810/is-it-possible-to-select-data-while-a-transaction-is-occuring/1918831#1918831 Comment by Jason on Is it possible to select data while a transaction is occuring? Jason 2009-12-17T11:52:14Z 2009-12-17T11:52:14Z Okay, the first downvote was fair due to an inaccuracy but the downvoter was kind enough to comment. @Second downvoter: what's up? http://stackoverflow.com/questions/1918810/is-it-possible-to-select-data-while-a-transaction-is-occuring/1918831#1918831 Comment by Jason on Is it possible to select data while a transaction is occuring? Jason 2009-12-17T11:39:00Z 2009-12-17T11:39:00Z You're right. I should have been more precise.