User Mark Cidade - Stack Overflow most recent 30 from stackoverflow.com 2009-11-29T11:00:44Z http://stackoverflow.com/feeds/user/1659 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/14464/bit-fields-in-c/14475#14475 5 Answer by Mark Cidade for Bit fields in C# Mark Cidade 2008-08-18T11:32:53Z 2009-11-23T14:55:57Z <p>You want <a href="http://msdn.microsoft.com/en-us/library/system.runtime.interopservices.structlayoutattribute%28VS.71%29.aspx" rel="nofollow">StructLayoutAttribute</a></p> <pre><code>[StructLayout(LayoutKind.Explicit, Size=1, CharSet=CharSet.Ansi)] public struct Foo { [FieldOffset(0)]public byte original_or_copy; [FieldOffset(0)]public byte copyright; [FieldOffset(0)]public byte data_alignment_indicator; [FieldOffset(0)]public byte PES_priority; [FieldOffset(0)]public byte PES_scrambling_control; [FieldOffset(0)]public byte reserved; } </code></pre> <p>This is really a union but you can use it as a bitfield--you just have to be conscious of where in the byte the bits for each field are supposed to be. Utility functions and/or constants to AND against can help.</p> <pre><code>const byte _original_or_copy = 1; const byte _copyright = 2; //bool ooo = foo.original_or_copy(); static bool original_or_copy(this Foo foo) { return (foo.original_or_copy &amp; _original_or_copy) == original_or_copy; } </code></pre> <p>There is also LayoutKind.Sequential which will allow you to do it the C way.</p> http://stackoverflow.com/questions/15502/essential-concepts-to-remember-to-be-a-better-programmer/15523#15523 4 Answer by Mark Cidade for Essential concepts to remember to be a better programmer Mark Cidade 2008-08-19T01:58:15Z 2009-11-04T11:53:22Z <p><a href="http://en.wikipedia.org/wiki/You_Ain%27t_Gonna_Need_It" rel="nofollow">YAGNI</a> and <a href="http://en.wikipedia.org/wiki/Don%27t_repeat_yourself" rel="nofollow">DRY</a></p> http://stackoverflow.com/questions/1640036/where-do-i-download-the-php-soap-extension-for-windows 0 Where do I download the PHP SOAP Extension for Windows? Mark Cidade 2009-10-28T20:50:21Z 2009-10-28T20:57:48Z <p>What is a good on-line source for downloading php_soap.dll?</p> http://stackoverflow.com/questions/1620771/need-of-interfaces-in-c/1620876#1620876 0 Answer by Mark Cidade for Need of interfaces in c# Mark Cidade 2009-10-25T13:08:11Z 2009-10-25T13:08:11Z <p>Interfaces allow implementers to use their own base class. With abstract classes, implementers are forced to use the given base class to implement the interface even if it actually makes more sense for the implementer to use a project-specific base class.</p> http://stackoverflow.com/questions/1486935/which-programming-language-is-the-best-for-my-needs/1486980#1486980 3 Answer by Mark Cidade for Which programming language is the best for my needs? Mark Cidade 2009-09-28T13:17:20Z 2009-09-28T13:17:20Z <p>Any language will do the trick (although Prolog could be <em>too</em> tricky). Use what you know best unless you want a tradeoff for self-education in which case use the language you want to learn next.</p> http://stackoverflow.com/questions/1486708/global-statements-v-variables-available-throughout-a-classes/1486922#1486922 -1 Answer by Mark Cidade for Global statements v. variables available throughout a classes Mark Cidade 2009-09-28T13:07:07Z 2009-09-28T13:07:07Z <p>Ideally, no instance-wide variables would be used and everything would be passed as a parameter and well-documented in comments. That being said, it can get very tedious to comment every little thing and method parameter lists can start to look ridiculous (unless you have a hierarchy of partially-applied methods). Pragmatically, a balance should be sought between using non-local variables and making everything excruciatingly explicit.</p> <p>There is at least one case where you have to have instance- or class-level variables and that's when an implementation-specific value has to be retained between method calls.</p> http://stackoverflow.com/questions/217655/using-entity-framework-entities-as-business-objects/217657#217657 6 Answer by Mark Cidade for Using Entity Framework entities as business objects? Mark Cidade 2008-10-20T06:38:24Z 2009-09-23T10:06:55Z <p>The Entity framework was designed for the entity objects to be used as business objects, but you should keep in mind that the business objects will be tied to O/R technology as well as the EDM model. There isn't any support yet for <em><a href="http://blogs.msdn.com/dsimmons/pages/ef-faq-entity-classes.aspx#%5FDoes%5FEntity%5FFramework" rel="nofollow" title="Does Entity Framework have support for &quot;Persistence Ignorance&quot;? What is Persistence Ignorance?">persistence-ignorance</a></em> scenarios. You can implement <a href="http://msdn.microsoft.com/en-us/library/bb738631.aspx" rel="nofollow" title="MSDN: Implementing Custom Data Class Interfaces">interfaces</a>, if you don't want to use any of their base classes.</p> <p>As of .NET 3.5 SP1, they should also be usable as paramater and return types in WCF service methods without any additional code. </p> http://stackoverflow.com/questions/348881/how-can-i-see-a-visualization-of-a-dynamic-call-graph-for-a-net-program 2 How can I see a visualization of a dynamic call graph for a .NET program? Mark Cidade 2008-12-08T07:56:32Z 2009-09-13T12:55:39Z <p><strong>Is there a tool out there for visualizing dynamic call graphs?</strong> I saw a reference to one for Visual Basic 6 but I'd like one for .NET.</p> <p><strong>If I had to build a visualizer myself should I bother with the <em>.NET profiling API</em> or should I do something with <em>Mono.Cecil</em>?</strong> I started writing a CLI runtime with Cecil, but I guess it'd be easier if I just injected call-graph recording calls in the assemblies, although since I don't know the execution route ahead of time and would have to instrument everything.</p> http://stackoverflow.com/questions/14872/ado-net-errror-create-database-permission-denied-in-database-master-an-atte 1 [ADO.NET ERRROR]: CREATE DATABASE permission denied in database 'master'. An attempt to attach an auto-named database for file HelloWorld.mdf failed... Mark Cidade 2008-08-18T16:33:46Z 2009-09-11T16:38:53Z <p>Anyone seen this before? </p> <blockquote> <p>CREATE DATABASE permission denied in database 'master'. An attempt to attach an auto-named database for file C:\Documents and Settings\..\App_Data\HelloWorld.mdf failed. A database with the same name exists, or specified file cannot be opened, or it is located on UNC share.</p> </blockquote> <p>I'm asking on a friend's behalf. I've sent him these links:</p> <ul> <li><a href="http://blog.benhall.me.uk/2008/03/sql-server-and-vista-create-database.html" rel="nofollow">http://blog.benhall.me.uk/2008/03/sql-server-and-vista-create-database.html</a></li> <li><a href="http://forums.microsoft.com/MSDN/ShowPost.aspx?PostID=702726&amp;SiteID=1" rel="nofollow">http://forums.microsoft.com/MSDN/ShowPost.aspx?PostID=702726&amp;SiteID=1</a></li> </ul> http://stackoverflow.com/questions/13857/can-you-explain-closures-as-they-relate-to-python/13902#13902 3 Answer by Mark Cidade for Can you explain closures (as they relate to Python)? Mark Cidade 2008-08-17T20:20:20Z 2009-09-04T17:15:57Z <p>I've never heard of transactions being used in the same context as explaining what a closure is and there really aren't any transaction semantics here.</p> <p>It's called a closure because it "closes over" the outside variable (constant)--i.e., it's not just a function but an enclosure of the environment where the function was created. </p> <p>In the following example, calling the closure g after changing x will also change the value of x within g, since g closes over x:</p> <pre><code>x = 0 def f(): def g(): x * 2 return g closure = f() print(closure()) # 0 x = 2 print(closure()) # 4 </code></pre> http://stackoverflow.com/questions/1169709/how-do-i-get-the-characters-for-context-shaped-input-in-a-complex-script/1170105#1170105 2 Answer by Mark Cidade for How do I get the characters for context-shaped input in a complex script? Mark Cidade 2009-07-23T07:08:02Z 2009-07-23T09:03:39Z <p>Windows uses <a href="http://msdn.microsoft.com/en-us/library/dd374091.aspx" rel="nofollow">Uniscribe</a> to perform <em>contextual shaping</em> for complex scripts (which can apply to <em>l-to-r</em> as well as <em>r-to-l</em> languages). The displayed text in a text box is based on the glyph info after the characters have been fed into Uniscribe. Although the Unicode standard defines code points for each of isolated, initial, medial, and final forms of a chracter, not all fonts necessarily support them yet they may have pre-shaped glyphs or use a combination of glyphs—Uniscribe uses a shaping engine from the Windows language pack to determine which glyph(s) to use, based on the font's cmap. Here are some relevant links:</p> <ul> <li><a href="http://www.catch22.net/tuts/neatpad/13" rel="nofollow">More Uniscribe Mysteries</a> (explains difference between glyphs and characters)</li> <li>Microsoft Bhasha, Glyph Processing: <a href="http://www.bhashaindia.com/Developers/KnowHow/Glyph/uniscribe.htm" rel="nofollow">Uniscribe</a></li> <li>MSDN: <em><a href="http://msdn.microsoft.com/en-us/goglobal/bb688137.aspx" rel="nofollow">Complex Scripts Awareness</a></em></li> <li>Buried in the bowels of Mozilla code is <a href="http://lxr.mozilla.org/seamonkey/source/gfx/thebes/src/gfxWindowsFonts.cpp#1566" rel="nofollow">code that handles complex script rendering</a> using Uniscribe. There's also additional <a href="http://lxr.mozilla.org/seamonkey/source/gfx/thebes/src/gfxWindowsPlatform.cpp" rel="nofollow">code that scans the list of fonts in the system and reads the cmap tables</a> of each font. (From the comments at <a href="http://blogs.msdn.com/michkap/archive/2005/12/06/500485.aspx" rel="nofollow">http://blogs.msdn.com/michkap/archive/2005/12/06/500485.aspx</a>).</li> <li>Sorting it all Out: <em><a href="http://blogs.msdn.com/michkap/archive/2006/05/31/611340.aspx" rel="nofollow">Did he say shaping? It's not in the script!</a></em></li> </ul> <p>The <strong><a href="http://msdn.microsoft.com/en-us/magazine/cc751527.aspx" rel="nofollow">TextRenderer</a>.DrawText()</strong> method uses Uniscribe via the Win32 <em>DrawTextExW()</em> function, using the following P/Invoke:</p> <pre><code>[DllImport("user32.dll", CharSet=CharSet.Unicode, SetLastError=true)] public static extern int DrawTextExW( HandleRef hDC ,string lpszString ,int nCount ,ref RECT lpRect ,int nFormat ,[In, Out] DRAWTEXTPARAMS lpDTParams); [StructLayout(LayoutKind.Sequential)] public struct RECT { public int left; public int top; public int right; public int bottom; } [StructLayout(LayoutKind.Sequential)] public class DRAWTEXTPARAMS { public int iTabLength; public int iLeftMargin; public int iRightMargin; public int uiLengthDrawn; } </code></pre> http://stackoverflow.com/questions/1169786/when-should-i-use-out-parameters/1169840#1169840 0 Answer by Mark Cidade for When should I use out parameters? Mark Cidade 2009-07-23T05:54:01Z 2009-07-23T07:48:49Z <p>I use <em>out</em> parameters sometimes for readability, when reading the method name is more important than whatever the output of the method is—particularly for methods that execute commands in addition to returning results.</p> <pre><code>StatusInfo a, b, c; Initialize(out a); Validate(a, out b); Process(b, out c); </code></pre> <p>vs.</p> <pre><code>StatusInfo a = Initialize(); StatusInfo b = Validate(a); StatusInfo c = Process(b); </code></pre> <p>At least for me, I put a lot of emphasis on the first few characters of each line when I'm scanning. I can easily tell what's going on in the first example after acknowledging that some "StatusInfo" variables are declared. In the second example, the first thing I see is that a bunch of StatusInfo is retrieved. I have to scan a second time to see what kind of effects the methods may have.</p> http://stackoverflow.com/questions/1169902/how-to-use-rest-to-separate-model-view-and-control-into-two-parts/1169939#1169939 1 Answer by Mark Cidade for How to use REST to separate model, view and control into two parts Mark Cidade 2009-07-23T06:23:06Z 2009-07-23T06:23:06Z <p>Normally, MVC web development is independent of the REST architectural style—MVC is usually used to implement the back-end serving of a resource's representation. It is possible, though, to model each of M, V, and C as resources:</p> <p>Any <strong>model</strong> resource can accept a <em>GET</em> operation to query its state, a <em>PUT</em> operation for setting its state, <em>POST</em> for appending to it, and <em>DELETE</em> for removal. You still have the problem of representing the state without a <strong>view</strong> resource.</p> <p>A <strong>view</strong> resource can return a representation of a given state (in some bare-bones representation or something, like with XML) via a <em>POST</em> operation, I guess, unless the view's data is small enough to use a <em>GET</em> operation.</p> <p>A <strong>controller</strong> resource can accept a <em>GET</em> operation for queries and <em>POST</em> for form processing.</p> <p>I don't think that this makes much sense to do, unless you're building some kind of loosley-coupled, heavily cached, distributed MVC engine.</p> http://stackoverflow.com/questions/1168325/programming-languages-complexity/1168579#1168579 1 Answer by Mark Cidade for Programming languages complexity Mark Cidade 2009-07-22T22:08:33Z 2009-07-22T22:08:33Z <p>Have a look at <a href="http://en.wikipedia.org/wiki/Denotational%5Fsemantics" rel="nofollow">Denotational semantics and <a href="http://en.wikipedia.org/wiki/Operational%5Fsemantics" rel="nofollow">operational semantics</a>:</p> <blockquote> <p><strong>Denotational semantics</strong> is an approach to formalizing the meanings of programming languages by constructing mathematical objects (called denotations) which describe the meanings of expressions from the languages. </p> </blockquote> <p></a></p> <blockquote> <p>The <strong>operational semantics</strong> for a programming language describes how a valid program is interpreted as sequences of computational steps. These sequences then are the meaning of the program. In the context of functional programs, the final step in a terminating sequence returns the value of the program. (In general there can be many return values for a single program, because the program could be nondeterministic, and even for a deterministic program there can be many computation sequences since the semantics may not specify exactly what sequence of operations arrives at that value.)</p> </blockquote> http://stackoverflow.com/questions/1168245/how-can-i-use-reflection-in-c-to-find-all-the-members-of-a-class-that-meet-the-r/1168518#1168518 1 Answer by Mark Cidade for How can I use reflection in C# to find all the members of a class that meet the requirements of a specific delegate? Mark Cidade 2009-07-22T21:53:53Z 2009-07-22T21:53:53Z <p>Here's a start: </p> <pre><code> MethodInfo[] FindMethods(Type delegateType, Type sourceType) { var dInfo = delegateType.GetMethod("Invoke"); var dParamTypes = delegateInfo.GetParameters().Select(p=&gt;p.ParameterType); var methods = from methodInfo in sourceType.GetMethods() let mParamTypes = methodInfo.GetParameters() .Select(p=&gt;p.ParameterType) where methodInfo.ReturnType == delegateInfo.ReturnType &amp;&amp; mParamTypes.SequenceEqual(dParamTypes) select methodInfo; return methods.ToArray(); } </code></pre> <p>It can be expanded to take into account generics, ref/out parameters, and anything else. Test-driven development would be particularly helpful here.</p> http://stackoverflow.com/questions/1168161/writing-api-in-c-for-my-application/1168319#1168319 1 Answer by Mark Cidade for Writing API in C# for My Application Mark Cidade 2009-07-22T21:19:00Z 2009-07-22T21:19:00Z <p>One way to do it is to create a DLL for your main functionality that others will use and an EXE that calls the methods in the DLL. If you want your application to support plug-ins, have a look at the <a href="http://msdn.microsoft.com/en-us/magazine/cc163476.aspx" rel="nofollow" title="CLR Inside Out article">System.AddIn</a> namespace.</p> http://stackoverflow.com/questions/1122647/how-do-i-make-my-own-linq-clauses/1122743#1122743 0 Answer by Mark Cidade for How do I make my own Linq Clauses? Mark Cidade 2009-07-13T23:51:34Z 2009-07-13T23:51:34Z <p>This isn't possible within C#, but if you really want to add the syntax yourself, you can write a C# pre-compiler that includes the extra query comprehension keywords. To implement it the same way that C# does (as in <a href="http://msdn.microsoft.com/en-us/library/ms364047.aspx#cs3spec%5Ftopic8" rel="nofollow" title="C# 3.0 Query comprehensions and translation rules">the specification</a>), you'd search for a, e.g., valid <em><code>MyClause()</code></em> extension method, for the return type of the source object or the previous return type in the call chain, e.g., <em><code>IEnumerable&lt;T&gt;</code></em>. </p> <p>Your example: </p> <pre><code>var blah = from bleep in bloops where bleep == razzie myclause bleep.property select bleep; </code></pre> <p>would become: </p> <pre><code>var blah = bloops.Where(bleep =&gt; bleep==razzie) .MyClause(bleep =&gt; bleep.property) .Select(bleep =&gt; bleep); </code></pre> http://stackoverflow.com/questions/14209/ado-net-system-data-sqlclient-sqlexception-failed-to-generate-a-user-instance 0 [ADO.NET] System.Data.SqlClient.SqlException: Failed to generate a user instance of SQL Server due to a failure in starting the process for the user instance. The connection will be closed. Mark Cidade 2008-08-18T05:24:47Z 2009-07-06T10:55:19Z <p>Anybody ever get this error and/or have any idea on it's cause and/or solution?</p> <p>I'm asking this on behalf of a friend but there is info at <a href="http://forums.microsoft.com/MSDN/ShowPost.aspx?PostID=125227&amp;SiteID=1" rel="nofollow">http://forums.microsoft.com/MSDN/ShowPost.aspx?PostID=125227&amp;SiteID=1</a></p> <p><strong>Update</strong></p> <p>The connection string is "=.\SQLEXPRESS;AttachDbFilename=C:\temp\HelloWorldTest.mdf;Integrated Security=True"</p> <p>I suggested the "User Instance=false". That works for him.</p> http://stackoverflow.com/questions/137425/how-do-i-automate-a-web-proxy-in-net-for-unit-tests-including-set-up-and-tear-d 1 How do I automate a web proxy in .NET for unit tests (including set up and tear down)? Mark Cidade 2008-09-26T02:34:27Z 2009-07-06T04:07:07Z <p>Following Jonathan Holland's suggestion in his comment for my previous question: <a href="http://stackoverflow.com/questions/137360/is-there-any-way-in-net-to-programmatically-listen-to-http-traffic">Is there any way in .NET to programmatically listen to HTTP traffic?</a> I've made a separate (but not exactly a duplicate) question for what I <em>really</em> want to know:</p> <p><strong>How do I automate a web proxy in .NET for unit tests</strong> (including set up and tear down) for spying on HTTP traffic that comes from the browser (particularly images, scripts, and XmlHttpRequests on the requested page)?</p> <p>I prefer to have zero set-up (so no Fiddler installed on Windows) where everything can be unpacked from an assembly, deployed, and then removed without a trace, so to speak.</p> http://stackoverflow.com/questions/1028807/first-call-to-web-service-each-day-is-slow/1028820#1028820 7 Answer by Mark Cidade for First call to web service each day is slow Mark Cidade 2009-06-22T18:51:20Z 2009-06-23T20:36:22Z <p>If it's an ASP.NET web service, it may be the CLR initializing and loading and verifying the assemblies for the first time. You may want to consider <a href="http://msdn.microsoft.com/en-us/library/bb398860.aspx" rel="nofollow">pre-compilation</a></p> http://stackoverflow.com/questions/1028781/how-should-a-programmer-learn-great-database-design/1028810#1028810 4 Answer by Mark Cidade for How should a programmer learn great database design? Mark Cidade 2009-06-22T18:48:53Z 2009-06-22T18:48:53Z <p>If you're interested in a very theoretical approach to database design, you may want to check out <em><a href="http://www.thethirdmanifesto.com/" rel="nofollow">The Third Manifesto</a></em> or <em><a href="http://www.google.com/search?q=The%2BDatabase%2BRelational%2BModel%3A%2BA%2BRetrospective%2BReview%2BAnd%2BAnalysis" rel="nofollow">The Database Relational Model: A Retrospective Review And Analysis</a></em>—both by Chris Date.</p> http://stackoverflow.com/questions/1028739/should-i-create-a-ado-net-entity-data-model-for-each-table-or-one-for-my-entire/1028778#1028778 1 Answer by Mark Cidade for Should I create a ADO.NET Entity Data Model for each table, or one for my entire database? Mark Cidade 2009-06-22T18:42:07Z 2009-06-22T18:42:07Z <p>I would design a conceptual/object model of the data independently of the database schema and then create the mapping that best relates the conceptual model to the database schema. It may use most if not all of the tables. If you want a one-to-one mapping to tables, you may want to consider LINQ-to-SQL instead, since it's easier to work with.</p> http://stackoverflow.com/questions/17512/computer-language-puns-and-jokes/17520#17520 5 Answer by Mark Cidade for Computer Language puns and jokes Mark Cidade 2008-08-20T07:35:02Z 2009-06-14T08:11:54Z <p>One error code for Java in hex is 0xBADCAFE</p> <p>And additional list: <a href="http://en.wikipedia.org/wiki/Hexspeak" rel="nofollow">http://en.wikipedia.org/wiki/Hexspeak</a></p> http://stackoverflow.com/questions/968254/enum-overuse/968275#968275 3 Answer by Mark Cidade for Enum Overuse? Mark Cidade 2009-06-09T05:22:08Z 2009-06-09T05:22:08Z <p>I would personally use a static class of constants in this case:</p> <pre><code>public static class BatchFiles { public const string batch1 = "batch1.bat"; public const string batch2 = "batch2.bat"; } </code></pre> http://stackoverflow.com/questions/103727/how-to-think-in-data-stores-instead-of-databases/103889#103889 1 Answer by Mark Cidade for How to think in data stores instead of databases? Mark Cidade 2008-09-19T17:27:40Z 2009-06-03T08:27:51Z <p>If you're used to thinking about ORM-mapped entities then that's basically how an entity-based datastore like Google's App Engine works. For something like joins, you can look at <a href="http://code.google.com/appengine/docs/python/datastore/entitiesandmodels.html#References" rel="nofollow">reference properties</a>. You don't really need to be concerned about whether it uses BigTable for the backend or something else since the backend is abstracted by the GQL and Datastore API interfaces.</p> http://stackoverflow.com/questions/936828/what-is-the-cs-file-under-mydatacontext-dbml-for/936906#936906 2 Answer by Mark Cidade for What is the .cs file under MyDataContext.dbml for? Mark Cidade 2009-06-01T21:33:39Z 2009-06-01T21:33:39Z <p>It's normally used for you to add a partial <code>MyDataContext</code> class with custom code that won't be overwritten during code generation. If you edited MyDataContext.designer.cs instead, your hand-written code would be erased.</p> http://stackoverflow.com/questions/873448/brain-modelling/873498#873498 0 Answer by Mark Cidade for Brain modelling Mark Cidade 2009-05-16T23:10:07Z 2009-05-16T23:10:07Z <p>In 2007, they simulated the equivalent of a half mouse brain for 10 seconds at half the actual speed: <a href="http://news.bbc.co.uk/1/hi/technology/6600965.stm" rel="nofollow">http://news.bbc.co.uk/1/hi/technology/6600965.stm</a></p> http://stackoverflow.com/questions/845265/tools-to-build-a-dsl-in-net/845608#845608 2 Answer by Mark Cidade for Tools to build a DSL in .NET Mark Cidade 2009-05-10T16:26:57Z 2009-05-11T03:47:12Z <p>You may still want to look at Boo's source code to see how they do things. They also use ANTLR to generate the parser. You don't need to mix any code in with ANTLR grammars—it can be useful as completely descriptive, as long as it's a LL(*) langauge.</p> http://stackoverflow.com/questions/131871/algorithm-for-implementing-c-yield-statement 14 Algorithm for implementing C# yield statement Mark Cidade 2008-09-25T07:15:28Z 2009-05-10T08:36:36Z <p>I'd love to figure it out myself but I was wondering <strong>roughly what's the algorithm for converting a function with yield statements into a state machine for an enumerator?</strong> For example how does C# turn this:</p> <pre><code>IEnumerator&lt;string&gt; strings(IEnumerable&lt;string&gt; args) { IEnumerator&lt;string&gt; enumerator2 = getAnotherEnumerator(); foreach(var arg in arg) { enumerator2.MoveNext(); yield return arg+enumerator.Current; } } </code></pre> <p>into this:</p> <pre><code>bool MoveNext() { switch (this.state) { case 0: this.state = -1; this.enumerator2 = getAnotherEnumerator(); this.argsEnumerator = this.args.GetEnumerator(); this.state = 1; while (this.argsEnumerator.MoveNext()) { this.arg = this.argsEnumerator.Current; this.enumerator2.MoveNext(); this.current = this.arg + this.enumerator2.Current; this.state = 2; return true; state1: this.state = 1; } this.state = -1; if (this.argsEnumerator != null) this.argsEnumerator.Dispose(); break; case 2: goto state1; } return false; } </code></pre> <p>Of course the result can be completely different depending on the original code.</p> http://stackoverflow.com/questions/830592/why-shouldnt-i-always-use-nullable-types-in-c/830727#830727 0 Answer by Mark Cidade for Why shouldn't I always use nullable types in C#. Mark Cidade 2009-05-06T17:14:03Z 2009-05-06T17:14:03Z <p>Although null values can be convenient for using as "not-initialized-yet" or "not-specified" values, they make the code more complex, mainly because you're overloading the meaning of <em><code>null</code></em> as well as the variable (number-or-null vs. just-a-number).</p> <p>NULL values are favoured by many database designers and SQL database programmers but with a small change in thinking about the problem you can do away with null values and actually have simpler and more reliable code (e.g., no worrying about <code>NullReferenceException</code>s). </p> <p>There's actually a large demand for a "T!" operator that makes any reference type non-nullable, similar to how "T?" makes value types nullable, and Anders Hejlsberg, the inventor of C#, wished he had included the ability.</p> <p>See also the question, <a href="http://stackoverflow.com/questions/178026/why-is-null-present-in-c-and-java"><em>Why is “null” present in C# and java?</em></a></p> http://stackoverflow.com/questions/1486935/which-programming-language-is-the-best-for-my-needs/1487010#1487010 Comment by Mark Cidade on Which programming language is the best for my needs? Mark Cidade 2009-10-02T21:07:55Z 2009-10-02T21:07:55Z Start with PHP and you're ruined for life. http://stackoverflow.com/questions/1486708/global-statements-v-variables-available-throughout-a-classes/1486922#1486922 Comment by Mark Cidade on Global statements v. variables available throughout a classes Mark Cidade 2009-10-02T21:06:46Z 2009-10-02T21:06:46Z You can still use objects to pass closures between private methods. Those have immutable state. Parallel goodness and all that. http://stackoverflow.com/questions/1486708/global-statements-v-variables-available-throughout-a-classes/1486922#1486922 Comment by Mark Cidade on Global statements v. variables available throughout a classes Mark Cidade 2009-10-02T21:05:36Z 2009-10-02T21:05:36Z Ideally, you don't use objects at all. OOP is a pragmatic paradigm not an idealistic one, like FP. http://stackoverflow.com/questions/61088/hidden-features-of-javascript/65028#65028 Comment by Mark Cidade on Hidden Features of JavaScript? Mark Cidade 2009-09-28T12:01:36Z 2009-09-28T12:01:36Z @Nathan &quot;f(x,y,z)&quot; looks better than &quot;f([x,y,z])&quot;. http://stackoverflow.com/questions/123540/modifying-existing-net-assemblies/123625#123625 Comment by Mark Cidade on Modifying Existing .NET Assemblies Mark Cidade 2009-09-20T17:26:31Z 2009-09-20T17:26:31Z This is only for creating new ones. You might be able to load an assembly from disk in a separate AppDomain, though, and then unload the AppDomain and save the new assembly over the old one. http://stackoverflow.com/questions/1186957/common-programming-mistakes-for-php-developers-to-avoid/1186966#1186966 Comment by Mark Cidade on Common programming mistakes for PHP developers to avoid? Mark Cidade 2009-07-27T08:29:05Z 2009-07-27T08:29:05Z I fixed the syntax http://stackoverflow.com/questions/1169709/how-do-i-get-the-characters-for-context-shaped-input-in-a-complex-script/1170105#1170105 Comment by Mark Cidade on How do I get the characters for context-shaped input in a complex script? Mark Cidade 2009-07-23T08:55:21Z 2009-07-23T08:55:21Z I added more information about Uniscribe and why it's not trivial to get the characters (code points) that are shown in the text box. It seems that your only options are use Uniscribe by looking up indexes in font cmaps, or roll your own shaping information engine. http://stackoverflow.com/questions/1169786/when-should-i-use-out-parameters/1169807#1169807 Comment by Mark Cidade on When should I use out parameters? Mark Cidade 2009-07-23T07:52:13Z 2009-07-23T07:52:13Z The out parameter just saves the caller from having to initialize the variable. The method itself can still just initialize it to null or whatever default value, and return it that way. http://stackoverflow.com/questions/1169786/when-should-i-use-out-parameters/1169840#1169840 Comment by Mark Cidade on When should I use out parameters? Mark Cidade 2009-07-23T07:44:56Z 2009-07-23T07:44:56Z I changed the names to something that closer resembles real-world code. I can dig up an actual example if this still looks bad. http://stackoverflow.com/questions/1169940/connection-leak-in-c-database-executescalar Comment by Mark Cidade on Connection Leak in C# DataBase.ExecuteScalar Mark Cidade 2009-07-23T06:29:03Z 2009-07-23T06:29:03Z What does the ExecuteScalar() method do with the underlying DbConnection object—does it call Dispose() or Close(), e.g., by using a &quot;using&quot; statement? http://stackoverflow.com/questions/1028807/first-call-to-web-service-each-day-is-slow/1028820#1028820 Comment by Mark Cidade on First call to web service each day is slow Mark Cidade 2009-06-23T20:36:42Z 2009-06-23T20:36:42Z I added a link to info about pre-compilation. http://stackoverflow.com/questions/1028739/should-i-create-a-ado-net-entity-data-model-for-each-table-or-one-for-my-entire/1028775#1028775 Comment by Mark Cidade on Should I create a ADO.NET Entity Data Model for each table, or one for my entire database? Mark Cidade 2009-06-22T18:43:39Z 2009-06-22T18:43:39Z Creating a class for each table is not a requirement of ADO.NET EF. In fact, a single entity can be mapped to more than one table. http://stackoverflow.com/questions/968254/enum-overuse/968280#968280 Comment by Mark Cidade on Enum Overuse? Mark Cidade 2009-06-09T06:23:15Z 2009-06-09T06:23:15Z I downvoted and did so because I found that this answer promotes premature complexity. One of the points of the enumeration is so that the user doesn't have to know the file name. Also, there's no need for a second implementation type for representing a batch file and therefore no need to create a separate interface type. http://stackoverflow.com/questions/103727/how-to-think-in-data-stores-instead-of-databases/103889#103889 Comment by Mark Cidade on How to think in data stores instead of databases? Mark Cidade 2009-06-03T08:28:53Z 2009-06-03T08:28:53Z link fixed. feel free to edit any answer if/when you have enough rep. http://stackoverflow.com/questions/845265/tools-to-build-a-dsl-in-net/845608#845608 Comment by Mark Cidade on Tools to build a DSL in .NET Mark Cidade 2009-05-11T03:48:26Z 2009-05-11T03:48:26Z You said that you weren't interested in using Boo as a language or mixing code with ANTLR grammars but I don't see how that precludes using straight ANTLR grammars and looking at Boo' source code.