User sebastian - Stack Overflowmost recent 30 from stackoverflow.com2009-11-29T12:28:01Zhttp://stackoverflow.com/feeds/user/23893http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1810607/taskdialog-default-button0TaskDialog default buttonsebastian2009-11-27T20:55:08Z2009-11-27T20:55:08Z
<p>stackoverflow just works faster :)<br>
I'm using the <a href="http://code.msdn.microsoft.com/WindowsAPICodePack" rel="nofollow">Windows® API Code Pack for Microsoft® .NET Framework</a> to access Windows 7 API and I want to change my old <a href="http://msdn.microsoft.com/en-us/library/system.windows.forms.messagebox.aspx" rel="nofollow">MessageBox</a> to <a href="http://msdn.microsoft.com/en-us/library/bb787471%28VS.85%29.aspx" rel="nofollow">TaskDialog</a>.
One thing I cannot find is the default button of the dialog. Is there a way to set it? what about a work around? </p>
<p>thanks</p>
http://stackoverflow.com/questions/1741767/writing-windows-service-in-wcf/1742713#17427132Answer by sebastian for Writing Windows service in WCFsebastian2009-11-16T15:02:54Z2009-11-16T15:02:54Z<p>Good answers all of them. Just a quick note... implement your WCF service in a class library (dll) so you can then host it anywhere you like (IIS, Console App, or Windows Service).<br>
I'd recommend starting from a console application, after your service works as expected, create a Windows Service, add a reference to you library and start the service (WCF) from there (Windows Service)</p>
<p>Edit: I just assumed you meant create a WCF service hosted as a Windows Service, if that's not the case please ignore my answer. </p>
http://stackoverflow.com/questions/1728815/how-do-i-mock-an-ienumerablet-so-that-i-can-test-a-method-that-receives-it/1728848#17288481Answer by sebastian for How do I mock an IEnumerable<T> so that I can test a method that receives itsebastian2009-11-13T12:09:58Z2009-11-13T12:09:58Z<p>You could make something like this:<br>
Create a function Dummy</p>
<pre><code>private IEnumerable<ICsvTreeGridExportable> Dummy()
{
yield return new ICsvTreeGridExportable();
}
</code></pre>
<p>And in your test function do something like </p>
<pre><code>private void TestFunction()
{
ThisIsTheOneThatNeedsIenumerable(Dummy());
}
</code></pre>
<p>hope it helps</p>
http://stackoverflow.com/questions/1728562/debugging-error-the-type-xx-is-defined-in-an-assembly-that-is-not-referenced/1728822#17288220Answer by sebastian for Debugging error "The Type 'xx' is defined in an assembly that is not referenced"sebastian2009-11-13T12:04:31Z2009-11-13T12:04:31Z<p>Use <a href="http://www.red-gate.com/products/reflector/" rel="nofollow">.net Reflector</a> to inspect you assembly and the ones called by it. Eventually you'll find out who needs <code>System.Windows.Forms</code></p>
http://stackoverflow.com/questions/1715338/passing-users-identity-across-tiers-with-asp-net-and-wcf/1715465#17154650Answer by sebastian for Passing user's identity across tiers with ASP.NET and WCFsebastian2009-11-11T14:22:50Z2009-11-11T14:22:50Z<p>I guess you'll want to check WCF Membership provider. I posted a few months about it <a href="http://sgomez.blogspot.com/2007/12/wcf-membership-provider-sample.html" rel="nofollow">http://sgomez.blogspot.com/2007/12/wcf-membership-provider-sample.html</a> follow the links and also I'd recommend the book <a href="https://www.amazon.com/gp/product/0596101627/ref=oss%5FT15%5Fproduct" rel="nofollow">Learning WCF</a> by <a href="http://www.thatindigogirl.com/" rel="nofollow">Michele LeRoux Bustamante</a>.</p>
<p>Good luck! (you're gonna need it)</p>
http://stackoverflow.com/questions/1710879/retrieving-and-displaying-build-information-from-cruisecontrol-net-and-msbuild-in/1710931#17109311Answer by sebastian for Retrieving and Displaying Build Information From CruiseControl.NET and MSBuild in an ASP.NET Applicationsebastian2009-11-10T20:23:17Z2009-11-10T20:23:17Z<p>you need to download the <a href="http://msbuildtasks.tigris.org/" rel="nofollow">msbuild community tasks</a>. I have it for a win project but it would be the same since I´m generating the AssemblyInfo file with it. </p>
<p>Edit: I found this dude that has a code sample. <a href="http://florent.clairambault.fr/insert-svn-version-and-build-number-in-your-c-assemblyinfo-file" rel="nofollow">http://florent.clairambault.fr/insert-svn-version-and-build-number-in-your-c-assemblyinfo-file</a></p>
http://stackoverflow.com/questions/1708032/lucene-net-on-shared-hosting/1708168#17081680Answer by sebastian for Lucene.NET on shared hostingsebastian2009-11-10T13:59:59Z2009-11-10T13:59:59Z<p>I created a asp.net app that uses Lucene and it works ok. Here´s a link to my post about it (<a href="http://sgomez.blogspot.com/2008/06/introducing-goomez.html" rel="nofollow">Goomez</a>). Also, the code is available for download. Hope it helps</p>
http://stackoverflow.com/questions/595098/iis-stackoverflow0IIS stackoverflowsebastian2009-02-27T14:55:14Z2009-11-08T13:21:06Z
<p>Here's the thing. We've been chansing an bug on my WCF web application (W2K3 IIS) which was resulting in a stackoverflow.
To fix it I need to increase the stack of my application by creating a thread with the amount of memory I want to allocate.<br />
But what happens with the child threads? My app creates many threads, will they inherit the value or I'll have to set every single thread with the new value? </p>
<p>Edit: If I run the (WCF) services as a console host they work just fine. Also, If I modify the stack of the w3wp.exe (with the EDITBIN) they also work fine on IIS.<br />
So I need to increase the stack.I know I can create a thread with the stack size (is there another way?) but I need to know what happens with the child threads.</p>
<p>Edit2: We need to define some BIG vectors which are resulting in a stack overflow. So it is not a bug in our system. I really need (have) to increase the stack</p>
http://stackoverflow.com/questions/1684747/why-arent-my-properties-being-displayed-when-trying-to-use-them-in-an-instanced/1684767#16847670Answer by sebastian for Why aren't my properties being displayed when trying to use them in an instanced object of the class?sebastian2009-11-06T01:07:13Z2009-11-06T01:07:13Z<p>Make them public... as you defined them they are private</p>
<p><code>public class Actor
{<br>
#region "Attributes"<br>
public string Name { get; set; }<br>
public string DateOfBirth { get; set; }<br>
#endregion
}</code></p>
http://stackoverflow.com/questions/1606840/is-there-an-application-for-displaying-some-kind-of-query-plan-for-a-linq-to-obje/1606913#16069130Answer by sebastian for Is there an application for displaying some kind of query plan for a Linq to object query?sebastian2009-10-22T12:35:45Z2009-10-22T12:35:45Z<p>What about making the tool yourself?! ;)<br />
Take a look at <a href="http://msdn.microsoft.com/en-us/library/bb397951.aspx" rel="nofollow">Expression trees</a>, I believe they might be useful</p>
http://stackoverflow.com/questions/1588963/bit-curious-to-understand-expression-tree-in-net/1589025#15890251Answer by sebastian for Bit Curious to understand Expression Tree in .NETsebastian2009-10-19T14:34:48Z2009-10-19T14:34:48Z<p>I'm not an expert on the subject but I'll try to clear the way.</p>
<p>Think of expression-trees as a typed reflection. It is an easy way to get to know what a function has, like what's the operand, parameters and stuff.</p>
<p>So,<br />
1) I would say yeap.<br />
2) Not exactly... you should learn the feature first (me too) and then find what it is good for. Are you generating code? that to me could be a very useful feature of the expression-trees<br />
3) Expression-tree it is a new feature but there's nothing you couldn't do before. Now it's just easier.</p>
<p>There's a good article <a href="http://blogs.msdn.com/charlie/archive/2008/01/31/expression-tree-basics.aspx" rel="nofollow">here</a> which explains the basics. </p>
http://stackoverflow.com/questions/1573967/c-wcf-service-host-question/1573998#15739983Answer by sebastian for C# WCF service host question sebastian2009-10-15T17:48:26Z2009-10-15T17:48:26Z<p>Yes, you can create a Windows Service project and host your services there. Keep in mind you have to set the url, open the services and so on, stuff you don't need to do while hosting them on a IIS.</p>
http://stackoverflow.com/questions/1566031/linq-checking-if-a-field-db-contains-items-in-an-ilist/1566127#15661271Answer by sebastian for LINQ: Checking if a field (db) contains items in an ILIST ?sebastian2009-10-14T13:09:37Z2009-10-14T13:09:37Z<p>The suggested approaches I believe are correct... you should also keep in mind the <code>IEnumerable<T>.Where</code> method.</p>
<p><a href="http://msdn.microsoft.com/en-us/library/bb910023.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/bb910023.aspx</a></p>
http://stackoverflow.com/questions/140376/what-easter-eggs-have-you-placed-in-code/1562767#15627671Answer by sebastian for What Easter Eggs have you placed in code?sebastian2009-10-13T20:34:57Z2009-10-13T20:34:57Z<p>I created a simple web app to search local software from our server at my company. I would index every server and store the data on a Lucene.net index.
So the eastern egg I wrote was that if anyone searched for the word "soup" (very unlikely) and there was no results found the page would return a "No soup for you!" message, following a picture of the <a href="http://en.wikipedia.org/wiki/The%5FSoup%5FNazi" rel="nofollow">soup nazzi</a> :)</p>
<p><img src="http://gqxvtg.blu.livefilestore.com/y1pYLqp92pjCWT8tzLvtZ9CPTRb3iPv2o%5FwdAeOLW4jyEz56rksw0fU5Y%5F7aUyM8F8l1ojxVczZ2xb9exzHpVdiiA/soup%5Fnazi.jpg" alt="soup nazzi" /></p>
http://stackoverflow.com/questions/932283/is-there-a-text-editor-that-formats-xml-files-nicely3Is there a text editor that formats XML files nicely?sebastian2009-05-31T15:41:49Z2009-10-09T21:23:13Z
<p>I know there are many: Notepad2, Notepad++, even
UltraEdit... But I'm looking for a special feature. I want
the editor to format my XML files for human understanding.
When I open an XML file saved by my application all the XML
is in one line, making it impossible for easy reading.</p>
<p>I know MS Visual Studio does it (Crtl+E, D), anyone else?</p>
http://stackoverflow.com/questions/1380231/security-issue-with-azure3Security issue with Azure sebastian2009-09-04T16:17:53Z2009-09-13T18:13:27Z
<p>I need my application to run in FullTrust mode so I added this line to my web/config file:
I also modified the .csdef filr to enableNativeCodeExecution.</p>
<p>But when I want to run my application (which runs with no problems as a standard Asp.Net web app) I get the following message : "Role isntances did not start within the time allowed. Please try again. If you continue to encounter this behavior please try shutting down the Development Fabric."</p>
<p>And the following line on an event seen on the Event Viewer:<br />
Exception message: This configuration section cannot be used at this path. This happens when the site administrator has locked access to this section using from an inherited configuration file. (C:\dev\azure\Server\bin\Debug\Server.csx\roles\AzureServer\web.config line 91) [which is the line where the trust level is set]</p>
<p>Any tip would be greatly appreciated.</p>
<p>BTW: I'm running on a Windows7 box</p>
http://stackoverflow.com/questions/1380243/application-pool-restart-automaticly-if-file-change-in-repositery/1380274#13802741Answer by sebastian for Application pool restart automaticly if file change in repositerysebastian2009-09-04T16:25:08Z2009-09-04T16:25:08Z<p>I had the exact same issue so I decided NOT to write files/folder on the root of my web app.
I noticed that on my dev computer but not on some servers (W2K3). Also try running the <a href="http://msdn.microsoft.com/en-us/library/ms164291.aspx" rel="nofollow">AspNetCompiler</a> msbuild task to your site with updatable in false.</p>
http://stackoverflow.com/questions/1288453/sharing-data-thru-wcf-services-and-aspx-pages0Sharing data thru WCF services and aspx pagessebastian2009-08-17T14:59:24Z2009-08-29T21:36:58Z
<p>My web app exposes a few services (WCF) and I need to load an XML file and 'store' it a static variable visible to the entire AppDomain. That variable needs to be queried and updated from either a service or a page.</p>
<p>The thing is, I load that variable in the Application_Start (Global.asax.cs) but when a service request arrives the variable is empty and needs to be 'reloaded', and that happens with every service (3), so I end up with 3 instances of a static variable.</p>
<p>How can I ensure that all my applications are running on the same AppDomain? what am I doing wrong?</p>
<p>VS2008 SP1 on Win7 RTM box</p>
http://stackoverflow.com/questions/890684/wcf-client-getting-a-timeoutexception-and-i-am-closing-my-connections1WCF client getting a TimeoutException (and I AM closing my connections)sebastian2009-05-20T23:08:56Z2009-08-29T18:58:39Z
<p>Here's the thing...
I've been working on this issue for a long time now with no luck</p>
<p>I have a WCF service hosted on IIS (I also tried in a console host and I get the same behavior) which I call thru my scvutil created proxy, and the service fails to respond after a few (very few calls).</p>
<p>But, here are a few clues:<br />
1- It only happens on the testing environment (not with the services hosted on my dev machine), figures!<br />
2- I call the service asynchronously (client.MyServiceAsync)<br />
3- this is the trickiest one... if I run fiddler to see what's going on, the client works and never fails, unitl of course, I close fiddler (without even restarting the client)</p>
<p>I have no clue so far what's going on. I started to think maybe the server (a Win2003) has some kind of "defender" which blocks further connections, could that be possible? Please trust me when I say I do close the clients after every call, actually after I get the response from the server since I'm using ascynchronous calls.</p>
<p>Any tip or advice would be more than appreciated.
regards,</p>
<p>Edit: I thought this could be usefull info:
I have enabled tracing at both ends with no luck.<br />
At the server side I see the connections coming and going... and at some point there are no more connection coming in. While at the client side I see connection working until one of them throws a TimeoutException... that's all I get</p>
http://stackoverflow.com/questions/1297865/wcf-multiple-bindings/1303260#13032600Answer by sebastian for WCF Multiple Bindingssebastian2009-08-19T23:55:39Z2009-08-19T23:55:39Z<p>I´d suggest you enable <a href="http://msdn.microsoft.com/en-us/library/ms733025.aspx" rel="nofollow">tracing</a> in order to get a better understanding of the problem. WCF could be a b*tch when it comes to showing error messages.</p>
http://stackoverflow.com/questions/1288453/sharing-data-thru-wcf-services-and-aspx-pages/1300151#13001513Answer by sebastian for Sharing data thru WCF services and aspx pagessebastian2009-08-19T14:01:44Z2009-08-19T15:20:52Z<p>Ok, so after a bit of research I found the solution. I'll posting the solution here and many links that helped me find it.</p>
<p>WCF services and ASPX pages DO run on the same AppDomain when running side-by-side (default), my problem was that the AppDomain was being recycled because my app was creating a folder below the root folder of my app. When I moved that creation away from the app itself, the AppDomain quited restarting so I always keep my static values.</p>
<p>Here's a list of interesting post I read and helped my find the solution: </p>
<ul>
<li><a href="http://msdn.microsoft.com/en-us/library/aa702682.aspx" rel="nofollow">WCF Services and ASP.NET</a></li>
<li><a href="http://hyperthink.net/blog/recycling-appdomains-not-cans/" rel="nofollow">Recycling (AppDomains, not cans)</a></li>
<li><a href="http://weblogs.asp.net/owscott/archive/2007/09/02/application-vs-appdomain.aspx" rel="nofollow">Application vs. AppDomain</a></li>
<li><a href="http://learn.iis.net/page.aspx/164/managing-worker-processes-and-appdomains-in-iis-7-with-wmi/" rel="nofollow">Managing Worker Processes and AppDomains in IIS 7.0 with WMI</a></li>
<li><a href="http://blogs.msdn.com/toddca/archive/2005/12/01/499144.aspx" rel="nofollow">Deleting ASP.NET 2.0 Application Sub-Directories Shuts Down the AppDomain</a></li>
<li><a href="http://weblogs.asp.net/owscott/archive/2006/02/21/ASP.NET-v2.0-%5F2D00%5F-AppDomain-recycles%5F2C00%5F-more-common-than-before.aspx#440333" rel="nofollow">ASP.NET v2.0 - AppDomain recycles, more common than before</a></li>
</ul>
http://stackoverflow.com/questions/168901/howto-count-the-items-from-a-ienumerablet-without-iterating9Howto: Count the items from a IEnumerable<T> without iterating?sebastian2008-10-03T21:05:03Z2009-08-12T16:41:30Z
<pre><code>private IEnumerable<string> Tables
{
get {
yield return "Foo";
yield return "Bar";
}
}
</code></pre>
<p>Let's say I want iterate on those and write something like processing #n of #m. Is there a way I can find out the value of m without iterating before my main iteration?</p>
<p>I hope I made myself clear.</p>
http://stackoverflow.com/questions/1213215/import-added-does-not-appear-in-the-imports-collection-msbuild-project0Import added does not appear in the Imports collection (Msbuild Project)sebastian2009-07-31T15:31:48Z2009-07-31T15:37:45Z
<p>The title pretty much says it all...</p>
<p>this code does not write anything to the console cause the collection is empty.</p>
<pre><code>Project p = new Project(engine);
p.AddNewImport(@"C:\mytarget.targets","");
foreach(Import imp in p.Imports)
Console.WriteLine(p.ProjectPath);
</code></pre>
<p>But!, if I debug the code the collections get the imports, I guess it has to do with timming? :(</p>
http://stackoverflow.com/questions/192822/warning-directive-in-vb-net0#warning directive in VB.netsebastian2008-10-10T19:53:54Z2009-07-17T22:37:17Z
<p>I know the #warning directive does not exist in vb.net... is there anything like it?<br />
I want to be able to throw messages (warnings) at compiler time.</p>
http://stackoverflow.com/questions/998065/does-system-servicemodel-protocolexception-always-have-html-code-in-its-message0Does System.ServiceModel.ProtocolException always have html code in its message?sebastian2009-06-15T19:57:00Z2009-06-15T19:56:59Z
<p>Thats my question, I'm catching a few WCF exceptions on my client and the ProtocolException always has html code in its message.<br />
Could I assume that will happen every time? For what I see the real good message comes in the inner exception, could I just discard the ProtocolException message and show the user the message from the inner exception?</p>
http://stackoverflow.com/questions/899542/problem-using-same-instance-of-indexsearcher-for-multiple-requests/993788#9937880Answer by sebastian for Problem using same instance of indexSearcher for multiple requestssebastian2009-06-14T21:23:12Z2009-06-14T21:23:12Z<p>I also have a web application that uses the Lucene API to query (my web app does not writes on the index) and I create a new instance of the searcher for every request. It might not be very "<a href="http://boulter.com/blog/2004/08/19/performant-is-not-a-word/" rel="nofollow">performant</a>" but I never had that kind of problem.</p>
<p>If you'd like, my web app is on Google Code so you can download the source code and take a look at what I did. Here's the url to the project <a href="http://code.google.com/p/goomez/" rel="nofollow">http://code.google.com/p/goomez/</a></p>
http://stackoverflow.com/questions/731832/interview-question-ffn-n/932231#9322310Answer by sebastian for Interview question: f(f(n)) == -nsebastian2009-05-31T15:26:38Z2009-05-31T15:26:38Z<pre><code>void f(int x)
{
Console.WriteLine(string.Format("f(f({0})) == -{0}",x));
}
</code></pre>
<p>Sorry guys... it was too tempting ;)</p>
http://stackoverflow.com/questions/922393/best-implementation-for-a-rss-feed-in-c-asp-net5Best implementation for a rss feed in C# (ASP.net)sebastian2009-05-28T18:10:42Z2009-05-28T20:18:43Z
<p>The thing I have a web app (asp.net) which needs to have a feed. So I used the System.ServiceModel.Syndication namespace to create the function that creates the 'news'. The thing is it executes everytime somebody calls it, should I use it just to create an xml file and make my rss url point to the file?</p>
<p>What's the best approach?</p>
<p>Edit:Maybe that's where I'm worng. I'm not using a handler... I'm just using a WCF service returning a Rss20FeedFormatter with the data</p>
http://stackoverflow.com/questions/890684/wcf-client-getting-a-timeoutexception-and-i-am-closing-my-connections/907432#9074321Answer by sebastian for WCF client getting a TimeoutException (and I AM closing my connections)sebastian2009-05-25T17:08:49Z2009-05-25T17:08:49Z<p>Ok, so here's how I fixed the issue in case somebody is facing the same problem.<br />
My services, called asynchronously, were returning a stream and this stream was not being disposed on the client, thus, the proxies were not being freeded.</p>
<p>Thanks everybody for the comments. They kinda led me to the solution since there was nothing NEW I hadn't heard before.</p>
http://stackoverflow.com/questions/220202/how-do-you-run-a-program-you-dont-know-where-the-arguments-start1How do you run a program you don't know where the arguments start?sebastian2008-10-20T22:46:16Z2009-04-29T02:43:51Z
<p>The subject doesn't say much cause it is not easy to question in one line.
I have to execute a few programs which I read from the registry. I have to read from a field where somebody saves the whole paths and arguments.<br />
I've been using System.Diagnostics.ProcessStartInfo setting the name of the program and its arguments but I've found a wide variety of arguments which I have to parse to save the process executable file in one field and its arguments in the other. </p>
<p>Is there a way to just execute the whole string as is?</p>
http://stackoverflow.com/questions/1734094/log-my-battery-performance-on-netbookComment by sebastian on Log my battery performance on netbooksebastian2009-11-14T13:10:19Z2009-11-14T13:10:19Ztake a look at this question... it might help
<a href="http://stackoverflow.com/questions/724349/how-can-i-measure-the-energy-consumption-of-my-application-on-windows-mobile-and" rel="nofollow" title="how can i measure the energy consumption of my application on windows mobile and">stackoverflow.com/questions/724349/…</a>http://stackoverflow.com/questions/1728815/how-do-i-mock-an-ienumerablet-so-that-i-can-test-a-method-that-receives-it/1728848#1728848Comment by sebastian on How do I mock an IEnumerable<T> so that I can test a method that receives itsebastian2009-11-13T17:34:40Z2009-11-13T17:34:40Znop... actually in the given example it would just return one single objecthttp://stackoverflow.com/questions/1728815/how-do-i-mock-an-ienumerablet-so-that-i-can-test-a-method-that-receives-it/1728848#1728848Comment by sebastian on How do I mock an IEnumerable<T> so that I can test a method that receives itsebastian2009-11-13T12:19:01Z2009-11-13T12:19:01Zcorrect... +1 to the comment :)http://stackoverflow.com/questions/1728815/how-do-i-mock-an-ienumerablet-so-that-i-can-test-a-method-that-receives-it/1728848#1728848Comment by sebastian on How do I mock an IEnumerable<T> so that I can test a method that receives itsebastian2009-11-13T12:12:17Z2009-11-13T12:12:17Zyes, with the yield return you can return as many as you want... I missed that...http://stackoverflow.com/questions/1728815/how-do-i-mock-an-ienumerablet-so-that-i-can-test-a-method-that-receives-it/1728838#1728838Comment by sebastian on How do I mock an IEnumerable<T> so that I can test a method that receives itsebastian2009-11-13T12:10:44Z2009-11-13T12:10:44Zyap... much simpler than my solution (+1)http://stackoverflow.com/questions/1710879/retrieving-and-displaying-build-information-from-cruisecontrol-net-and-msbuild-in/1710931#1710931Comment by sebastian on Retrieving and Displaying Build Information From CruiseControl.NET and MSBuild in an ASP.NET Applicationsebastian2009-11-10T20:55:35Z2009-11-10T20:55:35Zafter compiling the app with the new AssemblyInfo file you can get the version from CurrentAssembly in your apphttp://stackoverflow.com/questions/1711039/which-is-the-least-in-size-for-net-execution-file/1711055#1711055Comment by sebastian on Which is the least in size for .net execution file?sebastian2009-11-10T20:53:56Z2009-11-10T20:53:56Zi bet you I can make one smaller ;)http://stackoverflow.com/questions/308466/how-to-modify-or-delete-items-from-an-enumerable-collection-while-iterating-throu/310952#310952Comment by sebastian on How to modify or delete items from an enumerable collection while iterating through it in C#sebastian2009-11-10T20:37:49Z2009-11-10T20:37:49Zwhy not defining the list l as List<int> instead of var if you know it´s gonna be a List<int>?
+1 thoughhttp://stackoverflow.com/questions/1708247/linq-to-append-to-a-stringbuilder-from-a-stringComment by sebastian on LINQ to append to a StringBuilder from a String[]sebastian2009-11-10T14:23:32Z2009-11-10T14:23:32Zyes it is... <a href="http://msdn.microsoft.com/en-us/library/zecdkyw2.aspx" rel="nofollow">msdn.microsoft.com/en-us/library/…</a> :)http://stackoverflow.com/questions/1708247/linq-to-append-to-a-stringbuilder-from-a-stringComment by sebastian on LINQ to append to a StringBuilder from a String[]sebastian2009-11-10T14:21:44Z2009-11-10T14:21:44Zi wouldn´t use the .Select command... isn´t the ForEach command available?http://stackoverflow.com/questions/1708203/streamreader-cComment by sebastian on StreamReader C#sebastian2009-11-10T14:07:45Z2009-11-10T14:07:45Zcould you post a sample code of what you´re doing? I don´t quite understand... wouldn´t a Console.WriteLine command do it?http://stackoverflow.com/questions/1588963/bit-curious-to-understand-expression-tree-in-net/1589025#1589025Comment by sebastian on Bit Curious to understand Expression Tree in .NETsebastian2009-10-19T14:35:44Z2009-10-19T14:35:44Z@Lucero, I'm glad we both posted the same link :)http://stackoverflow.com/questions/1566229/subsonic-outer-join/1566696#1566696Comment by sebastian on SubSonic Outer Joinsebastian2009-10-14T14:36:30Z2009-10-14T14:36:30Zdude, this is a comment, not an answer ;)http://stackoverflow.com/questions/1380231/security-issue-with-azure/1381649#1381649Comment by sebastian on Security issue with Azure sebastian2009-09-05T15:08:06Z2009-09-05T15:08:06Zthat's right smarx, thanx... I'm having another issue but this one is solved as you mentionedhttp://stackoverflow.com/questions/890684/wcf-client-getting-a-timeoutexception-and-i-am-closing-my-connections/1352132#1352132Comment by sebastian on WCF client getting a TimeoutException (and I AM closing my connections)sebastian2009-08-31T17:13:25Z2009-08-31T17:13:25Zthat was not my problem... but thanks anyway