User Philippe - Stack Overflowmost recent 30 from stackoverflow.com2009-12-11T07:51:50Zhttp://stackoverflow.com/feeds/user/920http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/615691/how-to-create-a-database-and-populate-it-during-setup1How to create a database and populate it during setupPhilippe2009-03-05T17:05:33Z2009-12-04T05:42:48Z
<p>I would like to find a way to create and populate a database during asp.net setup.</p>
<p>So, what I'm willing to do is:</p>
<ol>
<li>Create the database during the setup</li>
<li>Populate the database with some initial data (country codes or something like that)</li>
<li>Create the appropriate connection string in the configuration file</li>
</ol>
<p>I'm using .NET 3.5 and Visual Studio <strong>2005</strong>, and the Databsae is SQL Server 2005.</p>
<p>Thanks in advance.</p>
http://stackoverflow.com/questions/16432/c-string-output-format-or-concat12C# String output: format or concat?Philippe2008-08-19T15:46:53Z2009-11-30T21:11:53Z
<p>Let's say that you want to output or concat strings, what style do you prefer:</p>
<pre><code> var p = new { FirstName = "Bill", LastName = "Gates" };
Console.WriteLine("{0} {1}", p.FirstName, p.LastName);
Console.WriteLine(p.FirstName + " " + p.LastName);
</code></pre>
<p>Do you rather use format or do you simply concat strings? What is your favorite? Is one of these hurting your eyes?</p>
<p>Do you have any rational arguments to use one and not the other?</p>
<p>I'd go for the second one.</p>
http://stackoverflow.com/questions/1687474/how-can-i-convince-visual-studio-to-not-omit-access-modifiers-when-generating-cod/1687846#16878462Answer by Philippe for How can I convince Visual Studio to not omit access modifiers when generating code?Philippe2009-11-06T14:10:24Z2009-11-06T14:10:24Z<p>The code generated by VS is probably generated using <a href="http://msdn.microsoft.com/en-us/library/y2k85ax6.aspx" rel="nofollow">CodeDom</a>. I don't think you can influence the way it generates the code...</p>
<p>I fear that there is no way to do that. Or you can do that post generating using a clever Regex?</p>
<p>Side note: I use to hate when no modifier is specified, but you get used to it. Sad but true... Anyway, when there is no modifier, it is as private as it can be, one exception being properties.</p>
http://stackoverflow.com/questions/1674756/wcf-endpointnotfoundexception-there-was-no-endpoint-listening/1674829#16748290Answer by Philippe for WCF - EndpointNotFoundException, There was no endpoint listeningPhilippe2009-11-04T16:06:45Z2009-11-04T16:06:45Z<p>You could expose the service contract as WSDL, if possible. If you can reach the WSDL page, then it's running, otherwise it's not.</p>
http://stackoverflow.com/questions/1660106/block-controlaltdelete/1660207#16602072Answer by Philippe for Block Control+Alt+DeletePhilippe2009-11-02T09:23:44Z2009-11-02T09:23:44Z<p>According to the Windows Internal book (4th edition), Ctrl-Alt-Del sequence cannot be intercepted by non-privileged applications. Also, it is said that this particular sequence cannot be intercepted and that the Winlogon process will always receive it (page 529).</p>
<p>I never tried to do this, however, but I would trust the book :)</p>
http://stackoverflow.com/questions/1648730/when-using-linq-what-is-the-difference-between-and-multiple-where-clauses/1648747#164874710Answer by Philippe for When using LINQ, what is the difference between && and multiple where clauses?Philippe2009-10-30T09:13:47Z2009-10-30T09:13:47Z<p>The first one will be translated into:</p>
<pre><code>objectList.Where(o => o.value1 < 100).Where(o=> o.value2 > 10)
</code></pre>
<p>while the second one will be translated in:</p>
<pre><code>objectList.Where(o => o.value1 < 100 && o.value2 > 10)
</code></pre>
<p>So, in the first one, you will have a first filtered sequence that is filtered again (first sequence contains all the objects with value < 100, the second one containing all the objects with value > 10 from the first sequence), in while the second one you will do the same comparisons in the same labda expression. This is valid fro Linq to objects, for other providers it depends how the expression is translated.</p>
http://stackoverflow.com/questions/1644107/last-day-same-week-as-first-day/1644128#16441285Answer by Philippe for Last day same week as first dayPhilippe2009-10-29T14:28:25Z2009-10-29T14:28:25Z<p>It's quite easy. If the last day is not a Sunday, then then first day of the next year must be on the same week!</p>
<p>Depending when you start the week, of course.</p>
http://stackoverflow.com/questions/1639726/linq-to-sql-am-i-missing-something-obvious-here/1639750#16397503Answer by Philippe for LINQ TO SQL am I missing something obvious here?Philippe2009-10-28T20:02:32Z2009-10-28T20:02:32Z<p>LINQ is lazy, so the query is only defined here, not iterated trough.</p>
<p>So, what happens is that you define the query, then you close the datacontext. A short while after, you try to iterate trough, meaning that you try to query trough the SQL connection that has been closed previously.</p>
<p>From MSDN:</p>
<blockquote>
<p>This method is implemented using deferred execution. The immediate return value is an object that stores all the information required to perform the action. The query represented by this method is not executed until the object is enumerated either by calling its GetEnumerator method directly or by using foreach in Visual C# or For Each in Visual Basic.</p>
</blockquote>
http://stackoverflow.com/questions/1373636/why-does-java-not-support-type-inference-for-constructors/1631743#16317430Answer by Philippe for Why does Java not support type inference for constructors?Philippe2009-10-27T15:47:13Z2009-10-27T15:47:13Z<p>I'm no Java super-expert, so I'm not completely sure about what I will state. Here are my thoughts:</p>
<p>As Java implements generics by erasure, for every generic type there is an underlying raw type. If you define a generic type, there will be an underlying raw type that will use <code>Object</code> all around.</p>
<p>When you instantiate a new <code>ArrayList</code>, it would be wrong for compiler to infer the type parameter from the instantiation class (<code>ArrayList<String></code> in your example), as there is a class with that exact name and no type parameter (that is the raw type, <code>ArrayList</code>). I also guess that this is why in java 7 you will have to add <code><></code> to the constructor call to tell the compiler to infer the type.</p>
<p>One could argue that the compiler should instantiate the raw type only when the definition class is the raw type, but I think that it would be confusing. I think that the compiler have to infer from incomplete expressions that would be invalid with no given context, which is not the case for the <code>new ArrayList()</code> statement.</p>
<p>I hope this is clear, and that if I'm wrong someone can correct me.</p>
<p><hr /></p>
<p>Side note:</p>
<p>Also, beware that the raw class is not the same as the type using <code>Object</code> as type parameter:</p>
<pre><code>List<String> list = new ArrayList();
</code></pre>
<p>is valid, where as</p>
<pre><code>List<String> list = new ArrayList<Object>();
</code></pre>
<p>is not. In the first case, the raw type can be used as if it was a generic type, but in the second case you ask for contravariance which is not available (not if you don't use wildcards).</p>
http://stackoverflow.com/questions/1629727/wcf-and-a-longer-operation-after-executing-a-service/1629936#16299360Answer by Philippe for WCF and a longer operation after executing a servicePhilippe2009-10-27T10:33:11Z2009-10-27T10:33:11Z<p>You could also make the operation <a href="http://msdn.microsoft.com/en-us/magazine/cc163537.aspx#S1" rel="nofollow">OneWay</a>, so the client doesn't wait for the result of the operation. This would be the right choice, in my opinion, as you basically don't care about the result of the operation (mail failures, etc...). If you want to ensure delivery, you'll have to configure reliability for you service.</p>
http://stackoverflow.com/questions/1487214/how-to-grab-the-names-of-all-sub-folders-in-a-batch-script/1487276#14872762Answer by Philippe for How to grab the names of all sub-folders in a batch script?Philippe2009-09-28T14:14:43Z2009-10-22T07:44:21Z<p>With PowerShell:</p>
<pre><code>gci | ? { $_.PSIsContainer }
</code></pre>
<p><hr /></p>
<p>Old Answer:</p>
<p>With PowerShell:</p>
<pre><code>gci | ? {$_.Length -eq $null } | % { $_.Name }
</code></pre>
<p>You can use the result as an array in a script, and then foreach trough it, or whatever you want to do...</p>
http://stackoverflow.com/questions/1590973/wcf-nettcp-binding-over-internet/1591115#15911150Answer by Philippe for WCF NetTCP Binding Over InternetPhilippe2009-10-19T20:57:39Z2009-10-19T20:57:39Z<p>According to your scenario, NetTcpBinding is the binding of choice. As you are sure that client will be WCF, no need for interoperability.</p>
<p>Have a look <a href="http://books.google.com/books?id=DW2ldput788C&lpg=PP1&dq=programming%20wcf%20services&pg=PA21#v=onepage&q=&f=false" rel="nofollow">here in Programing WCF Services book</a>.</p>
<p>The only thing I'm not sure about is firewalls. If you have to get trough on of theses, maybe some WS binding could be more appropriate.</p>
http://stackoverflow.com/questions/1587245/c-in-what-cases-should-you-null-out-references/1587281#15872812Answer by Philippe for C#: In what cases should you null out references?Philippe2009-10-19T06:49:18Z2009-10-19T06:49:18Z<p>You should null out references for object you don't need anymore when you know they won't be garbage collected otherwise.</p>
<p>If you have <a href="http://rads.stackoverflow.com/amzn/click/0321356683" rel="nofollow">Effective Java</a> book, look at Item 5, there is an example of a stack implementation that has memory leaks because the objects references are not nulled out. If you don't have that book, you can look that part on Google Books <a href="http://books.google.com/books?id=ZZOiqZQIbRMC&lpg=PP1&dq=effective%20java&pg=PA17#v=onepage&q=&f=false" rel="nofollow">here</a>.</p>
http://stackoverflow.com/questions/833896/how-do-you-get-newcomers-to-get-started-on-a-existing-project21How do you get newcomers to get started on a existing project?Philippe2009-05-07T10:31:36Z2009-10-15T17:59:54Z
<p>When you are in a running project, how do you get newcomers to get started? What is, in your opinion, the fastest way to get them up and running? How do you get them to know the code and the project culture quickly so they can catch-up fast?</p>
<p>What do you do? Give them defects to solve so the have to dive into the code? Do you give them documentation to read (so they get bored)?</p>
<p>I recently started on a project, and I was assigned defects as a starting point. As always, I don't have access to the SCM yet (but I have the sources), I don't have a mail yet, people don't have much time to help, etc... So here is the other question: </p>
<p>How, as peon, do you get started on a project? What can you do to make it more effective?</p>
http://stackoverflow.com/questions/1571670/program-execution-speed-testing/1571805#15718050Answer by Philippe for Program Execution Speed TestingPhilippe2009-10-15T11:33:28Z2009-10-15T11:33:28Z<p>Isn't it sufficient to each method with a set of sample input while measuring the time with <a href="http://msdn.microsoft.com/en-us/library/system.diagnostics.stopwatch.aspx" rel="nofollow">StopWatch</a>?</p>
http://stackoverflow.com/questions/1571454/how-to-generate-client-proxy-for-a-wcf-service-to-a-particular-location/1571484#15714841Answer by Philippe for How to generate client proxy for a WCF service to a particular location?Philippe2009-10-15T10:19:56Z2009-10-15T10:19:56Z<p>When you run svcutil.exe, you can specify the output location using the o switch:</p>
<pre><code>svcutil.exe whatever.wsdl /o:C:\Client\Services.cs
</code></pre>
<p>(Should be something like that, but maybe you have to quote the full path or something)</p>
http://stackoverflow.com/questions/1570939/wcf-message-security-without-certificate-and-windows-auth/1571025#15710250Answer by Philippe for WCF message security without certificate and windows authPhilippe2009-10-15T08:26:43Z2009-10-15T08:26:43Z<p>Well, with WCF you could use Password credential at message level and SSL at transport level, which I think would be enough in your case.</p>
<p>See <a href="http://msdn.microsoft.com/en-us/library/ms733836.aspx?ppud=4" rel="nofollow">here</a>.</p>
http://stackoverflow.com/questions/1566251/visual-studio-regular-expression-for-finding-commented-blocks-of-code/1566364#15663640Answer by Philippe for Visual Studio regular expression for finding commented blocks of codePhilippe2009-10-14T13:51:10Z2009-10-14T13:51:10Z<p>Try this one:</p>
<pre><code>[:Wh]//[^/].*\n[:Wh]*//[^/].*\n[:Wh]*//[^/].*\n
</code></pre>
<p>Works for me.</p>
http://stackoverflow.com/questions/1561877/whats-great-deal-about-asmx-services/1561925#15619250Answer by Philippe for Whats great deal about ASMX ServicesPhilippe2009-10-13T18:02:02Z2009-10-13T18:02:02Z<p>I would say that just knowing ASMX and/WCF basics doesn't make an expert out of you from a web service point of view.</p>
<p>It is true that all the plumbing is taken care of, but you generally have to go back to it at one point or another. It's always very easy to connect asmx to asmx, wcf to wcf, axis2 to axis2... But once you start to make these communicate together, problems start to show. Did you ever worked on a project using web services where at some point you had issues with the generated WSDL, or the generated proxy?</p>
<p>I would say that for someone to claim being asmx expert, he shouldn't look surprised if you start talking about soap 1.1 and 1.2, WS basic profile, WS-*, and all those things that apears to be abstracted away at first sight, but which you'll have to come back to at some point.</p>
http://stackoverflow.com/questions/1560741/can-i-avoid-exceptions-in-c-continuing-code-execution/1560805#15608051Answer by Philippe for Can I avoid exceptions in C#, continuing code execution?Philippe2009-10-13T15:01:39Z2009-10-13T15:46:28Z<p>You can put the other lines in a finally clause, but that would be quite ugly, especially if these can throw exceptions as well...</p>
<p>You should recover from the first exception, and then carry on to the next line, wrapping each in a try/catch statement.</p>
http://stackoverflow.com/questions/1555761/biztalk-2009-esb-confusion/1555827#15558270Answer by Philippe for BizTalk 2009 ESB ConfusionPhilippe2009-10-12T17:20:18Z2009-10-12T17:20:18Z<p>For the general question, from what I remember, yes, all messages are going trough the message box. But I have been using BizTalk 2006 R2. Look at the picture <a href="http://msdn.microsoft.com/en-us/library/ee236739%28BTS.10%29.aspx" rel="nofollow">here</a>.</p>
<p>For the two other question, I never completely figured it out myself. I don't have the time to investigate right now, but I'll probably do it if no one enlighten us :)</p>
http://stackoverflow.com/questions/1555782/c-is-there-a-way-to-get-the-position-of-the-iteration-in-a-foreach/1555794#15557940Answer by Philippe for C#, is there a way to get the position of the iteration in a foreach?Philippe2009-10-12T17:13:09Z2009-10-12T17:13:09Z<p>No, you'll have to keep an index separately.</p>
http://stackoverflow.com/questions/1544800/custom-collection-vs-generic-collection-for-public-methods/1544806#15448065Answer by Philippe for Custom Collection vs Generic Collection for public methodsPhilippe2009-10-09T16:26:15Z2009-10-09T16:26:15Z<p>I would go for the second one. The client code has to know the Image type anyway.</p>
<p>The first one only means more code.</p>
http://stackoverflow.com/questions/1519690/how-to-debug-a-wcf-service-with-an-http-context/1519747#15197470Answer by Philippe for How to debug a WCF Service with an HTTP Context?Philippe2009-10-05T12:17:03Z2009-10-05T12:43:59Z<p>You must attach to the IIS process, namely aspnet_wp.exe under XP and w3wp.exe on 2003 server. This way you will hit breakpoints etc.</p>
<p>If you are looking for a way to test the WCF service itself, I would suggest using <a href="http://msdn.microsoft.com/en-us/library/bb552364.aspx" rel="nofollow">WcfTestClient</a>.</p>
<p>And remember that the IIS process won't show in the task manager until you hit the server at least once (for example after a reboot, you'll have to hit a page on the server at least once to make the process start).</p>
http://stackoverflow.com/questions/1518689/estimate-calculate-session-memory-usage/1518776#15187760Answer by Philippe for Estimate/Calculate Session Memory UsagePhilippe2009-10-05T08:07:56Z2009-10-05T08:07:56Z<p>You can probably get some of these using <a href="http://msdn.microsoft.com/en-us/library/fxk122b4.aspx?ppud=4" rel="nofollow">Performance Counters</a> and <a href="http://msdn.microsoft.com/en-us/library/ms979204.aspx" rel="nofollow">Custom Performance Counters</a>. I never tested these with ASP.NET, but otherwise they'r quite nice to measure performances.</p>
http://stackoverflow.com/questions/1510185/how-to-serialize-dictionarystring-string-through-wcf/1510245#15102451Answer by Philippe for How to serialize Dictionary<string, string> through WCF?Philippe2009-10-02T15:26:26Z2009-10-02T15:26:26Z<p>As WCF has to convert everything to XML, it has to fit as XML... Collections are generally converted to arrays.</p>
<p>A Dictionary is prety hard to represent as xml, that's why you have this type on the other side. You can specify SvcUtil.exe to use specific collections instead of arrays in the generated proxy code, but I'm not sure it will work for a Dictionary. I would say that you should avoid using a Dictionary here, and use a simpler Collection.</p>
<p>What I would do is create my own data type, [DataContract] it, make it have two fields of type String, then make a Collection of these that you fill with everthing you find in the Dictionary. Then sent that Collection trough the wire, then convert it back to a Dictionary on the other side.</p>
http://stackoverflow.com/questions/1509925/hosting-generic-service-in-iis/1510127#15101270Answer by Philippe for hosting generic service in IISPhilippe2009-10-02T15:08:02Z2009-10-02T15:08:02Z<p>I'm not sure what you mean...</p>
<p>I'll assume that what you want is to use some mechanism to create an instance for the service on demand based on the url. For example, calling <a href="http://localhost/Service1" rel="nofollow">http://localhost/Service1</a> would instantiate Service1, <a href="http://localhost/Service2" rel="nofollow">http://localhost/Service2</a> would instantiate Service2, etc... Without having to create all these virtual directories.</p>
<p>I never did this, but it should be possible to do using URL Routing in ASP.NET. For the how, you will probably have to test :)</p>
http://stackoverflow.com/questions/1508774/why-isnt-inlining-a-method-equivalent-to-declaring-it-explicitly/1508819#15088190Answer by Philippe for Why isn't inlining a method equivalent to declaring it explicitly?Philippe2009-10-02T10:41:55Z2009-10-02T10:41:55Z<p>You could declare it like this:</p>
<pre><code>bool DoesLineMatch(string line)
{
return Regex.IsMatch(line, pattern);
}
</code></pre>
<p>Where pattern is a private variable in you class. But that's a bit ugly, that why you can declare the deleage inline and use a closure for the pattern variable that is declared localy in your RemoveLinesFromFile method.</p>
http://stackoverflow.com/questions/1508772/c-approach-for-a-simple-plugin-service-provider-model-different-code-depending/1508779#15087790Answer by Philippe for C# approach for a simple plugin/service provider model? (different code depending on...)Philippe2009-10-02T10:31:02Z2009-10-02T10:31:02Z<p>You could use delegates, or partial methods to allow hooking in your code, but these mean that the assembly has to be recompiled.</p>
http://stackoverflow.com/questions/1504467/c-xml-read-write-xpath-without-using-xmldocument/1504531#15045311Answer by Philippe for C# xml read/write/xpath without using XmlDocumentPhilippe2009-10-01T15:09:07Z2009-10-01T15:09:07Z<p>I supose that using <a href="http://msdn.microsoft.com/en-us/library/system.xml.linq.xdocument.aspx" rel="nofollow">System.Xml.Linq.XDocument</a> is also prohibited? Otherwise, it would be a good choice, as it is faster than XmlDocument (as I remember).</p>
http://stackoverflow.com/questions/1650264/what-does-this-program-algorithm-do-in-cComment by Philippe on What does this program/algorithm do in C#?Philippe2009-10-30T14:53:50Z2009-10-30T14:53:50ZIt eats up a bit of my precious time.http://stackoverflow.com/questions/1648730/when-using-linq-what-is-the-difference-between-and-multiple-where-clauses/1648760#1648760Comment by Philippe on When using LINQ, what is the difference between && and multiple where clauses?Philippe2009-10-30T09:26:17Z2009-10-30T09:26:17ZRight, but isn't the opposite true? Let's say you use a simple '&', then both will be evaluated in the second case. Anyway, better avoid using side effects in these :)http://stackoverflow.com/questions/1636412/can-anybody-help-me-to-create-a-web-service-in-asp-netComment by Philippe on can anybody help me to create a web service in ASP.NETPhilippe2009-10-28T10:59:21Z2009-10-28T10:59:21ZYou are likely to get help if you show an explain what you already done. People will help you to solve your specific issues, but will not do all the work for you just like that.http://stackoverflow.com/questions/1635712/c-code-to-search-and-result-in-xmlComment by Philippe on C# code to search and result in xmlPhilippe2009-10-28T07:58:12Z2009-10-28T07:58:12ZCould you provide us with at coded attempt to do that? I'm dont want to sound rude, but SO is not a coding machine....http://stackoverflow.com/questions/1373636/why-does-java-not-support-type-inference-for-constructors/1631743#1631743Comment by Philippe on Why does Java not support type inference for constructors?Philippe2009-10-27T15:47:21Z2009-10-27T15:47:21ZI felt like answering this question because I think none of the answers (which are all excellent!) here really address the initial question that is <i>why</i> :)http://stackoverflow.com/questions/1629832/get-access-to-written-properties-of-a-classComment by Philippe on get access to written properties of a classPhilippe2009-10-27T10:27:39Z2009-10-27T10:27:39ZCould you post a bit of your code and comment it? I'm sorry but I don't get what you are trying to achieve.http://stackoverflow.com/questions/1607871/major-difference-between-foreach-and-using/1607906#1607906Comment by Philippe on Major difference between Foreach and UsingPhilippe2009-10-22T15:10:33Z2009-10-22T15:10:33ZThey both use brackets!http://stackoverflow.com/questions/1487214/how-to-grab-the-names-of-all-sub-folders-in-a-batch-script/1487276#1487276Comment by Philippe on How to grab the names of all sub-folders in a batch script?Philippe2009-10-22T13:33:20Z2009-10-22T13:33:20ZGood point, though the output described by sasayins was to have only directory names.http://stackoverflow.com/questions/1601000/svcutil-to-include-namespaces-to-keep-from-generating-the-same-class-file-in-multComment by Philippe on SVCUtil to include namespaces to keep from generating the same class file in multiple namespacesPhilippe2009-10-21T14:17:23Z2009-10-21T14:17:23ZI'm not sure I get your question right, but from what I understood, your wsdl files make references to common schemas and you would like these common elements to be generated only once?http://stackoverflow.com/questions/1580397/hosting-requirement-what-does-wcf-need-to-work/1580480#1580480Comment by Philippe on Hosting requirement: What does WCF need to work?Philippe2009-10-16T22:38:49Z2009-10-16T22:38:49ZI would add that you can host WCF services in <i>any</i> .NET application, but I guess that when Scott says "what do I need from my web host", it means hosting the WCF service in IIS :)http://stackoverflow.com/questions/1571670/program-execution-speed-testing/1571805#1571805Comment by Philippe on Program Execution Speed TestingPhilippe2009-10-15T12:09:40Z2009-10-15T12:09:40ZI would guess that the first method in the slowest? You should probably run separate tests, like 1000 times TestXML with samples files, then calculate the average. Repeat with TestXDoc, then with TestString and compare results.http://stackoverflow.com/questions/1571454/how-to-generate-client-proxy-for-a-wcf-service-to-a-particular-location/1571481#1571481Comment by Philippe on How to generate client proxy for a WCF service to a particular location?Philippe2009-10-15T11:27:22Z2009-10-15T11:27:22ZNice, I didn't know the /d switch.http://stackoverflow.com/questions/1570939/wcf-message-security-without-certificate-and-windows-auth/1571025#1571025Comment by Philippe on WCF message security without certificate and windows authPhilippe2009-10-15T10:16:36Z2009-10-15T10:16:36ZIf you put an inspector on both client and server to intercept the message and modify it's content before it released to the client/server, you could easily use your own encryption mechanism. This wouldn't be reflected in the contact, but I doesn't matter for what I can see. Or is there a reason why you can't use message inspectors?http://stackoverflow.com/questions/1570939/wcf-message-security-without-certificate-and-windows-auth/1571025#1571025Comment by Philippe on WCF message security without certificate and windows authPhilippe2009-10-15T09:43:07Z2009-10-15T09:43:07ZFor the certificates, as marc_s said, there is probably no way to get around these. For the password thingy, you are absolutely right, my bad :)
Perhaps you could try to encrypt the data manually before putting them in the message, or use messages inspectors to do so? I, however, think that you should think twice before using your own security mechanisms.http://stackoverflow.com/questions/1566251/visual-studio-regular-expression-for-finding-commented-blocks-of-codeComment by Philippe on Visual Studio regular expression for finding commented blocks of codePhilippe2009-10-14T15:20:37Z2009-10-14T15:20:37Z+1 For pointing out that old code should be deleted, not commented. Like you said, version control system can get you that code back if needed.