User Mark Cidade - Stack Overflowmost recent 30 from stackoverflow.com2009-11-29T11:00:44Zhttp://stackoverflow.com/feeds/user/1659http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/14464/bit-fields-in-c/14475#144755Answer by Mark Cidade for Bit fields in C#Mark Cidade2008-08-18T11:32:53Z2009-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 & _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#155234Answer by Mark Cidade for Essential concepts to remember to be a better programmerMark Cidade2008-08-19T01:58:15Z2009-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-windows0Where do I download the PHP SOAP Extension for Windows?Mark Cidade2009-10-28T20:50:21Z2009-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#16208760Answer by Mark Cidade for Need of interfaces in c# Mark Cidade2009-10-25T13:08:11Z2009-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#14869803Answer by Mark Cidade for Which programming language is the best for my needs?Mark Cidade2009-09-28T13:17:20Z2009-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-1Answer by Mark Cidade for Global statements v. variables available throughout a classesMark Cidade2009-09-28T13:07:07Z2009-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#2176576Answer by Mark Cidade for Using Entity Framework entities as business objects?Mark Cidade2008-10-20T06:38:24Z2009-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 "Persistence Ignorance"? 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-program2How can I see a visualization of a dynamic call graph for a .NET program?Mark Cidade2008-12-08T07:56:32Z2009-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-atte1[ADO.NET ERRROR]: CREATE DATABASE permission denied in database 'master'. An attempt to attach an auto-named database for file HelloWorld.mdf failed...Mark Cidade2008-08-18T16:33:46Z2009-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&SiteID=1" rel="nofollow">http://forums.microsoft.com/MSDN/ShowPost.aspx?PostID=702726&SiteID=1</a></li>
</ul>
http://stackoverflow.com/questions/13857/can-you-explain-closures-as-they-relate-to-python/13902#139023Answer by Mark Cidade for Can you explain closures (as they relate to Python)?Mark Cidade2008-08-17T20:20:20Z2009-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#11701052Answer by Mark Cidade for How do I get the characters for context-shaped input in a complex script?Mark Cidade2009-07-23T07:08:02Z2009-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#11698400Answer by Mark Cidade for When should I use out parameters?Mark Cidade2009-07-23T05:54:01Z2009-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#11699391Answer by Mark Cidade for How to use REST to separate model, view and control into two partsMark Cidade2009-07-23T06:23:06Z2009-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#11685791Answer by Mark Cidade for Programming languages complexityMark Cidade2009-07-22T22:08:33Z2009-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#11685181Answer 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 Cidade2009-07-22T21:53:53Z2009-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=>p.ParameterType);
var methods = from methodInfo in sourceType.GetMethods()
let mParamTypes = methodInfo.GetParameters()
.Select(p=>p.ParameterType)
where methodInfo.ReturnType == delegateInfo.ReturnType
&& 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#11683191Answer by Mark Cidade for Writing API in C# for My ApplicationMark Cidade2009-07-22T21:19:00Z2009-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#11227430Answer by Mark Cidade for How do I make my own Linq Clauses?Mark Cidade2009-07-13T23:51:34Z2009-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<T></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 => bleep==razzie)
.MyClause(bleep => bleep.property)
.Select(bleep => bleep);
</code></pre>
http://stackoverflow.com/questions/14209/ado-net-system-data-sqlclient-sqlexception-failed-to-generate-a-user-instance0[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 Cidade2008-08-18T05:24:47Z2009-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&SiteID=1" rel="nofollow">http://forums.microsoft.com/MSDN/ShowPost.aspx?PostID=125227&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-d1How do I automate a web proxy in .NET for unit tests (including set up and tear down)? Mark Cidade2008-09-26T02:34:27Z2009-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#10288207Answer by Mark Cidade for First call to web service each day is slowMark Cidade2009-06-22T18:51:20Z2009-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#10288104Answer by Mark Cidade for How should a programmer learn great database design?Mark Cidade2009-06-22T18:48:53Z2009-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#10287781Answer by Mark Cidade for Should I create a ADO.NET Entity Data Model for each table, or one for my entire database?Mark Cidade2009-06-22T18:42:07Z2009-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#175205Answer by Mark Cidade for Computer Language puns and jokesMark Cidade2008-08-20T07:35:02Z2009-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#9682753Answer by Mark Cidade for Enum Overuse?Mark Cidade2009-06-09T05:22:08Z2009-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#1038891Answer by Mark Cidade for How to think in data stores instead of databases?Mark Cidade2008-09-19T17:27:40Z2009-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#9369062Answer by Mark Cidade for What is the .cs file under MyDataContext.dbml for?Mark Cidade2009-06-01T21:33:39Z2009-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#8734980Answer by Mark Cidade for Brain modellingMark Cidade2009-05-16T23:10:07Z2009-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#8456082Answer by Mark Cidade for Tools to build a DSL in .NETMark Cidade2009-05-10T16:26:57Z2009-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-statement14Algorithm for implementing C# yield statementMark Cidade2008-09-25T07:15:28Z2009-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<string> strings(IEnumerable<string> args)
{ IEnumerator<string> 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#8307270Answer by Mark Cidade for Why shouldn't I always use nullable types in C#.Mark Cidade2009-05-06T17:14:03Z2009-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#1487010Comment by Mark Cidade on Which programming language is the best for my needs?Mark Cidade2009-10-02T21:07:55Z2009-10-02T21:07:55ZStart with PHP and you're ruined for life.http://stackoverflow.com/questions/1486708/global-statements-v-variables-available-throughout-a-classes/1486922#1486922Comment by Mark Cidade on Global statements v. variables available throughout a classesMark Cidade2009-10-02T21:06:46Z2009-10-02T21:06:46ZYou 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#1486922Comment by Mark Cidade on Global statements v. variables available throughout a classesMark Cidade2009-10-02T21:05:36Z2009-10-02T21:05:36ZIdeally, 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#65028Comment by Mark Cidade on Hidden Features of JavaScript?Mark Cidade2009-09-28T12:01:36Z2009-09-28T12:01:36Z@Nathan "f(x,y,z)" looks better than "f([x,y,z])".http://stackoverflow.com/questions/123540/modifying-existing-net-assemblies/123625#123625Comment by Mark Cidade on Modifying Existing .NET AssembliesMark Cidade2009-09-20T17:26:31Z2009-09-20T17:26:31ZThis 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#1186966Comment by Mark Cidade on Common programming mistakes for PHP developers to avoid?Mark Cidade2009-07-27T08:29:05Z2009-07-27T08:29:05ZI fixed the syntaxhttp://stackoverflow.com/questions/1169709/how-do-i-get-the-characters-for-context-shaped-input-in-a-complex-script/1170105#1170105Comment by Mark Cidade on How do I get the characters for context-shaped input in a complex script?Mark Cidade2009-07-23T08:55:21Z2009-07-23T08:55:21ZI 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#1169807Comment by Mark Cidade on When should I use out parameters?Mark Cidade2009-07-23T07:52:13Z2009-07-23T07:52:13ZThe 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#1169840Comment by Mark Cidade on When should I use out parameters?Mark Cidade2009-07-23T07:44:56Z2009-07-23T07:44:56ZI 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-executescalarComment by Mark Cidade on Connection Leak in C# DataBase.ExecuteScalarMark Cidade2009-07-23T06:29:03Z2009-07-23T06:29:03ZWhat does the ExecuteScalar() method do with the underlying DbConnection object—does it call Dispose() or Close(), e.g., by using a "using" statement?http://stackoverflow.com/questions/1028807/first-call-to-web-service-each-day-is-slow/1028820#1028820Comment by Mark Cidade on First call to web service each day is slowMark Cidade2009-06-23T20:36:42Z2009-06-23T20:36:42ZI 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#1028775Comment by Mark Cidade on Should I create a ADO.NET Entity Data Model for each table, or one for my entire database?Mark Cidade2009-06-22T18:43:39Z2009-06-22T18:43:39ZCreating 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#968280Comment by Mark Cidade on Enum Overuse?Mark Cidade2009-06-09T06:23:15Z2009-06-09T06:23:15ZI 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#103889Comment by Mark Cidade on How to think in data stores instead of databases?Mark Cidade2009-06-03T08:28:53Z2009-06-03T08:28:53Zlink 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#845608Comment by Mark Cidade on Tools to build a DSL in .NETMark Cidade2009-05-11T03:48:26Z2009-05-11T03:48:26ZYou 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.