User Winston Smith - Stack Overflow most recent 30 from stackoverflow.com 2009-12-15T18:14:52Z http://stackoverflow.com/feeds/user/35086 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1907406/how-to-compare-two-arrays-of-objects/1907459#1907459 1 Answer by Winston Smith for how to compare two arrays of objects Winston Smith 2009-12-15T13:27:37Z 2009-12-15T13:42:15Z <p>You could write a comparer (implement the <a href="http://msdn.microsoft.com/en-us/library/ms132151.aspx" rel="nofollow">IEqualityComparer interface</a>) then use it with the <a href="http://msdn.microsoft.com/en-us/library/bb336390.aspx" rel="nofollow">Except</a> extension method, as other posters have noted.</p> <p>Or, you could just do the comparison within the lambda eg</p> <pre><code>var peopleinFirstListAndNotSecond = firstList. Where( p =&gt; !secondList.Any( s =&gt; s.Age == p.Age &amp;&amp; s.FirstName == p.FirstName &amp;&amp; s.SecondName == p.SecondName ) ); </code></pre> http://stackoverflow.com/questions/1906787/cast-delegate-to-func-in-c/1907135#1907135 4 Answer by Winston Smith for Cast delegate to Func in C# Winston Smith 2009-12-15T12:34:10Z 2009-12-15T12:34:10Z <p>There's a much simpler way to do it, which all the other answers have missed:</p> <pre><code>Func&lt;int, int&gt; c = a.Invoke; </code></pre> <p>See <a href="http://marcgravell.blogspot.com/2009/11/solving-delegate-variance.html" rel="nofollow">this blog post</a> for more info.</p> http://stackoverflow.com/questions/1887246/which-protocols-are-there-that-can-be-used-with-wcf/1887281#1887281 1 Answer by Winston Smith for Which protocols are there, that can be used with WCF? Winston Smith 2009-12-11T10:50:44Z 2009-12-11T10:57:49Z <p>For the serialization format, you can also use <a href="http://code.google.com/p/protobuf-net/" rel="nofollow">protobuf-net</a>, a .net implementation of <a href="http://en.wikipedia.org/wiki/Protocol%5FBuffers" rel="nofollow">Protocol Buffers</a>.</p> http://stackoverflow.com/questions/1883920/call-a-function-for-each-value-in-a-generic-c-collection/1887229#1887229 0 Answer by Winston Smith for call a function for each value in a generic c# collection Winston Smith 2009-12-11T10:40:30Z 2009-12-11T10:40:30Z <p>As other posters have noted, you can use <code>List&lt;T&gt;.ForEach</code>.</p> <p>However, you can easily write an extension method that allows you to use ForEach on any <code>IEnumerable&lt;T&gt;</code></p> <pre><code>public static void ForEach&lt;T&gt;(this IEnumerable&lt;T&gt; source, Action&lt;T&gt; action) { foreach(T item in source) action(item); } </code></pre> <p>Which means you can now do:</p> <pre><code>myList.Where( ... ).ForEach( ... ); </code></pre> http://stackoverflow.com/questions/1866704/collection-as-collection-of-base-type-c-2-0/1866746#1866746 0 Answer by Winston Smith for Collection as Collection of base type c# 2.0 Winston Smith 2009-12-08T12:46:49Z 2009-12-08T12:46:49Z <p>You want:</p> <pre><code>List&lt;T&gt;.ConvertAll() </code></pre> <p><a href="http://msdn.microsoft.com/en-us/library/73fe8cwf%28VS.80%29.aspx" rel="nofollow">See here</a> for more info.</p> http://stackoverflow.com/questions/1861016/exception-specified-cast-is-not-valid/1861044#1861044 6 Answer by Winston Smith for Exception: Specified cast is not valid Winston Smith 2009-12-07T16:19:32Z 2009-12-07T16:49:44Z <pre><code>Role = (UserRole)reader["Role"] </code></pre> <p>Presumably <code>UserRole</code> is a type you have defined, hence the <code>SqlDataReader</code> does not know how to convert the data it gets from the database to this type. What is the type of this column in your database?</p> <p>EDIT: As for your updated question you can do:</p> <pre><code>var role = (string)reader["Role"]; UserRole role = (UserRole)Enum.Parse( typeof(UserRole), role ); </code></pre> <p>You might want to add in some extra error checking, eg checking that <code>role</code> is not null. Also, before parsing the enum you could check if the parse is valid using <a href="http://msdn.microsoft.com/en-us/library/system.enum.isdefined.aspx" rel="nofollow">Enum.IsDefined</a>.</p> http://stackoverflow.com/questions/1860852/business-logic-classes-naming/1861112#1861112 0 Answer by Winston Smith for Business Logic Classes Naming Winston Smith 2009-12-07T16:28:52Z 2009-12-07T16:28:52Z <p>If your 'services' are orchestrating business logic using a number of domain objects, you're likely implementing the <a href="http://www.dofactory.com/patterns/patternfacade.aspx" rel="nofollow">Facade Pattern</a> - so perhaps you can name them with this suffix, eg <code>OrderManagementFacade</code></p> http://stackoverflow.com/questions/1834229/why-cant-i-pass-listcustomer-as-a-parameter-to-a-method-that-accepts-listobje/1834254#1834254 6 Answer by Winston Smith for Why can't I pass List<Customer> as a parameter to a method that accepts List<object>? Winston Smith 2009-12-02T16:51:03Z 2009-12-02T16:51:03Z <p>C# (at present) does not support variance for generic types.</p> <p>However, if you're using C# 3.0, you can do this:</p> <pre><code>FillSmartGrid( customers.Cast&lt;object&gt;() ); </code></pre> http://stackoverflow.com/questions/1833867/datagridview-export-to-excel-using-xml-format/1834215#1834215 0 Answer by Winston Smith for Datagridview export to Excel using XML format Winston Smith 2009-12-02T16:46:06Z 2009-12-02T16:46:06Z <p>Have you tried this <a href="http://www.carlosag.net/Tools/ExcelXmlWriter/" rel="nofollow">Excel XML Writer</a> library?</p> http://stackoverflow.com/questions/1833926/programmatically-get-the-number-of-indexed-pages-in-google/1834172#1834172 0 Answer by Winston Smith for Programmatically get the number of indexed pages in Google? Winston Smith 2009-12-02T16:38:16Z 2009-12-02T16:38:16Z <p>There's probably a <a href="http://code.google.com/more/" rel="nofollow">Google API</a> you can use, rather than parsing the results of a search.</p> http://stackoverflow.com/questions/1832773/wpf-can-i-bind-an-enum-to-a-combo-box/1832784#1832784 1 Answer by Winston Smith for WPF : Can I bind an enum to a combo-box ? Winston Smith 2009-12-02T13:07:18Z 2009-12-02T13:07:18Z <p>Bind <code>names</code> below to your <code>ComboBox</code>:</p> <pre><code>var names = Enum.GetNames( typeof(Protocol) ); </code></pre> http://stackoverflow.com/questions/1825882/getting-list-of-currently-active-managed-threads-in-c-net/1826125#1826125 1 Answer by Winston Smith for Getting list of currently active managed threads in C#/.NET? Winston Smith 2009-12-01T13:14:48Z 2009-12-01T13:14:48Z <p>Is it feasible for you to store thread information in a lookup as you create each thread in your application? </p> <p>As each thread starts, you can get its ID using <code>AppDomain.GetCurrentThreadId()</code>. Later, you can use this to cross reference with the data returned from <code>Process.Threads</code>.</p> http://stackoverflow.com/questions/1789965/ms-chart-scaleview-threading/1790125#1790125 0 Answer by Winston Smith for MS Chart Scaleview & Threading Winston Smith 2009-11-24T13:37:40Z 2009-11-24T13:37:40Z <p>I recommend the open source, and awesome, <a href="http://www.codeplex.com/dynamicdatadisplay" rel="nofollow">WPF Dynamic Data Display</a> library from MS Research.</p> <p>It comes with a bunch of sample projects, one of which you can probably tailor to meet your needs.</p> http://stackoverflow.com/questions/1773434/uml-code-generation-tool-in-c/1773494#1773494 0 Answer by Winston Smith for UML Code generation tool in c# Winston Smith 2009-11-20T21:56:30Z 2009-11-20T21:56:30Z <p>We used <a href="http://www.magicdraw.com/" rel="nofollow">MagicDraw</a> &amp; <a href="http://maven-csharp.javaforge.com/project/11" rel="nofollow">Maven C sharp plugin</a> in the past with much success.</p> <p>Of course, there's also Enterprise Architect - but it isn't open source.</p> http://stackoverflow.com/questions/1773102/how-to-extract-xml-from-webbrowser/1773241#1773241 0 Answer by Winston Smith for How to extract XML from WebBrowser? Winston Smith 2009-11-20T21:07:18Z 2009-11-20T21:07:18Z <p><a href="http://pagesperso-orange.fr/ablavier/TidyCOM/index.html#download" rel="nofollow">TidyCOM</a> will clean up HTML to XHTML.</p> <p>Here's <a href="http://www.wynia.org/wordpress/2008/02/using-htmltidy-to-clean-up-html-with-c/" rel="nofollow">how to use it from C#</a>.</p> http://stackoverflow.com/questions/1772421/load-repetitively-named-xml-nodes-using-linq-c/1772484#1772484 2 Answer by Winston Smith for Load repetitively-named XML nodes using Linq [C#] Winston Smith 2009-11-20T18:44:27Z 2009-11-20T20:41:16Z <p>Something like this should do:</p> <pre><code>var result = doc.Elements("command") .Single( x =&gt; x.Attribute("name").Value == name) .Elements("cvar"); </code></pre> <p>This will give you an <code>IEnumerable&lt;XElement&gt;</code> where each <code>XElement</code> represents a <code>cvar</code> in the specified command.</p> <p>Note that if the specified command does not exist, the call to Single will cause an error. Likewise if the specified attribute is not found on the command.</p> <p><strong>EDIT</strong> As per your comments, you could do something along the lines of:</p> <pre><code>// Result will be an XElement, // or null if the command with the specified attribute is not found var result = doc.Elements("command") // Note the extra condition below .SingleOrDefault( x =&gt; x.Attribute("name")!=null &amp;&amp; x.Attribute("name").Value == name) if(result!=null) { // results.Elements() gives IEnumerable&lt;XElement&gt; foreach(var cvar in results.Elements("cvar")) { var cvarName = cvar.Attribute("name").Value; var cvarValue = Convert.ToBoolean( cvar.Attribute("value").Value ); } } </code></pre> http://stackoverflow.com/questions/1772537/static-abstract-methods-in-c/1772585#1772585 4 Answer by Winston Smith for Static Abstract methods in C# Winston Smith 2009-11-20T18:59:53Z 2009-11-20T18:59:53Z <p>I think what you want is the <a href="http://www.dofactory.com/Patterns/PatternAbstract.aspx" rel="nofollow">Factory Design Pattern</a>.</p> http://stackoverflow.com/questions/1769234/what-is-axshdocvw-in-net/1769285#1769285 1 Answer by Winston Smith for What is "AxSHDocVw" in .NET? Winston Smith 2009-11-20T09:21:01Z 2009-11-20T09:21:01Z <p>It's a <a href="http://blog.monstuff.com/archives/000052.html" rel="nofollow">web browser component</a> which you can use to host a browser in your application.</p> http://stackoverflow.com/questions/1756359/which-people-should-be-followed-up-to-learn-more-on-c-and-net/1756369#1756369 13 Answer by Winston Smith for Which people should be followed up to learn more on C# and .NET? Winston Smith 2009-11-18T14:28:04Z 2009-11-18T14:28:04Z <ul> <li><a href="http://blogs.msdn.com/ericlippert/" rel="nofollow">Eric Lippert</a></li> <li><a href="http://blogs.msdn.com/lucabol/" rel="nofollow">Luca Bolognese</a></li> <li><a href="http://msmvps.com/blogs/jon%5Fskeet/default.aspx" rel="nofollow">Jon Skeet</a></li> </ul> http://stackoverflow.com/questions/1748287/open-source-c-compilers-in-c 0 Open source C# compilers in C#? Winston Smith 2009-11-17T11:42:01Z 2009-11-17T11:48:57Z <p>Are there any open source C# compilers written in C#? </p> <p>I know of <code>Blue</code>, but it was written in 2001 and only supports C# 1:</p> <ul> <li><a href="http://blogs.msdn.com/jmstall/archive/2005/02/06/368192.aspx" rel="nofollow">Mike Stall's 'Blue' C# Compiler</a></li> </ul> <p>Ideally, I'm looking for one which supports C# 3.0 - but even 2.0 would be fine.</p> http://stackoverflow.com/questions/1748047/multiple-where-clauses-in-lambda-expressions/1748065#1748065 1 Answer by Winston Smith for Multiple Where clauses in Lambda expressions Winston Smith 2009-11-17T10:55:21Z 2009-11-17T10:55:21Z <pre><code>x=&gt; x.Lists.Include(l =&gt; l.Title).Where(l=&gt;l.Title != String.Empty).Where(l =&gt; l.Internal NAme != String.Empty) </code></pre> <p>or</p> <pre><code>x=&gt; x.Lists.Include(l =&gt; l.Title).Where(l=&gt;l.Title != String.Empty &amp;&amp; l.Internal NAme != String.Empty) </code></pre> http://stackoverflow.com/questions/1735439/switch-statement-with-strings-c/1735461#1735461 0 Answer by Winston Smith for Switch Statement with Strings C# Winston Smith 2009-11-14T20:16:16Z 2009-11-14T20:16:16Z <p><a href="http://msdn.microsoft.com/en-us/library/system.environment.getcommandlineargs.aspx" rel="nofollow">Environment.GetCommandLineArgs()</a> returns a <code>string[]</code></p> <p>You can't switch on a string array. You probably want to test if the array contains certain values though.</p> http://stackoverflow.com/questions/1735071/is-it-ok-to-lock-on-system-collections-generic-listt/1735151#1735151 4 Answer by Winston Smith for Is it OK to lock on System.Collections.Generic.List<t>? Winston Smith 2009-11-14T18:37:27Z 2009-11-14T18:37:27Z <p>Why do you want to lock on <code>List&lt;T&gt;</code> as opposed to your specific instance of a list?</p> <p>It is often suggested that the best method of locking is to lock on a private object created solely for that purpose.</p> <pre><code>private readonly object myListLock = new object(); // Everywhere you access myList lock(myListLock) { // do stuff with myList } </code></pre> <p>For a great guide to threading in C#, see this <a href="http://www.albahari.com/threading/" rel="nofollow">Free E-Book (Threading in C#)</a> by Joe Albahari.</p> http://stackoverflow.com/questions/1723625/setting-the-page-title-in-net-using-c-from-a-class/1723665#1723665 0 Answer by Winston Smith for Setting the Page-Title in .Net using C# from a Class Winston Smith 2009-11-12T16:49:24Z 2009-11-12T16:49:24Z <p>I think the best way would be to have the class expose a TitleChanged event, which the page can subscribe to. </p> <p>In this way, you are not tightly coupling your solution and everything is kept nice and clean.</p> http://stackoverflow.com/questions/1722932/locking-main-thread/1723013#1723013 1 Answer by Winston Smith for Locking main() thread Winston Smith 2009-11-12T15:26:16Z 2009-11-12T15:40:48Z <p>Your methods will run once, then the thread will exit. There is nothing to keep them running.</p> <p>Try this:</p> <pre><code>thread1.IsBackground = true; thread2.IsBackground = true; public void start() { while(true) { // ... do stuff Thread.Sleep(1000*60*5) // sleep for 5 minutes } } public void TimerMeth() { while(true) { file write = new file(); write.write(RegKeys); Thread.Sleep(30000); } } </code></pre> <p>As other posters have noted, you will also then need to ensure your main method doesn't exit. Making the application a windows service seems like a good way to solve this in your case. </p> <p>You might also want to handle <a href="http://msdn.microsoft.com/en-us/library/system.threading.threadinterruptedexception.aspx" rel="nofollow">ThreadInterruptedException</a> and <a href="http://msdn.microsoft.com/en-us/library/system.threading.threadabortexception.aspx" rel="nofollow">ThreadAbortException</a> on your threads.</p> <p>And if you really want to get into the nitty gritty of threading, check out this <a href="http://www.albahari.com/threading/" rel="nofollow">Free C# Threading E-Book</a> by Joe Albahari.</p> http://stackoverflow.com/questions/1722019/generating-c-class-file-from-xml-schema-how-to-thanks/1722073#1722073 1 Answer by Winston Smith for Generating C# class file from XML Schema....How to? thanks . Winston Smith 2009-11-12T13:09:26Z 2009-11-12T13:09:26Z <p><a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=89E6B1E5-F66C-4A4D-933B-46222BB01EB0&amp;displaylang=en" rel="nofollow">XSD Object Gen</a> is better than the XSD tool in my experience.</p> http://stackoverflow.com/questions/1718696/replace-first-word-with-last-word-in-c/1718734#1718734 0 Answer by Winston Smith for Replace first word with last word in C# Winston Smith 2009-11-11T23:09:08Z 2009-11-11T23:09:08Z <p>It's ugly, but it works.</p> <pre><code>string[] a = oldString.Split(' '); var result = a.Skip( a.Length-1) .Select(w =&gt; w.Replace("[","").Replace("]","")) .Concat( a.Take( a.Length -1 ).Skip(1)).ToArray(); var newString = string.Join(" ", result); </code></pre> http://stackoverflow.com/questions/1717051/c-object-creation-much-slower-than-constructor-call/1717085#1717085 5 Answer by Winston Smith for C# object creation much slower than constructor call Winston Smith 2009-11-11T18:12:25Z 2009-11-11T18:12:25Z <p>Are you sure what you're seeing is the object creation time and not the effects of the CLR starting up? </p> <p>Try running the test 50 times in a loop and ignoring the first result.</p> http://stackoverflow.com/questions/1708883/tool-to-find-all-unused-code/1708932#1708932 4 Answer by Winston Smith for Tool to find all unused Code Winston Smith 2009-11-10T15:45:51Z 2009-11-10T15:45:51Z <p><a href="http://msdn.microsoft.com/en-us/library/ms182023%28VS.80%29.aspx" rel="nofollow">Code Analysis in VSTS</a> will generate warnings about this during the build process. You can set it up to treat Warnings As Errors.</p> http://stackoverflow.com/questions/1706971/how-to-change-a-global-variable-value-based-on-linq-query-while-executing/1708900#1708900 0 Answer by Winston Smith for How to change a global variable value based on linq query while executing Winston Smith 2009-11-10T15:42:00Z 2009-11-10T15:42:00Z <p>You could pass X and Y as arguments to the function Two() eg</p> <pre><code>Sub One() Dim query = From e In &lt;picture&gt; _ Let X = e.@x _ Let Y = e.@y _ Select &lt;image X=&lt;%= X %&gt; Y=&lt;%= Y %&gt;&gt;&lt;%= Two(X,Y) %&gt;&lt;/image&gt; End Sub Function Two(X as int, Y as int) Return &lt;X&gt;&lt;%= X %&gt;&lt;/X&gt; End Function </code></pre> http://stackoverflow.com/questions/1907406/how-to-compare-two-arrays-of-objects/1907433#1907433 Comment by Winston Smith on how to compare two arrays of objects Winston Smith 2009-12-15T13:43:58Z 2009-12-15T13:43:58Z It's more efficient to use <i>Any(...)</i> than <i>Count == 0</i> http://stackoverflow.com/questions/1907406/how-to-compare-two-arrays-of-objects/1907426#1907426 Comment by Winston Smith on how to compare two arrays of objects Winston Smith 2009-12-15T13:29:43Z 2009-12-15T13:29:43Z You should probably add that he would need to compare the objects for equality, either by implementing a comparer, or doing the comparison within the lambda. Except on its own will not solve the problem. http://stackoverflow.com/questions/1907406/how-to-compare-two-arrays-of-objects/1907439#1907439 Comment by Winston Smith on how to compare two arrays of objects Winston Smith 2009-12-15T13:26:22Z 2009-12-15T13:26:22Z This will do reference comparisons on the objects, which is not what he wants. http://stackoverflow.com/questions/1906787/cast-delegate-to-func-in-c/1906829#1906829 Comment by Winston Smith on Cast delegate to Func in C# Winston Smith 2009-12-15T12:44:45Z 2009-12-15T12:44:45Z Have a look at my answer for an easier way to achieve this. http://stackoverflow.com/questions/1906787/cast-delegate-to-func-in-c/1906850#1906850 Comment by Winston Smith on Cast delegate to Func in C# Winston Smith 2009-12-15T12:35:46Z 2009-12-15T12:35:46Z +1 for the nice explanation. There is a simpler way than <i>Func&lt;int, int&gt; c = x =&gt; a(x);</i> though - see my answer. http://stackoverflow.com/questions/1901505/can-anyone-recommend-any-good-uk-based-sms-gateways-for-sending-and-receiving-sms Comment by Winston Smith on Can anyone recommend any good UK based SMS gateways for sending and receiving SMS using C#? Winston Smith 2009-12-14T15:24:00Z 2009-12-14T15:24:00Z You might want to add a definition for <b>Good</b>. What is good for you? The cheapest? The most performant? The easiest to interface with? http://stackoverflow.com/questions/1890191/complex-object-comparison-in-c/1890222#1890222 Comment by Winston Smith on Complex object comparison in C# Winston Smith 2009-12-11T19:13:56Z 2009-12-11T19:13:56Z +1 for GetHashCode http://stackoverflow.com/questions/1890178/limit-removeall-to-a-certain-number-of-objects/1890194#1890194 Comment by Winston Smith on Limit RemoveAll to a certain number of objects Winston Smith 2009-12-11T19:11:03Z 2009-12-11T19:11:03Z To clarify, Take does not remove any items. You are using it to find the items which you subsequently wish to remove. http://stackoverflow.com/questions/1890178/limit-removeall-to-a-certain-number-of-objects/1890189#1890189 Comment by Winston Smith on Limit RemoveAll to a certain number of objects Winston Smith 2009-12-11T19:09:46Z 2009-12-11T19:09:46Z Take does not modify the list. He wants to remove items. http://stackoverflow.com/questions/1890191/complex-object-comparison-in-c Comment by Winston Smith on Complex object comparison in C# Winston Smith 2009-12-11T19:07:39Z 2009-12-11T19:07:39Z And which of the objects you want to compare. http://stackoverflow.com/questions/1887246/which-protocols-are-there-that-can-be-used-with-wcf/1887281#1887281 Comment by Winston Smith on Which protocols are there, that can be used with WCF? Winston Smith 2009-12-11T12:12:05Z 2009-12-11T12:12:05Z @Alex, see <a href="http://code.google.com/apis/protocolbuffers/docs/overview.html" rel="nofollow">code.google.com/apis/protocolbuffers/&hellip;</a> http://stackoverflow.com/questions/1887626/how-works-for-objects/1887645#1887645 Comment by Winston Smith on How "==" works for objects? Winston Smith 2009-12-11T12:06:56Z 2009-12-11T12:06:56Z Aren't the strings interned, so it actually evaluates to true? http://stackoverflow.com/questions/1883884/fancy-way-to-load-contents-of-a-csv-file-into-a-dictionarystring-string-in-c/1883918#1883918 Comment by Winston Smith on fancy way to load contents of a CSV file into a dictionary<string,string> in C# Winston Smith 2009-12-10T21:04:50Z 2009-12-10T21:04:50Z Neat, wasn't aware of that http://stackoverflow.com/questions/1877082/does-an-abstract-property-create-a-private-backing-field/1877154#1877154 Comment by Winston Smith on Does an abstract property create a private backing field? Winston Smith 2009-12-10T10:50:58Z 2009-12-10T10:50:58Z Oops, I meant reflector too! I knew what you meant and didn't even notice the mistake. My point still stands - it's the code <i>reflector</i> reconstructed from the <b>IL</b> generated by the <i>compiler</i>. http://stackoverflow.com/questions/1877082/does-an-abstract-property-create-a-private-backing-field/1877154#1877154 Comment by Winston Smith on Does an abstract property create a private backing field? Winston Smith 2009-12-09T21:55:02Z 2009-12-09T21:55:02Z Just to avoid confusion - that's the code <i>resharper</i> reconstructed from the IL. It is <b>not</b> the code the compiler generated. The compiler generates IL, not C#.