User Peter LaComb Jr. - Stack Overflowmost recent 30 from stackoverflow.com2009-12-19T00:06:27Zhttp://stackoverflow.com/feeds/user/8513http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/471424/wix-tricks-and-best-practices/1903533#19035331Answer by Peter LaComb Jr. for WiX tricks and best practicesPeter LaComb Jr.2009-12-14T21:11:42Z2009-12-14T21:11:42Z<p>I'm surprised no one has mentioned using T4 to generate the WXS file during build. I learned about this by way of Henry Lee @ <a href="http://blog.newagesolution.net/2008/06/how-to-use-msbuild-and-wix-to-msi.html" rel="nofollow">New Age Solutions</a>.</p>
<p>Essentially, you create a custom MSBuild task to execute a T4 template, and that template outputs the WXS just before the Wix project is compiled. This allows you to (depending on how you implement it) automatically include all assemblies output from compiling another solution (meaning that you no longer have to edit the wxs ever time you add a new assembly).</p>
http://stackoverflow.com/questions/1633267/msbuild-batching-cant-figure-out-how-to-get-a-target-to-be-run-only-for-some-s/1643148#16431480Answer by Peter LaComb Jr. for MSBuild Batching - Can't figure out how to get a target to be run only for some SolutionsPeter LaComb Jr.2009-10-29T11:42:53Z2009-10-29T11:42:53Z<p>Turns out I was making this more complicated than it needed to be. Rather than have two Wix projects, building each only when the correct platform for the project had built, I now have one wix project and I pass the platform in to it (by way of my ExecuteT4Template target). This works because the AfterCompileConfiguration Target has access to $(Platform), and is executed for each platform you build.</p>
<pre><code><ItemGroup>
<SolutionToBuild Include="$(BuildProjectFolderPath)/../../Source/ProjectA.sln" />
<ConfigurationToBuild Include="Release|x86">
<FlavorToBuild>Release</FlavorToBuild>
<PlatformToBuild>x86</PlatformToBuild>
</ConfigurationToBuild>
<ConfigurationToBuild Include="Release|x64">
<FlavorToBuild>Release</FlavorToBuild>
<PlatformToBuild>x64</PlatformToBuild>
</ConfigurationToBuild>
</ItemGroup>
<Target Name="AfterCompileConfiguration">
<ExecuteT4Template
TemplatePath="$(SolutionRoot)/Installer/Installer/ProjectA Installer.tt"
OutputPath="$(SolutionRoot)/Installer/Installer/ProjectA Installer.wixproj"
Properties="DropLocation=$(DropLocation)\$(BuildNumber)\$(Platform)\$(Configuration);OutputName=$(Platform)ProjectA.msi;" />
<ExecuteT4Template
TemplatePath="$(SolutionRoot)/Installer/Installer/ProjectA.tt"
OutputPath="$(SolutionRoot)/Installer/Installer/ProjectA.wxs"
Properties="Version=4.1;ProductName= ProjectA;Manufacturer=Acme;SourceDirectory=$(BinariesRoot)\$(Platform);Platform=$(Platform);" />
<MSBuild
Projects="$(SolutionRoot)/Installer/ProjectA Installer.sln" />
</Target>
</code></pre>
http://stackoverflow.com/questions/1633267/msbuild-batching-cant-figure-out-how-to-get-a-target-to-be-run-only-for-some-s0MSBuild Batching - Can't figure out how to get a target to be run only for some SolutionsPeter LaComb Jr.2009-10-27T19:52:08Z2009-10-29T11:42:53Z
<p>I have something like this in my TFSBuild.proj </p>
<pre><code><ItemGroup>
<SolutionToBuild Include="$(BuildProjectFolderPath)/../../ProjectA/ProjectA.sln" />
<SolutionToBuild Include="$(BuildProjectFolderPath)/../../x64 Installer/x64 Installer.sln" Condition="'$(Platform)' == 'x64' " />
<SolutionToBuild Include="$(BuildProjectFolderPath)/../../x86 Installer/x86 Installer.sln" Condition="'$(Platform)' == 'x86' " />
<ConfigurationToBuild Include="Release|x86">
<FlavorToBuild>Release</FlavorToBuild>
<PlatformToBuild>x86</PlatformToBuild>
</ConfigurationToBuild>
<ConfigurationToBuild Include="Release|x64">
<FlavorToBuild>Release</FlavorToBuild>
<PlatformToBuild>x64</PlatformToBuild>
</ConfigurationToBuild>
</ItemGroup>
</code></pre>
<p>I want to override the BeforeCompile target to run a custom task I have written. The custom task will take the output from ProjectA and build file that is used by both installer projects (Wix project files). How to I get the BeforeCompile target to only execute for those two SolutionToBuild items? I assume this is about Target Batching (because I can then use conditions on my task, but I don't get it. </p>
<p>I tried adding something like this to see if it would work, but only the first solution is output to the log: </p>
<pre><code><Target Name="BeforeCompile" Outputs="%(SolutionToBuild.Identity)">
<Message Text="Solution being built: %(SolutionToBuild.Identity)" />
</Target>
</code></pre>
http://stackoverflow.com/questions/1434088/scopeidentity-and-instead-of-insert-trigger-work-around0SCOPE_IDENTITY And Instead of Insert Trigger work-aroundPeter LaComb Jr.2009-09-16T16:31:34Z2009-09-16T17:32:09Z
<p>OK, I have a table with no natural key, only an integer identity column as it's primary key. I'd like to insert and retrieve the identity value, but also use a trigger to ensure that certain fields are always set. Originally, the design was to use instead of insert triggers, but that breaks scope_identity. The output clause on the insert statement is also broken by the instead of insert trigger. So, I've come up with an alternate plan and would like to know if there is anything obviously wrong with what I intend to do:</p>
<p>begin contrived example:</p>
<pre><code> CREATE TABLE [dbo].[TestData] (
[TestId] [int] IDENTITY(1,1) PRIMARY KEY NOT NULL,
[Name] [nchar](10) NOT NULL)
CREATE TABLE [dbo].[TestDataModInfo](
[TestId] [int] PRIMARY KEY NOT NULL,
[RowCreateDate] [datetime] NOT NULL)
ALTER TABLE [dbo].[TestDataModInfo] WITH CHECK ADD CONSTRAINT
[FK_TestDataModInfo_TestData] FOREIGN KEY([TestId])
REFERENCES [dbo].[TestData] ([TestId]) ON DELETE CASCADE
CREATE TRIGGER [dbo].[TestData$AfterInsert]
ON [dbo].[TestData]
AFTER INSERT
AS
BEGIN
-- SET NOCOUNT ON added to prevent extra result sets from
-- interfering with SELECT statements.
SET NOCOUNT ON;
INSERT INTO [dbo].[TestDataModInfo]
([TestId],
[RowCreateDate])
SELECT
[TestId],
current_timestamp
FROM inserted
-- Insert statements for trigger here
END
</code></pre>
<p>End contrived example.</p>
<p>No, I'm not doing this for one little date field - it's just an example.</p>
<p>The fields that I want to ensure are set have been moved to a separate table (in TestDataModInfo) and the trigger ensures that it's updated. This works, it allows me to use scope_identity() after inserts, and appears to be safe (if my after trigger fails, my insert fails). Is this bad design, and if so, why?</p>
http://stackoverflow.com/questions/63241/what-is-the-strangest-programming-language-you-have-used/64393#643935Answer by Peter LaComb Jr. for What is the strangest programming language you have used?Peter LaComb Jr.2008-09-15T16:23:56Z2009-06-05T03:38:52Z<p>RDML/RDMLX is by far the weirdest I've ever used. Conditional statements must be wrapped in single quotes IF they contain certain types of content. This means that literals in conditional statements must have two single quotes around them.</p>
<p>This is a valid statement:</p>
<pre><code> If COND('#POLN11 *EQ *BLANKS')
</code></pre>
<p>As is</p>
<pre><code> If COND('#POLN11 *EQ ''ABC12345678''')
</code></pre>
<p>And that is just the beginning. There is no concept of scope - ALL variables are global. And, like RPG, if you read a file that contains fields of the same name as the ones you're working with, you lose whatever value you had stored. Unlike RPG, there is no facility to prefix a file (prefixes the field names with what you define) to make the field names unique.</p>
http://stackoverflow.com/questions/605101/order-in-which-command-prompt-executes-files-with-the-same-name-a-bat-vs-a-cmd-v/605107#6051072Answer by Peter LaComb Jr. for Order in which Command Prompt executes files with the same name (a.bat vs a.cmd vs a.exe)Peter LaComb Jr.2009-03-03T04:23:28Z2009-03-03T04:23:28Z<p>I believe this is what you are looking for</p>
<p><a href="http://support.microsoft.com/kb/35284" rel="nofollow">http://support.microsoft.com/kb/35284</a></p>
http://stackoverflow.com/questions/480761/would-you-develop-in-vb-and-then-convert-your-code-to-c-just-to-have-your-entire2Would you develop in VB and then convert your code to C# just to have your entire team use one language?Peter LaComb Jr.2009-01-26T18:07:23Z2009-01-26T19:19:01Z
<p>I'm not considering this - I'm comfortable with C# and VB, but an expert in neither. But, some on my team have expressed an intention to do this since we're moving toward C# as a standard.</p>
http://stackoverflow.com/questions/480627/why-wont-anyone-accept-public-fields-in-c/480702#4807020Answer by Peter LaComb Jr. for Why won't anyone accept public fields in C#?Peter LaComb Jr.2009-01-26T17:51:31Z2009-01-26T17:51:31Z<p>And let's not forget that accessors give you flexibility when working with multiple threads.</p>
http://stackoverflow.com/questions/416625/why-does-sql-force-me-to-repeat-all-non-aggregated-fields-from-my-select-clause-i/417985#4179852Answer by Peter LaComb Jr. for Why does SQL force me to repeat all non-aggregated fields from my SELECT clause in my GROUP BY clause?Peter LaComb Jr.2009-01-06T20:25:54Z2009-01-06T20:25:54Z<p>Perhaps we need a shorthand form - call it GroupSelect</p>
<pre><code>GroupSelect Field1, Field2, sum(Field3) From SomeTable Where (X = "3")
</code></pre>
<p>This way, the parser need only throw an error if you leave out an aggregate function.</p>
http://stackoverflow.com/questions/398468/ordering-sql-query-by-specific-field-values/398484#3984843Answer by Peter LaComb Jr. for Ordering SQL query by specific field valuesPeter LaComb Jr.2008-12-29T19:47:12Z2008-12-29T19:47:12Z<p>Add those values to another table with a numeric column for their rank:</p>
<pre><code>Edition Rank
NE 1
OE 2
OP 3
</code></pre>
<p>Join the tables, and sort on the RANK field.</p>
http://stackoverflow.com/questions/105113/what-is-the-most-interesting-design-pattern-youve-ever-met/392075#3920751Answer by Peter LaComb Jr. for What is the most interesting design pattern you've ever met ?Peter LaComb Jr.2008-12-24T19:10:58Z2008-12-24T19:10:58Z<p>For the last year I've been doing maintenance on a windows application written in LANSA where the focus is managed by having all controls set to tabStop = false except for two hidden buttons (PrevFocus and NextFocus). When a form is loaded, the focus is set to a field, and the name of that field is stored in a tracking variable (apptly named 'FocusField'). When the user tabs (or shift-tabs) to change focus, the GotFocus event of the appropriate button is run. Inside that function is a case statement (select case FocusField). Based on the currently focused field, validation logic is run and, possibly, the focus changes to another field.</p>
<p>The GotFocus events for most controls look at what the current value of FocusField is and then call a LostFocus function that does that same case statement work for FocusField so that the previously focused field will get validated.</p>
<p>As you can probably guess, this makes it impossible to separate the UI from the logic, and an unbelievable chore to maintain. Re-writing these forms to use a simple Validate method that validates ALL the inputs and letting the normal tabbing properties (TabOrder, TabStop, etc) do their magic has usually resulted in 50% reduction in code and vastly more reliable forms.</p>
<p>I have no idea where this pattern originated, though it may have been dreamed up by the RPG/green-screen programmers turned WinForms developers that wrote the application.</p>
http://stackoverflow.com/questions/337363/net-2-0-sending-email-to-a-distribution-group/388833#3888331Answer by Peter LaComb Jr. for .NET 2.0: Sending email to a distribution group Peter LaComb Jr.2008-12-23T13:07:25Z2008-12-23T13:07:25Z<p>You can give the groups a full internet e-mail address. Ask your admin if you don't know how.</p>
http://stackoverflow.com/questions/45132/what-is-the-best-way-and-recommended-practices-for-interacting-with-lotus-notes-f/388823#3888231Answer by Peter LaComb Jr. for What is the best way and recommended practices for interacting with Lotus Notes from C#Peter LaComb Jr.2008-12-23T13:03:54Z2008-12-23T13:03:54Z<p>Back in the day I would have recommended N2N from Proposion, but that product has gone since Quest acquired Proposion.</p>
<p>That said, Proposion was proof that you can wrap the Notes API in a set of .Net classes safely. You can find some info on that in <a href="http://www.bobzblog.com/tuxedoguy.nsf/dx/calling-notes-capi-from-cvisual-studio?opendocument&comments" rel="nofollow">Bob Balaban's blog</a>.</p>
http://stackoverflow.com/questions/386487/capturing-html-generated-from-asp-net/386645#3866450Answer by Peter LaComb Jr. for Capturing HTML generated from ASP.NETPeter LaComb Jr.2008-12-22T16:21:33Z2008-12-22T16:30:05Z<p>Edit: </p>
<p>I need to stop editing this answer. To put it short, override the Render method for the page. Similar question and answers <a href="http://stackoverflow.com/questions/56279/export-aspx-to-html">here</a></p>
http://stackoverflow.com/questions/330756/what-programming-tools-have-you-built-for-yourself/360884#3608840Answer by Peter LaComb Jr. for What programming tools have you built for yourself?Peter LaComb Jr.2008-12-11T21:01:03Z2008-12-11T21:01:03Z<p>Because LANSA source (RDML) is stored in a database on the iSeries with one or more records per line of source (1 for every 80 characters), and LANSA has no built-in version control (just a crude check-in, check-out with no diff/merge/roll-back), I built a windows app in .Net that exports source to text files and allows me to launch diffmerge or check-in/refresh from a subversion server.</p>
http://stackoverflow.com/questions/350734/set-the-file-path-and-name-properties-before-uploading/350741#3507410Answer by Peter LaComb Jr. for Set the file path and name properties before uploadingPeter LaComb Jr.2008-12-08T20:17:24Z2008-12-08T20:17:24Z<p>This type of interaction with file-upload controls is disabled for security reasons.</p>
http://stackoverflow.com/questions/904/in-html-how-to-word-break-on-a-dash/343686#3436862Answer by Peter LaComb Jr. for In HTML, how to word-break on a dash?Peter LaComb Jr.2008-12-05T12:36:27Z2008-12-05T12:36:27Z<p>In this specific instance (where your string is going to contain hyphens) I'd transform the text to this server-side:</p>
<pre><code><div style="width:150px;">
<span>12333-</span><span>2333-</span><span>233-</span><span>23339392-</span><span>332332323</span>
</div>
</code></pre>
http://stackoverflow.com/questions/334429/how-can-i-programmatically-determine-the-creator-of-a-domino-database/334720#3347200Answer by Peter LaComb Jr. for How can I programmatically determine the creator of a Domino database?Peter LaComb Jr.2008-12-02T17:10:53Z2008-12-02T17:10:53Z<p>That information is not stored in the catalog, and is probably not stored in the database either (It's not shown on any of the property tabs).</p>
<p>You would probably need to get/write a server add-in to monitor database creation and store that data somewhere. Then you'd need to account for databases created by adminp/replication - your add-in might pick them up as having been created by a server.</p>
<p>This question was also asked in the <a href="http://www-10.lotus.com/ldd/46dom.nsf/55c38d716d632d9b8525689b005ba1c0/bed18751bdad2d248525660a00716c2a?OpenDocument" rel="nofollow">R4/R5 forums in 1998</a> and received no answer.</p>
http://stackoverflow.com/questions/308915/why-are-circular-references-in-visual-studio-a-bad-practice/308947#30894717Answer by Peter LaComb Jr. for Why are circular references in Visual Studio a bad practice?Peter LaComb Jr.2008-11-21T14:33:37Z2008-11-21T14:33:37Z<p>Yes, this is a bad practice for precisely the reason you've stated - you cannot rebuild from the source. </p>
http://stackoverflow.com/questions/174662/a-c-to-vb-net-conversion-utility-that-handles-automatic-properties-correctly3A C# to VB.Net conversion utility that handles Automatic properties correctly?Peter LaComb Jr.2008-10-06T15:04:06Z2008-11-03T15:43:52Z
<p>I hope this isn't considered a duplicate since it's more pointed than similar questions (I'm curious about a specific weakness in C# to VB.net conversion utilities).</p>
<p>I've been looking at using a tool like this <a href="http://www.developerfusion.com/tools/convert/csharp-to-vb/" rel="nofollow">.net code converter</a> to convert a class library to VB since I'm the only one in my group comfortable with C#. The problem I've run into is that it doesn't generate proper VB for automatic properties. It creates empty get/set routines. </p>
<p>So this:</p>
<pre><code>public string TransactionType { get; private set; }
</code></pre>
<p>Becomes this:</p>
<pre><code>Public Property TransactionType() As String
Get
End Get
Private Set(ByVal value As String)
End Set
End Property
</code></pre>
<p>The tools linked <a href="http://stackoverflow.com/questions/102956/c-vbnet-conversion" rel="nofollow" title="here">here</a> and <a href="http://stackoverflow.com/questions/88359/what-is-the-best-c-to-vbnet-converter">here</a> have similar issues - some create valid properties, but they don't respect the access level of the set routine.</p>
<p>Side question - If you were going to fix the converter on DeveloperFusion, would you have it return something like this?</p>
<pre><code>Private _TransactionType As String
Public Property TransactionType() As String
Get
Return _TransactionType
End Get
Private Set(ByVal value As String)
_TransactionType = value
End Set
End Property
</code></pre>
http://stackoverflow.com/questions/238079/the-funniest-weirdest-error-message-youve-got-from-a-development-environment-app/238895#2388950Answer by Peter LaComb Jr. for The funniest/weirdest error message you've got from a development environment/applicationPeter LaComb Jr.2008-10-27T01:12:00Z2008-10-27T01:12:00Z<p>Lotus notes (in LotusScript, when attempting to use a null variant as if it were an array):</p>
<p>Variant does not contain a container.</p>
http://stackoverflow.com/questions/111859/did-you-ever-switch-from-one-programming-language-to-another/231877#2318770Answer by Peter LaComb Jr. for Did you ever switch from one programming language to another?Peter LaComb Jr.2008-10-23T22:55:03Z2008-10-23T22:55:03Z<p>BASIC
C
x86 Assembler
C++
VB (6 and earlier)
PHP
RDML/RDMLX
C#
VB.Net</p>
<p>Oh, and I read RPG (don't know the finer points of writing it, but I can figure out what it does).</p>
http://stackoverflow.com/questions/34300/has-net-made-raw-com-and-dcom-programming-redundant/64615#646151Answer by Peter LaComb Jr. for Has .NET made raw COM and DCOM programming redundant ?Peter LaComb Jr.2008-09-15T16:49:24Z2008-09-15T16:49:24Z<p>I suppose that depends on what you mean by 'raw'. I still find the need to expose COM APIs from .Net class libraries on occasion. Makes the process of migrating from certain platforms to .Net a lot easier since I can replace small pieces via COM.</p>
http://stackoverflow.com/questions/1791645/why-i-can-only-execute-a-stored-procedures-two-timesComment by Peter LaComb Jr. on Why I can only execute a stored procedures two times?Peter LaComb Jr.2009-11-24T17:45:47Z2009-11-24T17:45:47ZAlso, the full text of the error message (cleansed of any private data) is helpful.http://stackoverflow.com/questions/1750702/what-could-affect-the-location-of-text-outside-of-div-divComment by Peter LaComb Jr. on What could affect the location of text outside of <div>...</div>?Peter LaComb Jr.2009-11-17T19:25:40Z2009-11-17T19:25:40ZFirefox would prefer that you use / instead of \ in the path to your CSS for one thing.http://stackoverflow.com/questions/1750702/what-could-affect-the-location-of-text-outside-of-div-div/1750729#1750729Comment by Peter LaComb Jr. on What could affect the location of text outside of <div>...</div>?Peter LaComb Jr.2009-11-17T19:25:01Z2009-11-17T19:25:01ZAdd //<![CDATA[ //]] blocks around the contents of your upper script blocks to see more useful stuff in the validator.http://stackoverflow.com/questions/1704762/how-should-i-call-this-native-dll-function-from-cComment by Peter LaComb Jr. on How should I call this native dll function from C#?Peter LaComb Jr.2009-11-10T00:43:54Z2009-11-10T00:43:54ZThe only time I've seen a debugger skip lines when it shouldn't is when the compiled code doesn't match the source. Are you certain that you're binding to the right version of the assembly?http://stackoverflow.com/questions/1633267/msbuild-batching-cant-figure-out-how-to-get-a-target-to-be-run-only-for-some-s/1634011#1634011Comment by Peter LaComb Jr. on MSBuild Batching - Can't figure out how to get a target to be run only for some SolutionsPeter LaComb Jr.2009-10-29T11:36:54Z2009-10-29T11:36:54ZThat is a perfectly good way to accomplish what I wanted.http://stackoverflow.com/questions/1633267/msbuild-batching-cant-figure-out-how-to-get-a-target-to-be-run-only-for-some-sComment by Peter LaComb Jr. on MSBuild Batching - Can't figure out how to get a target to be run only for some SolutionsPeter LaComb Jr.2009-10-27T21:18:42Z2009-10-27T21:18:42ZOk - I found the BeforeCompileSolution task, which is run per solution, but the only thing I see identifying the solution is $(Solution), which is the full path & filename of the solution, and doesn't compare directly with '$(BuildProjectFolderPath)/../../x86 Installer/x86 Installer.sln'http://stackoverflow.com/questions/1434088/scopeidentity-and-instead-of-insert-trigger-work-around/1434317#1434317Comment by Peter LaComb Jr. on SCOPE_IDENTITY And Instead of Insert Trigger work-aroundPeter LaComb Jr.2009-09-16T17:17:15Z2009-09-16T17:17:15ZOutput also returns null when using instead of insert triggers.http://stackoverflow.com/questions/1434088/scopeidentity-and-instead-of-insert-trigger-work-around/1434122#1434122Comment by Peter LaComb Jr. on SCOPE_IDENTITY And Instead of Insert Trigger work-aroundPeter LaComb Jr.2009-09-16T16:37:39Z2009-09-16T16:37:39ZYou can't really say that scope_identity isn't affected by trigger code - it returns null if you use an 'instead of insert' trigger.http://stackoverflow.com/questions/1434088/scopeidentity-and-instead-of-insert-trigger-work-aroundComment by Peter LaComb Jr. on SCOPE_IDENTITY And Instead of Insert Trigger work-aroundPeter LaComb Jr.2009-09-16T16:36:27Z2009-09-16T16:36:27ZThanks Joel - didn't see my own sloppy typing.http://stackoverflow.com/questions/555277/i-need-the-sum-of-two-columns-in-a-view/555300#555300Comment by Peter LaComb Jr. on I need the sum of two columns in a view.Peter LaComb Jr.2009-07-09T14:55:34Z2009-07-09T14:55:34ZWhy wouldn't you just add a column that sums the programmatic names of the other two columns and then put totals on it? Then a simple File - Export of the view is all that is needed.http://stackoverflow.com/questions/471405/bootstrapper-prerequisite-ordering/471439#471439Comment by Peter LaComb Jr. on Bootstrapper Prerequisite ordering.Peter LaComb Jr.2009-06-29T15:47:15Z2009-06-29T15:47:15ZYour last statement is backwards. Product A depends on B and so B is installed first. You get a +1 if you fix it.http://stackoverflow.com/questions/398388/convert-bitmaps-to-one-multipage-tiff-image-in-net-2-0/398529#398529Comment by Peter LaComb Jr. on Convert bitmaps to one multipage TIFF image in .NET 2.0Peter LaComb Jr.2009-06-16T19:47:13Z2009-06-16T19:47:13ZExcellent answer. Could only be more complete if you describe how you arrived at it (where you learned it if not from trial and error) since the MSDN docs make it next to impossible to understand.http://stackoverflow.com/questions/683704/change-one-value-in-style-attribute-by-js/683743#683743Comment by Peter LaComb Jr. on change one value in style attribute by JS?Peter LaComb Jr.2009-03-25T22:21:38Z2009-03-25T22:21:38Z+1 for recognizing that the OP may want to keep using his framework.http://stackoverflow.com/questions/241134/what-is-the-worst-c-net-gotcha/241194#241194Comment by Peter LaComb Jr. on What is the worst C#/.NET gotcha?Peter LaComb Jr.2009-03-12T22:37:42Z2009-03-12T22:37:42ZI've actually seen this kind of thing crash the VS ide when the property is exposed during design time.http://stackoverflow.com/questions/611645/problem-with-recursion-and-stack-overflowComment by Peter LaComb Jr. on Problem with recursion and stack overflowPeter LaComb Jr.2009-03-04T17:40:31Z2009-03-04T17:40:31Z+1 for the combination of an SO joke on SO and childish, stupid namings.