User Winston Smith - Stack Overflowmost recent 30 from stackoverflow.com2009-12-15T18:14:52Zhttp://stackoverflow.com/feeds/user/35086http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1907406/how-to-compare-two-arrays-of-objects/1907459#19074591Answer by Winston Smith for how to compare two arrays of objectsWinston Smith2009-12-15T13:27:37Z2009-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 =>
!secondList.Any( s =>
s.Age == p.Age &&
s.FirstName == p.FirstName &&
s.SecondName == p.SecondName
)
);
</code></pre>
http://stackoverflow.com/questions/1906787/cast-delegate-to-func-in-c/1907135#19071354Answer by Winston Smith for Cast delegate to Func in C#Winston Smith2009-12-15T12:34:10Z2009-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<int, int> 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#18872811Answer by Winston Smith for Which protocols are there, that can be used with WCF?Winston Smith2009-12-11T10:50:44Z2009-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#18872290Answer by Winston Smith for call a function for each value in a generic c# collectionWinston Smith2009-12-11T10:40:30Z2009-12-11T10:40:30Z<p>As other posters have noted, you can use <code>List<T>.ForEach</code>.</p>
<p>However, you can easily write an extension method that allows you to use ForEach on any <code>IEnumerable<T></code></p>
<pre><code>public static void ForEach<T>(this IEnumerable<T> source, Action<T> 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#18667460Answer by Winston Smith for Collection as Collection of base type c# 2.0Winston Smith2009-12-08T12:46:49Z2009-12-08T12:46:49Z<p>You want:</p>
<pre><code>List<T>.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#18610446Answer by Winston Smith for Exception: Specified cast is not validWinston Smith2009-12-07T16:19:32Z2009-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#18611120Answer by Winston Smith for Business Logic Classes NamingWinston Smith2009-12-07T16:28:52Z2009-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#18342546Answer by Winston Smith for Why can't I pass List<Customer> as a parameter to a method that accepts List<object>?Winston Smith2009-12-02T16:51:03Z2009-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<object>() );
</code></pre>
http://stackoverflow.com/questions/1833867/datagridview-export-to-excel-using-xml-format/1834215#18342150Answer by Winston Smith for Datagridview export to Excel using XML formatWinston Smith2009-12-02T16:46:06Z2009-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#18341720Answer by Winston Smith for Programmatically get the number of indexed pages in Google?Winston Smith2009-12-02T16:38:16Z2009-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#18327841Answer by Winston Smith for WPF : Can I bind an enum to a combo-box ?Winston Smith2009-12-02T13:07:18Z2009-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#18261251Answer by Winston Smith for Getting list of currently active managed threads in C#/.NET?Winston Smith2009-12-01T13:14:48Z2009-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#17901250Answer by Winston Smith for MS Chart Scaleview & ThreadingWinston Smith2009-11-24T13:37:40Z2009-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#17734940Answer by Winston Smith for UML Code generation tool in c#Winston Smith2009-11-20T21:56:30Z2009-11-20T21:56:30Z<p>We used <a href="http://www.magicdraw.com/" rel="nofollow">MagicDraw</a> & <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#17732410Answer by Winston Smith for How to extract XML from WebBrowser?Winston Smith2009-11-20T21:07:18Z2009-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#17724842Answer by Winston Smith for Load repetitively-named XML nodes using Linq [C#]
Winston Smith2009-11-20T18:44:27Z2009-11-20T20:41:16Z<p>Something like this should do:</p>
<pre><code>var result =
doc.Elements("command")
.Single( x => x.Attribute("name").Value == name)
.Elements("cvar");
</code></pre>
<p>This will give you an <code>IEnumerable<XElement></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 => x.Attribute("name")!=null && x.Attribute("name").Value == name)
if(result!=null)
{
// results.Elements() gives IEnumerable<XElement>
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#17725854Answer by Winston Smith for Static Abstract methods in C#Winston Smith2009-11-20T18:59:53Z2009-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#17692851Answer by Winston Smith for What is "AxSHDocVw" in .NET?Winston Smith2009-11-20T09:21:01Z2009-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#175636913Answer by Winston Smith for Which people should be followed up to learn more on C# and .NET?Winston Smith2009-11-18T14:28:04Z2009-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-c0Open source C# compilers in C#?Winston Smith2009-11-17T11:42:01Z2009-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#17480651Answer by Winston Smith for Multiple Where clauses in Lambda expressionsWinston Smith2009-11-17T10:55:21Z2009-11-17T10:55:21Z<pre><code>x=> x.Lists.Include(l => l.Title).Where(l=>l.Title != String.Empty).Where(l => l.Internal NAme != String.Empty)
</code></pre>
<p>or</p>
<pre><code>x=> x.Lists.Include(l => l.Title).Where(l=>l.Title != String.Empty && l.Internal NAme != String.Empty)
</code></pre>
http://stackoverflow.com/questions/1735439/switch-statement-with-strings-c/1735461#17354610Answer by Winston Smith for Switch Statement with Strings C#Winston Smith2009-11-14T20:16:16Z2009-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#17351514Answer by Winston Smith for Is it OK to lock on System.Collections.Generic.List<t>?Winston Smith2009-11-14T18:37:27Z2009-11-14T18:37:27Z<p>Why do you want to lock on <code>List<T></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#17236650Answer by Winston Smith for Setting the Page-Title in .Net using C# from a ClassWinston Smith2009-11-12T16:49:24Z2009-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#17230131Answer by Winston Smith for Locking main() threadWinston Smith2009-11-12T15:26:16Z2009-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#17220731Answer by Winston Smith for Generating C# class file from XML Schema....How to? thanks .Winston Smith2009-11-12T13:09:26Z2009-11-12T13:09:26Z<p><a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=89E6B1E5-F66C-4A4D-933B-46222BB01EB0&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#17187340Answer by Winston Smith for Replace first word with last word in C#Winston Smith2009-11-11T23:09:08Z2009-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 => 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#17170855Answer by Winston Smith for C# object creation much slower than constructor callWinston Smith2009-11-11T18:12:25Z2009-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#17089324Answer by Winston Smith for Tool to find all unused CodeWinston Smith2009-11-10T15:45:51Z2009-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#17089000Answer by Winston Smith for How to change a global variable value based on linq query while executingWinston Smith2009-11-10T15:42:00Z2009-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 <picture> _
Let X = e.@x _
Let Y = e.@y _
Select <image X=<%= X %> Y=<%= Y %>><%= Two(X,Y) %></image>
End Sub
Function Two(X as int, Y as int)
Return <X><%= X %></X>
End Function
</code></pre>
http://stackoverflow.com/questions/1907406/how-to-compare-two-arrays-of-objects/1907433#1907433Comment by Winston Smith on how to compare two arrays of objectsWinston Smith2009-12-15T13:43:58Z2009-12-15T13:43:58ZIt'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#1907426Comment by Winston Smith on how to compare two arrays of objectsWinston Smith2009-12-15T13:29:43Z2009-12-15T13:29:43ZYou 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#1907439Comment by Winston Smith on how to compare two arrays of objectsWinston Smith2009-12-15T13:26:22Z2009-12-15T13:26:22ZThis 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#1906829Comment by Winston Smith on Cast delegate to Func in C#Winston Smith2009-12-15T12:44:45Z2009-12-15T12:44:45ZHave a look at my answer for an easier way to achieve this.http://stackoverflow.com/questions/1906787/cast-delegate-to-func-in-c/1906850#1906850Comment by Winston Smith on Cast delegate to Func in C#Winston Smith2009-12-15T12:35:46Z2009-12-15T12:35:46Z+1 for the nice explanation. There is a simpler way than <i>Func<int, int> c = x => 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-smsComment by Winston Smith on Can anyone recommend any good UK based SMS gateways for sending and receiving SMS using C#?Winston Smith2009-12-14T15:24:00Z2009-12-14T15:24:00ZYou 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#1890222Comment by Winston Smith on Complex object comparison in C#Winston Smith2009-12-11T19:13:56Z2009-12-11T19:13:56Z+1 for GetHashCodehttp://stackoverflow.com/questions/1890178/limit-removeall-to-a-certain-number-of-objects/1890194#1890194Comment by Winston Smith on Limit RemoveAll to a certain number of objectsWinston Smith2009-12-11T19:11:03Z2009-12-11T19:11:03ZTo 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#1890189Comment by Winston Smith on Limit RemoveAll to a certain number of objectsWinston Smith2009-12-11T19:09:46Z2009-12-11T19:09:46ZTake does not modify the list. He wants to remove items.http://stackoverflow.com/questions/1890191/complex-object-comparison-in-cComment by Winston Smith on Complex object comparison in C#Winston Smith2009-12-11T19:07:39Z2009-12-11T19:07:39ZAnd which of the objects you want to compare.http://stackoverflow.com/questions/1887246/which-protocols-are-there-that-can-be-used-with-wcf/1887281#1887281Comment by Winston Smith on Which protocols are there, that can be used with WCF?Winston Smith2009-12-11T12:12:05Z2009-12-11T12:12:05Z@Alex, see <a href="http://code.google.com/apis/protocolbuffers/docs/overview.html" rel="nofollow">code.google.com/apis/protocolbuffers/…</a>http://stackoverflow.com/questions/1887626/how-works-for-objects/1887645#1887645Comment by Winston Smith on How "==" works for objects?Winston Smith2009-12-11T12:06:56Z2009-12-11T12:06:56ZAren'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#1883918Comment by Winston Smith on fancy way to load contents of a CSV file into a dictionary<string,string> in C#Winston Smith2009-12-10T21:04:50Z2009-12-10T21:04:50ZNeat, wasn't aware of thathttp://stackoverflow.com/questions/1877082/does-an-abstract-property-create-a-private-backing-field/1877154#1877154Comment by Winston Smith on Does an abstract property create a private backing field?Winston Smith2009-12-10T10:50:58Z2009-12-10T10:50:58ZOops, 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#1877154Comment by Winston Smith on Does an abstract property create a private backing field?Winston Smith2009-12-09T21:55:02Z2009-12-09T21:55:02ZJust 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#.