User Mehrdad Afshari - Stack Overflowmost recent 30 from stackoverflow.com2009-12-09T23:13:04Zhttp://stackoverflow.com/feeds/user/33708http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1870035/struct-vs-class-as-stl-functor-when-using-not2/1870052#18700528Answer by Mehrdad Afshari for struct vs class as STL functor when using not2Mehrdad Afshari2009-12-08T21:43:07Z2009-12-08T21:51:26Z<p>The difference you read from other answers is correct. <code>struct</code> is just a <code>class</code> with <code>public</code> accessibility by default. This includes the <em>inheritance modifier</em>. Basically, you should mention <code>public</code> before the base class name when you're using a <code>class</code> to make those definitions equivalent:</p>
<pre><code>template <class T>
class mystruct : public binary_function<T ,T ,bool> {
public:
bool operator() (T i,T j) const { return i<j; }
};
</code></pre>
<p>Otherwise, the compiler will assume that <code>mystruct</code> is privately inheriting <code>binary_function<T,T,bool></code>.</p>
<p>You can verify this fact by changing the <code>struct</code> to:</p>
<pre><code>struct mystruct : private binary_function<T ,T ,bool> {
public: // not required here
bool operator() (T i,T j) const { return i<j; }
};
</code></pre>
<p>which is equivalent to your current definition of the <code>class</code> and see the compiler whine with a similar error message.</p>
http://stackoverflow.com/questions/1869245/multiplying-two-number-arrays/1869262#18692624Answer by Mehrdad Afshari for Multiplying two number arraysMehrdad Afshari2009-12-08T19:27:25Z2009-12-08T19:27:25Z<p>It's not clear what exactly you want to multiply. If you need to multiply two null terminated strings in a <code>char[]</code>, you can convert them to <code>int</code> values with <code>atoi</code>:</p>
<pre><code>int result = atoi(str1) * atoi(str2);
</code></pre>
http://stackoverflow.com/questions/1867857/have-you-ever-restricted-yourself-to-using-a-subset-of-language-features/1867909#18679094Answer by Mehrdad Afshari for Have you ever restricted yourself to using a subset of language features?Mehrdad Afshari2009-12-08T16:00:20Z2009-12-08T16:00:20Z<p>One case is when you're writing a compiler of a new language in itself. You can:</p>
<ul>
<li>Use another language to write a simple compiler for a subset of the new language.</li>
<li>Use that subset of the new language to write the compiler for the complete version of itself.</li>
</ul>
http://stackoverflow.com/questions/1867164/cast-linq-ienumerable-to-class-that-inherits-ienumerable/1867189#18671890Answer by Mehrdad Afshari for Cast Linq IEnumerable to Class that inherits IenumerableMehrdad Afshari2009-12-08T14:07:25Z2009-12-08T14:07:25Z<p>While it's unclear to me why you might want to create a class to duplicate the functionality of <code>List(Of T)</code>, what you are trying to do is not directly possible. You should either create an implicit (<code>Widening</code>) user defined cast operator in your class or create a constructor that takes an <code>IEnumerable(Of ConcreteResult)</code> and uses that to fill the private list field.</p>
<pre><code>Public Class AResultSet
Implements IEnumerable(Of ConcreteResult)
Private list As List(Of ConcreteResult)
Private Sub New(l As List(Of ConcreteResult))
list = l
End Sub
Public Shared Widening Operator CType(seq As IEnumerable(Of ConcreteResult)) As AResultSet
Return New AResultset(seq.ToList())
End Sub
...
End Class
</code></pre>
http://stackoverflow.com/questions/1862261/can-you-keep-a-streamreader-from-disposing-the-underlying-stream/1862285#18622855Answer by Mehrdad Afshari for Can you keep a StreamReader from disposing the underlying stream?Mehrdad Afshari2009-12-07T19:24:25Z2009-12-07T19:24:25Z<blockquote>
<p>I don't want to just let it go out of scope, either. Then the garbage collector will eventually call the Dispose, killing the stream.</p>
</blockquote>
<p>Garbage collector will call the <code>Finalize</code> method (destructor), not the <code>Dispose</code> method. The finalizer will call <code>Dispose(false)</code> which will <strong>not</strong> dispose the underlying stream. You should be OK by leaving the <code>StreamReader</code> go out of scope if you need to use the underlying stream directly. Just make sure you dispose the underlying stream manually when it's appropriate.</p>
http://stackoverflow.com/questions/1855536/basic-constructor-question-regarding-objects-in-c/1855540#18555405Answer by Mehrdad Afshari for basic constructor question regarding objects in c#Mehrdad Afshari2009-12-06T14:32:54Z2009-12-06T14:32:54Z<p>When the code is compiled, the instantiation will be moved to the constructor. It will be instantiated before the body of your constructor is executed.</p>
http://stackoverflow.com/questions/1855238/c-how-to-compare-objects-type-with-a-generics-type-irrelevant-to-generic-argu/1855248#185524810Answer by Mehrdad Afshari for C#: how to compare object's type with a generics type, irrelevant to generic argument?Mehrdad Afshari2009-12-06T12:18:32Z2009-12-06T12:24:34Z<p>Try:</p>
<pre><code>typeof(Container<>) == something.GetType().GetGenericTypeDefinition()
</code></pre>
<p>Note that this will only return true if the actual type is <code>Container<T></code>. It doesn't work for derived types. For instance, it'll return <code>false</code> for the following:</p>
<pre><code>class StringContainer : Container<string>
</code></pre>
<p>If you need to make it work for this case, you should traverse the inheritance hierarchy and test each base class for being <code>Container<T></code>:</p>
<pre><code>static bool IsGenericTypeOf(Type genericType, Type someType)
{
if (someType.IsGenericType
&& genericType == someType.GetGenericTypeDefinition()) return true;
return someType.BaseType != null
&& IsGenericTypeOf(genericType, someType.BaseType);
}
</code></pre>
http://stackoverflow.com/questions/1855158/casting-enum-to-uint/1855177#18551773Answer by Mehrdad Afshari for Casting Enum to uintMehrdad Afshari2009-12-06T11:52:52Z2009-12-06T11:52:52Z<blockquote>
<p>From what I've seen when casting to int, you have to cast it to an object first: <code>(int) (object) myEnum</code>. If you write <code>(int) myEnum</code> you get a compile time exception.</p>
</blockquote>
<p>Not true. You can directly cast an enum value to an integer type.</p>
<blockquote>
<p>Now, when I tried to cast it to uint, I was expecting that (uint) (object) myEnum would be alright. It compiles nicely, but when run, it generates an InvalidCastException. So to get it to work, I've used:
<code>(uint) (int) (object) myEnum</code><br>
I think it looks funny, so I'm quite happy, but why is it so?</p>
</blockquote>
<p>When you cast an enum value to <code>object</code>, it'll be boxed as its <em>underlying type</em>, which is <code>int</code> by default. You cannot unbox a boxed value to any type other than its actual type directly. Even this will fail:</p>
<pre><code>short s = 10;
object o = s;
int i = (int)o; // throws `InvalidCastException` while `int i = (int)s;` works.
</code></pre>
http://stackoverflow.com/questions/1853679/upgrading-from-net-3-5-to-4-questions-to-think-about/1853707#18537071Answer by Mehrdad Afshari for Upgrading from .NET 3.5 to 4. Questions to think about?Mehrdad Afshari2009-12-05T22:40:09Z2009-12-05T22:40:09Z<p>.NET Framework 4 Beta 2 can be installed on Windows Server 2003. The <a href="http://www.microsoft.com/downloads/details.aspx?familyid=DED875C8-FE5E-4CC9-B973-2171B61FE982&displaylang=en" rel="nofollow">software requirements</a> are:</p>
<blockquote>
<p><strong>Supported Operating Systems:</strong> Windows
Server 2003; Windows Server 2008;
Windows Vista; Windows XP </p>
<p>.NET Framework 4 can be installed on the
following operating systems:<br>
- Windows XP SP3<br>
- Windows Server 2003 SP2<br>
- Windows Vista SP1<br>
- Windows 7<br>
- Windows Server 2008 (not supported on Server Core Role)<br>
- Windows Server 2008 R2 (not supported on Server Core Role)
Note that .NET Framework 4 is currently in Beta. If you have a working app on production, you might want to consider waiting for its RTM.</p>
</blockquote>
http://stackoverflow.com/questions/1845756/how-to-tamper-with-source-ip-address-on-windows/1845779#18457792Answer by Mehrdad Afshari for How to tamper with source IP address on WindowsMehrdad Afshari2009-12-04T09:08:32Z2009-12-04T09:08:32Z<p>As noted in answers to the <a href="http://serverfault.com/questions/90725/are-ip-addresses-trivial-to-forge">ServerFault question "Are IP addresses trivial to forge"</a>, you cannot easily forge source addresses in a protocol that required two way communication (e.g. TCP). Note that this "two way communication" is required at the packet level. You cannot just say "no problem, I want to send requests and ignore HTTP responses." To establish a TCP session, you need to receive data. Your best bet is to use a proxy server.</p>
http://stackoverflow.com/questions/1843572/switching-on-class-type-in-c/1843631#18436315Answer by Mehrdad Afshari for Switching on class type in C#Mehrdad Afshari2009-12-03T22:55:27Z2009-12-03T22:55:27Z<p>You can map enum values to <code>Func<ISerializer, string, HtmlWidget></code> delegates:</p>
<pre><code>static Dictionary<WidgetType, Func<ISerializer, string, HtmlWidget>> map =
new Dictionary<WidgetType, Func<ISerializer, string, HtmlWidget>> {
{ WidgetType.AbstractBase, (s, o) => s.Deserialize<HtmlWidget>(o) },
{ WidgetType.Widget1, (s, o) => s.Deserialize<Widget1>(o) },
// ...
};
// use it like:
return map[type](serializer, serialized);
</code></pre>
http://stackoverflow.com/questions/1843567/stdlist-threading-pushback-front-popfront/1843586#18435866Answer by Mehrdad Afshari for std::list threading push_back, front, pop_frontMehrdad Afshari2009-12-03T22:49:19Z2009-12-03T22:49:19Z<p>No, it's not guaranteed to be thread safe.</p>
<p>Your synchronization mechanism is flawed. You are allowing <code>thread1</code> to change the list while <code>thread2</code> is working with it. This can cause problems. Besides that, you should make your lock variable <code>volatile</code>.</p>
http://stackoverflow.com/questions/1843447/asp-net-user-control-and-accessing-a-property-from-javascript/1843469#18434692Answer by Mehrdad Afshari for ASP.NET user control and accessing a property from Javascript ?Mehrdad Afshari2009-12-03T22:32:06Z2009-12-03T22:32:06Z<p>The property you're talking about is a server side thing and has no presence in Javascript. Basically, whatever ASP.NET does on the server will generate a single HTML page containing a bunch of HTML tags. The browser is not aware of the user control being a single entity at all.</p>
<p>You should calculate the property on the client by looking up the ID of the drop down directly in Javascript. You can do find out the client ID of the drop down by getting its <code>ClientID</code> property.</p>
http://stackoverflow.com/questions/1843270/events-and-memory-leaks-in-net/1843311#18433112Answer by Mehrdad Afshari for Events and Memory Leaks in .NETMehrdad Afshari2009-12-03T22:09:35Z2009-12-03T22:09:35Z<p>What you heard is true. As long as your object is subscribed to an event from another reachable object, the runtime will not release that object. If your application creates one or a small set of worker objects at the beginning for its lifetime, then you should be OK. If the application creates a worker object for each BLL object but the reference to BLL instance is released, you should be OK too.</p>
<p>The dangerous thing is to <em>blindly</em> subscribe an instance method to a <code>static</code> event or an instance event of an object with a long lifetime.</p>
http://stackoverflow.com/questions/1843114/making-a-superclass-have-a-static-variable-thats-different-for-each-subclass-in/1843157#18431570Answer by Mehrdad Afshari for Making a superclass have a static variable that's different for each subclass in c#Mehrdad Afshari2009-12-03T21:48:06Z2009-12-03T21:48:06Z<p>There's an alternative solution which might or might not be better than yours, depending on the use case:</p>
<pre><code>abstract class ClassA
{
private static class InternalClass<T> {
public static string Value;
}
public string GetValue()
{
return (string)typeof(InternalClass<>)
.MakeGenericType(GetType())
.GetField("Value", BindingFlags.Public | BindingFlags.Static)
.GetValue(null);
}
}
</code></pre>
<p>This approach is used in <code>EqualityComparer<T>.Default</code>. Of course, it's not used for this problem. You should really consider making <code>GetValue</code> abstract and override it in each derived class.</p>
http://stackoverflow.com/questions/1843020/show-progress-in-dialog/1843040#18430406Answer by Mehrdad Afshari for Show progress in dialogMehrdad Afshari2009-12-03T21:26:54Z2009-12-03T21:32:11Z<p>You should handle the <code>ProgressChanged</code> event and update the progress bar in your user interface there.</p>
<p>In the actual function that does the work (<code>DoWork</code> event handler), you'll call the <code>ReportProgress</code> method of the <code>BackgroundWorker</code> instance with an argument specifying the amount of task completed. </p>
<p>The <a href="http://msdn.microsoft.com/en-us/library/system.componentmodel.backgroundworker.aspx" rel="nofollow">BackgroundWorker example in MSDN Library</a> is a simple code snippet that does the job.</p>
http://stackoverflow.com/questions/1842642/training-certifications/1842663#18426630Answer by Mehrdad Afshari for Training/CertificationsMehrdad Afshari2009-12-03T20:25:18Z2009-12-03T20:25:18Z<p>As of now, Microsoft does not have a certification focusing on ASP.NET MVC. However, both ASP.NET Web Forms and ASP.NET MVC share a common infrastructure and the ASP.NET certification should be relevant to both technologies.</p>
<p>However, to achieve the ASP.NET certification, ASP.NET MVC knowledge isn't enough. You should know about building Web controls and using them and the way Web Form model works. While I'm not a fan of Web controls in general, the design of the ASP.NET framework and the way Web controls are rendered and things are wired up to abstract away limitations exposed by HTTP as much as possible is a marvelous piece of engineering that's worth knowing about IMO.</p>
http://stackoverflow.com/questions/1832120/c-listbox-stackoverflow-exception/1832129#18321295Answer by Mehrdad Afshari for c#, listbox, stackOverflow exceptionMehrdad Afshari2009-12-02T10:48:07Z2009-12-02T10:48:07Z<p>You're recursively calling the method in itself forever. There's no terminating condition for these recursive calls. It'll result in Stack Overflow.</p>
<pre><code>protected override void OnSelectedIndexChanged(EventArgs e)
{
CancelEventArgs cArgs = new CancelEventArgs();
OnSelectedIndexChanged(cArgs); // Clearly calling yourself indefinitely.
//...
}
</code></pre>
http://stackoverflow.com/questions/1831991/c-safe-way-to-cast-an-integer-to-a-pointer/1832001#18320012Answer by Mehrdad Afshari for C++: Safe way to cast an integer to a pointerMehrdad Afshari2009-12-02T10:26:34Z2009-12-02T10:26:34Z<p>No, there's no specific advantage in doing so. The moment you use <code>reinterpret_cast</code>, all bets are off. It's up to you to be sure the cast is valid.</p>
http://stackoverflow.com/questions/1831877/catchall-properties-in-c/1831883#18318833Answer by Mehrdad Afshari for "Catchall" Properties in C#?Mehrdad Afshari2009-12-02T10:01:59Z2009-12-02T10:01:59Z<p>No, you can't do that in C#. C# is a compiled language and statically resolves method slots at compile time. It doesn't support passing the property name as string or things like that.</p>
http://stackoverflow.com/questions/1831759/increase-the-session-timeout-of-my-web-form/1831774#18317744Answer by Mehrdad Afshari for Increase the session timeout of my web form ?Mehrdad Afshari2009-12-02T09:36:50Z2009-12-02T09:36:50Z<p>In Web.config:</p>
<pre><code><system.web>
...
<sessionState timeout="timeout in minutes"
...
/>
...
</system.web>
</code></pre>
http://stackoverflow.com/questions/1831696/c-cli-how-to-override-equal-method-of-object-class/1831726#18317260Answer by Mehrdad Afshari for C++/CLI : How to override Equal method of Object classMehrdad Afshari2009-12-02T09:27:06Z2009-12-02T09:33:46Z<p>The name of the method is not <code>Equal</code>, it's <code>Equals</code>. You shouldn't use <code>virtual</code> or <code>override</code> keywords in the implementation:</p>
<pre><code>ref class Test {
public:
virtual bool Equals(Object^ o) override;
virtual int GetHashCode() override;
};
bool Test::Equals(Object^ o) { // no "override" here
//...
}
int Test::GetHashCode() { // no "override" here
//...
}
</code></pre>
http://stackoverflow.com/questions/1829394/multi-level-arraylist-extraction/1829409#18294095Answer by Mehrdad Afshari for Multi Level ArrayList extractionMehrdad Afshari2009-12-01T22:32:42Z2009-12-01T22:43:14Z<pre><code>public static ArrayList FlattenList(ArrayList list) {
ArrayList l = new ArrayList();
FillList(list, l);
return l;
}
private static void FillList(ArrayList source, ArrayList listToFill) {
foreach (object o in source) {
ArrayList l = o as ArrayList;
if (l != null)
FillList(l, listToFill);
else
listToFill.Add(o);
}
}
</code></pre>
http://stackoverflow.com/questions/1829226/get-access-to-an-incrementing-integer-during-linq-select/1829240#18292404Answer by Mehrdad Afshari for Get access to an incrementing integer during LINQ SelectMehrdad Afshari2009-12-01T22:00:56Z2009-12-01T22:00:56Z<p>There's an overload for <code>Enumerable.Select</code> that supports passing an index along with the object itself. You can use that one:</p>
<pre><code>Dim project = new Project(1)
Dim tasks = Task.GetTasks()
Return <?xml version="1.0" encoding="UTF-8"?>
<Project xmlns="http://schemas.microsoft.com/project">
<Name><%= project.name %></Name>
<Tasks>
<%= tasks.Select(Function(t, idx) _
<Task>
<ID><%= idx + 1 %></ID>
</Task> _
) %>
</Tasks>
</code></pre>
http://stackoverflow.com/questions/1829038/short-circuiting-sort/1829080#18290802Answer by Mehrdad Afshari for Short Circuiting sortMehrdad Afshari2009-12-01T21:33:23Z2009-12-01T21:56:34Z<p>The algorithm you just described has a specific name: "selection sort". It's O(n<sup>2</sup>) so it's not quite the fastest thing you could do. However, if you want the first "k" elements in the sorted array, the complexity would be O(kn) which is nice if "k" is small enough (like your example).</p>
<p>Note that you are using a pure function in a functional language. The compiler is likely to be able to generate optimized code for <code>sort</code> in both cases by looking at the way functions are composed. It can easily infer that you want the minimum element when you compose <code>head</code> and <code>sort</code>.</p>
http://stackoverflow.com/questions/1829131/exception-handling-help/1829159#18291590Answer by Mehrdad Afshari for Exception handling helpMehrdad Afshari2009-12-01T21:47:36Z2009-12-01T21:47:36Z<p>By looking at the stack trace:</p>
<blockquote>
<p>...<br>
<code>at System.Data.DataRowCollection.get_Item(Int32 index)</code><br>
<code>at MyApp.MainForm.MainForm_Load(Object sender, EventArgs e)</code><br>
...</p>
</blockquote>
<p>you can see that your <code>MainForm_Load</code> method is calling the <code>Item</code> property of a <code>DataRowCollection</code> object with an invalid index.</p>
http://stackoverflow.com/questions/1816419/does-passing-a-struct-into-an-interface-field-allocate/1816450#18164501Answer by Mehrdad Afshari for Does passing a struct into an interface field allocate?Mehrdad Afshari2009-11-29T19:08:49Z2009-11-29T19:08:49Z<p>Yes. Casting a value type to an interface type it conforms to will box the value. Boxing operation is required in order to treat the value type as an object. It adds the necessary headers (incl. vtable) to the value so that you can call interface methods on it. A boxed value is subject to garbage collection as any managed object.</p>
http://stackoverflow.com/questions/338723/bazaar-bzr-integration-with-visual-studio1Bazaar (bzr) integration with Visual StudioMehrdad Afshari2008-12-03T21:15:47Z2009-11-29T00:09:09Z
<p>What's the best way to use Bazaar (bzr) as the version control system in Visual Studio 2008?</p>
http://stackoverflow.com/questions/1814069/when-if-ever-should-the-name-of-a-property-contain-the-name-of-the-class/1814079#18140793Answer by Mehrdad Afshari for When, if ever, should the name of a property contain the name of the class?Mehrdad Afshari2009-11-28T23:11:41Z2009-11-28T23:11:41Z<p>In my opinion, almost always, <code>Id</code> and <code>Name</code> are preferred and redundantly specifying the class name is not recommended. However, a notable exception is when <code>Id</code> or <code>Name</code> refer to an internal identifier or name and <code>FruitNumber</code> and <code>FruitName</code> refer to "real world identifier" or "display name" of the entity and for some reason you don't want to name it <code>DisplayName</code>.</p>
http://stackoverflow.com/questions/1814015/was-visual-studio-2008-or-2010-written-to-use-multi-cores/1814029#18140295Answer by Mehrdad Afshari for Was Visual Studio 2008 or 2010 written to use multi cores?Mehrdad Afshari2009-11-28T22:51:00Z2009-11-28T22:51:00Z<p>MSBuild supports building projects in parallel. Visual Studio 2008 takes advantage of multiple processors to <a href="http://msdn.microsoft.com/en-us/library/bb383805.aspx" rel="nofollow">compile projects</a>.</p>
http://stackoverflow.com/questions/1870082/really-complex-linq-to-sql-query-exampleComment by Mehrdad Afshari on Really complex LINQ (to SQL) query exampleMehrdad Afshari2009-12-08T21:57:11Z2009-12-08T21:57:11Z"Tests for support of exotic types and methods can be rejected. "Exotic" means it will be recognized as exotic by majority of ORM vendors @ ORMBattle.NET Development Google Group." Then ask the <i>majority</i> who has the right to approve tests to create the tests. They can basically reject anything they like by recognizing it as "exotic."http://stackoverflow.com/questions/1867810/validation-of-net-assemblies-in-c/1867819#1867819Comment by Mehrdad Afshari on Validation of .NET assemblies in C#? Mehrdad Afshari2009-12-08T15:50:09Z2009-12-08T15:50:09ZEuclid: You are micro-optimizing. The cost of throwing <code>BadImageFormatException</code> is insignificant in comparison to actual loading.http://stackoverflow.com/questions/1867708/how-to-pass-properties-by-reference-in-c/1867725#1867725Comment by Mehrdad Afshari on How to pass properties by reference in c#?Mehrdad Afshari2009-12-08T15:36:28Z2009-12-08T15:36:28ZJon: I think the OP's question is not related to calling by reference at all. The question, as I understand it, is mostly related to the way ASP.NET instantiates user controls that are declared in the markup.http://stackoverflow.com/questions/627716/stringdictionary-vs-dictionarystring-string/627733#627733Comment by Mehrdad Afshari on StringDictionary vs Dictionary<string, string>Mehrdad Afshari2009-12-07T14:03:32Z2009-12-07T14:03:32ZYou should benchmark to see which performs better for your special situation. I don't expect a noticeable performance difference. I recommend using <code>Dictionary<string,string></code> for all new code (unless you need to target 1.1).http://stackoverflow.com/questions/1856516/c-explicit-interfaces-with-inheritance/1856524#1856524Comment by Mehrdad Afshari on C# - Explicit Interfaces with inheritance? Mehrdad Afshari2009-12-06T20:40:41Z2009-12-06T20:40:41Z+1. From a lower level perspective, there's a single method slot for <code>IHello.Hello</code> in the vtable for class B, where the implementation is going to be looked up. http://stackoverflow.com/questions/1856444/save-in-database-didnt-work-vb-net-oleComment by Mehrdad Afshari on Save in database didn't work ?! (VB.NET | OLE)Mehrdad Afshari2009-12-06T20:12:26Z2009-12-06T20:12:26ZI strongly suspect that the <code>WHERE</code> clause evaluates to false and therefore, no row is updated.http://stackoverflow.com/questions/1856444/save-in-database-didnt-work-vb-net-oleComment by Mehrdad Afshari on Save in database didn't work ?! (VB.NET | OLE)Mehrdad Afshari2009-12-06T20:09:23Z2009-12-06T20:09:23ZSQL Injection attacks are right behind the door. Don't concatenate string values like that to create a query. Use parameters instead.http://stackoverflow.com/questions/1856442/online-or-distance-learning-msc-courses-in-united-kingdomComment by Mehrdad Afshari on Online or Distance Learning MSc courses in United KingdomMehrdad Afshari2009-12-06T20:07:46Z2009-12-06T20:07:46ZThe FAQ states that SO is a Q&A site for <i>programming</i> questions. This is not a programming question.http://stackoverflow.com/questions/1855731/decidability-of-machinesComment by Mehrdad Afshari on Decidability of MachinesMehrdad Afshari2009-12-06T15:55:53Z2009-12-06T15:55:53ZDecidability is for <i>languages</i>, not <i>machines</i>. Languages that can be defined by NFAs are <i>regular languages</i>. All regular languages are decidable. Yes, as the "complexity" of the language grows (higher in the Chomsky hierarchy), some problems become undecidable.http://stackoverflow.com/questions/1855158/casting-enum-to-uint/1855181#1855181Comment by Mehrdad Afshari on Casting Enum to uintMehrdad Afshari2009-12-06T14:15:51Z2009-12-06T14:15:51ZIt's your choice to delete or not. It's good to remove noise. When I misunderstand the question and I don't have something particularly useful to add, I delete my answer.http://stackoverflow.com/questions/1855158/casting-enum-to-uint/1855181#1855181Comment by Mehrdad Afshari on Casting Enum to uintMehrdad Afshari2009-12-06T12:44:53Z2009-12-06T12:44:53Z+1 to compensate. downvote is undeserved IMO since the question is edited. <code>(int)MyEnum.Xyz</code> <b>works</b> while <code>Enum x= MyEnum.Xyz; int p = (int)x;</code> doesn't.http://stackoverflow.com/questions/1855238/c-how-to-compare-objects-type-with-a-generics-type-irrelevant-to-generic-argu/1855248#1855248Comment by Mehrdad Afshari on C#: how to compare object's type with a generics type, irrelevant to generic argument?Mehrdad Afshari2009-12-06T12:30:20Z2009-12-06T12:30:20Z@Jon: Indeed! * *http://stackoverflow.com/questions/1853679/upgrading-from-net-3-5-to-4-questions-to-think-about/1853707#1853707Comment by Mehrdad Afshari on Upgrading from .NET 3.5 to 4. Questions to think about?Mehrdad Afshari2009-12-06T09:46:26Z2009-12-06T09:46:26ZWell, you can use almost everything in .NET 4 in IIS6 too. Of course, you cannot use newer IIS7 features that take advantage of .NET like Integrated mode. For the most part, it's OK. http://stackoverflow.com/questions/1845756/how-to-tamper-with-source-ip-address-on-windows/1845779#1845779Comment by Mehrdad Afshari on How to tamper with source IP address on WindowsMehrdad Afshari2009-12-04T09:34:16Z2009-12-04T09:34:16ZBasically no. Not a trivial way. Unless you control plenty of routers in the way.http://stackoverflow.com/questions/1843567/stdlist-threading-pushback-front-popfront/1843586#1843586Comment by Mehrdad Afshari on std::list threading push_back, front, pop_frontMehrdad Afshari2009-12-03T23:12:58Z2009-12-03T23:12:58Z@Steven: as sbi noted in his answer, you'd better use a system provided locking mechanism rather than rolling your own.