User badbadboy - Stack Overflowmost recent 30 from stackoverflow.com2009-12-21T08:36:04Zhttp://stackoverflow.com/feeds/user/38325http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/301693/why-didnt-unit-testing-work-out-for-your-project79Why didn't unit testing work out for your project?badbadboy2008-11-19T12:05:41Z2009-12-14T12:31:25Z
<p>Give short concrete answer: why unit testing did NOT work out for you (your project).
Will you particularly try again on a different project?</p>
http://stackoverflow.com/questions/313243/how-to-solve-must-be-marshalbyrefobject-in-a-good-but-multiple-inheritance-ampu3How to solve "Must be MarshalByRefObject" in a good but multiple-inheritance amputated language like C#?badbadboy2008-11-24T01:38:08Z2009-12-01T12:38:46Z
<p>How to solve "Must be MarshalByRefObject" in a good but multiple-inheritance amputated language like C#?</p>
<p>The problem is very simple, in several cases you just have to inherit from this class (infrastructure requirements).
It does not matter here really, which cases.
So, what do you do if you've already inherited from some other class (your domain model requirements)?</p>
<p>Btw good application frameworks, like spring.net always make sure you DON'T have to inherit from this class no matter what kind of infrastructure you need to apply to your class.</p>
<p><strong>I would like to know what am I getting -3 votes here for?? :)</strong></p>
http://stackoverflow.com/questions/299384/linq-to-nhibernate-project-status-contributing-lead1Linq to NHibernate project status? Contributing? Lead?badbadboy2008-11-18T17:01:31Z2009-09-18T19:29:50Z
<p>Anyone knows what is the status of the Linq to NHibernate project?
Is it in any kind of "production"?
Cannot find the project site (bug reports, feature requests, people etc.), so that I could try to contribute?</p>
<p>The latest post I was able to find was about <a href="http://orand.blogspot.com/2008/04/linq-to-nhibernate-in-linqpad.html" rel="nofollow">Linq to NHibernate in LinqPad</a>, and some Ayende's posts back from 2007...</p>
http://stackoverflow.com/questions/301809/workarounds-for-nameof-operator-in-c-typesafe-databinding3workarounds for nameof() operator in C#: typesafe databindingbadbadboy2008-11-19T12:54:00Z2009-08-26T10:46:43Z
<p>There's been a lot of wishes to include nameof () operator in C#, so that you could do, for instance, nameof (Customer.Name), which will return you "Name".</p>
<p>I have a domain object. And I have to bind it. And I need names of properties as strings then. And I want them typesafe.</p>
<p>I remember, there was a workaround for .NET 3.5 which involved lambda expressions, so that you could get the effect of missing "nameof" operator, but I could not find it now. Anyone can remind me?
And...for .NET 2.0...is there any damn way to do it?
Thanks!</p>
http://stackoverflow.com/questions/296520/win32-console-processes-in-vista-10-cpu-but-very-slow1Win32 console processes in VISTA - 10% CPU, but VERY SLOWbadbadboy2008-11-17T19:06:41Z2009-08-16T21:09:46Z
<p>I have a Win32 console application which is doing some computations, compiled in Compaq Visual Fortran (which probably doesn't matter). </p>
<p>I need to run a lot of them simultaneously.</p>
<p>In XP, they take around 90-100% CPU together, work very fast.
In Vista, no matter how many of them I run, they take no more than 10% of CPU (together), and work very slow respectively.</p>
<p>There is quite a bit of console output going on, but now VERY much.
I can minimize all the windows, it does not help. CPU is basically doing nothing...</p>
<p>Any ideas?</p>
<p><strong>Update:</strong></p>
<p>No, these are different machines, but they run relatively the same hardware. 2. Threads are not used, this is a VERY OLD (20 yrs) plain app for DOS, compiled in win32. It is supposed to compute iterations until they meet, consume all it has. My impression - VISTA just does NOT GIVE IT MORE CPU</p>
http://stackoverflow.com/questions/307289/one-log-file-and-one-error-handler-for-set-of-web-services-possible0One log file and one error handler for set of web services - possible?badbadboy2008-11-20T23:32:52Z2009-08-12T21:21:12Z
<p>We have a set of web services which is also our internal API.
They perfectly share one common web.config file.</p>
<p>Is there a way to somehow make log4net create one log for the whole site, for all of them? And have common error handler? The problem I think they are all separate virtual directories, separate applications...?</p>
<p>But again...they share the same web.config file and it works fine...can they somehow share global.asax or whatever? Can't get it to work...</p>
<p>Thanks for any help.</p>
http://stackoverflow.com/questions/314722/good-book-or-other-resource-on-integration-testing6Good book or other resource on integration testing?badbadboy2008-11-24T16:41:10Z2009-07-15T15:08:16Z
<p>There are enough books on how to do unit testing.</p>
<p>Do you know any good books (or other good resources) on integration testing?</p>
<p>What I am particularly interested in is</p>
<ul>
<li>Define scope (unit testing < integration testing < automated func. testing </li>
<li>What is a good and bad integration test</li>
<li>Data access</li>
<li>Service layers</li>
<li>Configuration</li>
<li>Spring or other DI containers for integration testing</li>
<li>...</li>
</ul>
<p>?</p>
http://stackoverflow.com/questions/370141/c-in-comparison-to-c-what-is-your-strongest-pain8C# in comparison to C++: what is your strongest pain?badbadboy2008-12-16T00:07:36Z2009-06-04T09:48:43Z
<p>Here are my points to start with.</p>
<ol>
<li>I cannot guarantee that my structs are initialized with my default constructor.</li>
<li>I cannot define a simple " == " operator overload on an interface.</li>
<li>I cannot return const objects, which destroys encapsulation.</li>
<li>I cannot define a simple generic Sum function because of operator + not working on generic type T.</li>
</ol>
<p><strong>Edit: Imagine you need to create a small type or maybe type hierarchy - double with accuracy and with different roundings. You would then understand why I need all these..</strong></p>
<ol>
<li>I cannot decide where to place my instances: ref- or value-placement</li>
<li>I don't have multiple inheritance which is the least pain (when you are not in one of those MarshalByRef situations...)!</li>
</ol>
http://stackoverflow.com/questions/669295/where-to-log-from-a-net-web-app-cant-use-appdata-because-of-privileges2Where to log from a .net web app? - Can't use %APPDATA% because of privilegesbadbadboy2009-03-21T13:22:57Z2009-03-21T16:10:51Z
<p>I need a path I could specify in log4net file appender so that the log files would go there.
However, aspnet or whatever account does not have write privileges to %APPDATA% folder.
Is there any place I can write to without asking customer admins to give extra access privileges?
Path.GetTempFile() is probably not a good idea. I need some defined place I could tell users to look in, and where web application could also read from.
Any other thoughts on how to achieve what I need?</p>
<p><strong>I would like to emphasize: the whole point is NOT TO ASK CUSTOMERS ANYTHING!</strong></p>
http://stackoverflow.com/questions/669271/what-is-the-difference-between-the-template-and-the-strategy-pattern/669320#6693203Answer by badbadboy for What is the difference between the template and the strategy pattern?badbadboy2009-03-21T13:38:36Z2009-03-21T13:38:36Z<p>You probably mean template method pattern.
You are right, they serve very similar needs.
I would say it is better to use template method in cases when you have a "template" algorithm having defined steps where subclasses override these steps to change some details.
In case of strategy, you need to create an interface, and instead of inheritance you are using delegation. I would say it is a bit more powerful pattern and maybe better in accordance to DIP - dependency inversion principles. It is more powerful because you clearly define a new abstraction of strategy - a way of doing something, which does not apply to template method. So, if this abstraction makes sense - use it. However, using template method may give you simpler designs in simple cases, which is also important.
Consider which words fit better: do you have a template algorithm? Or is the key thing here that you have an abstraction of strategy - new way of doing something </p>
<p>Example of a template method: </p>
<pre><code>Application.main()
{
Init();
Run();
Done();
}
</code></pre>
<p>Here you inherit from application and substitute what exactly will be done on init, run and done.</p>
<p>Example of a strategy:</p>
<pre><code>array.sort (IComparer<T> comparer)
</code></pre>
<p>Here, when writing a comparer, you do not inherit from an array. Array delegates the comparison algorithm to a comparer.</p>
http://stackoverflow.com/questions/385913/why-wasnt-the-java-throws-clause-in-method-declaration-included-in-c15Why wasn't the Java "throws" clause (in method declaration) included in C#?badbadboy2008-12-22T10:06:27Z2008-12-29T13:42:22Z
<p>Why wasn't the Java "throws" clause (in method declaration) included in C#?</p>
http://stackoverflow.com/questions/373064/how-to-implement-a-readonly-immutable-object-interface-in-c/373353#3733530Answer by badbadboy for How to implement a readonly (immutable) object interface in C#badbadboy2008-12-17T01:03:57Z2008-12-17T01:03:57Z<p>If anyone is interested in what I did, I finally went for an abstract class instead of interface, and I did hide the method in the derived class to get the right accessors:</p>
<p>Like, in the base abstract class (readonly interface):</p>
<pre><code>protected double accuracy;
public double Accuracy { get { return accuracy; } }
</code></pre>
<p>In the derived class:</p>
<pre><code>public new double Accuracy
{
get { return accuracy; }
set { accuracy = value; }
}
</code></pre>
<p>Of course, ugly with the "new" keyword, but in this case it will do for me.</p>
http://stackoverflow.com/questions/373064/how-to-implement-a-readonly-immutable-object-interface-in-c2How to implement a readonly (immutable) object interface in C#badbadboy2008-12-16T22:52:30Z2008-12-17T01:03:57Z
<p>What I need is to make sure that in most scenarios objects are used via "readonly interface", which is a subset of the full interface.</p>
<ul>
<li>If I were in C++, I would just return a const object, for instance.</li>
<li>If I could use interfaces, I would just implement a readonly interface and use it everywhere, however, I need operator overloading, which is not allowed for interfaces, that's why I have to use abstract base class.</li>
<li>But if I define abstract base class, I am not allowed to change accessibility in the derived type..</li>
</ul>
<p>Any ideas?
Thanx</p>
http://stackoverflow.com/questions/346589/c-how-can-i-make-sure-all-my-structures-are-initialized2C# - How can I make sure all my structures are initialized??badbadboy2008-12-06T18:39:41Z2008-12-07T10:38:05Z
<p>I am writing an application in C# which is going to do extensive calculations. Everything is going around basic struct - Value. It is basically double with some additional parameters (accuracy etc.)
It has to be a struct, because there will be too many of them created to afford heap allocation.
Now, I need to make sure they all are correctly initialized.
I cannot declare default explicit constructor, though I am provided default constructor, which initializes everything with 0, which does not make sense in my domain.</p>
<p>And there is no way to deny creating an instance without calling my constructor with parameters either...?</p>
<p>Basically what I need is this test to pass:</p>
<pre><code>[Test]
public void HowDoesThisStructureInitializeByDefault()
{
Value v = new Value(); - if this did not compile - it would have been ok!
Assert.AreEqual(0, v.Val); - passes
Assert.AreEqual(-1, v.Accuracy); - fails
}
</code></pre>
<p>It would be OK to throw an exception if no constructor has been explicitly called and structure is still accessed, but checking that all the time would take too much time.</p>
<p>I am almost losing hope now, please help!</p>
http://stackoverflow.com/questions/321543/write-stored-procedures-in-linq-lambda-unit-testable-but-performant-stored-procs2Write stored procedures in Linq/Lambda (Unit-testable but performant stored procs). Possible???badbadboy2008-11-26T17:43:50Z2008-12-02T22:50:30Z
<p>I am creating a data source for reporting model (SQL Server Reporting Services).
The reports requires a lot of joins and calculations (let's say, calculating financial parameters like money spent on this, that, amount A vs amount B)...all this involves subobjects.</p>
<p>It makes a lot of sense to me to write unit tests for this code (i.e. walking through order collection, aggregating info based on business rules and subobjects etc.)
To do this properly, I would expect my code to look approx. like this</p>
<pre><code>foreach (IOrder in Orders)
foreach (IOrderLine in IOrder.Orderlines)
...
return ...
</code></pre>
<p>and then test the return value.</p>
<p>But this code is not the SQL which is going to be used in the reporting view...of course...
So I am thinking, I could plug-in a .NET assembly in the database.
The issue here is, of course, performance...I don't want to loop all these objects in C#...too slow.</p>
<p>So, naturally, Linq/Lambda/Expression trees seem to be the answer to me.
As we know, when you are doing Linq to SQL, expression trees are built, and then proper SQL is generated based on them.</p>
<p>So, I could write my code in Linq to Objects, using lambda expressions, unit test this code on sample collections (having expressions compiled to .net), and reuse the same code as Linq to SQL in the DB stored procedure, so that inside SQL Server it would generate proper SQL for me (as Linq to SQL already does)...</p>
<p>Then I could get benefits of both unit-tests and writing domain logic code in C# and high-performing stored procedures for reports.</p>
<p>Possible? <strong>Can I use Linq/Lambda in SQL Server CLR Stored procedures?</strong> Anyone did it or knows how to make it work?
Am I crazy? Do you know a better way of doing it?</p>
<p>Thanks</p>
<p><strong>P.S. I think now I figured out how this should be done properly</strong>. According to Udi Dahan, if I understand him right. Database should be denormalized, and all the calculated fields should be on the objects in the table.
When something is happening on the subobject (OrderLine added), my Customer object should receive an event and recalculate the smart value (cache it and persist).</p>
<p>Then reports go straight-forward, without logic and work fast...</p>
http://stackoverflow.com/questions/294167/what-are-the-most-useful-intellij-idea-keyboard-shortcuts/329206#3292060Answer by badbadboy for What are the most useful Intellij IDEA keyboard shortcuts?badbadboy2008-11-30T19:19:51Z2008-11-30T19:19:51Z<p>Ctrl-N. Open class.</p>
<p>Alt-F7. Find usages.</p>
http://stackoverflow.com/questions/305161/process-start-throwing-intermittent-no-application-is-associated-on-doc-fi0Process.Start() throwing intermittent "No application is associated.." on .DOC files badbadboy2008-11-20T12:38:34Z2008-11-26T00:48:00Z
<p>System.Diagnostics.Process.Start() is throwing intermittent System.ComponentModel.Win32Exception: No application is associated with the specified file for this operation.</p>
<p>The file is a .doc file.
They are always able to open it manually (double-click).</p>
<p>What could be the problem?
Thanks</p>
http://stackoverflow.com/questions/315747/mocking-for-dummies/315783#3157832Answer by badbadboy for Mocking for Dummies?badbadboy2008-11-24T22:53:14Z2008-11-24T22:53:14Z<p>TypeMock?...</p>
<p>well, best mocking for me - interfaces, some refactoring of your code a bit and figuring out what do you want to test so that you don't need any mocking.
Or - any dependency injection to mock out some stuff (but before you need to refactor a bit of course)</p>
http://stackoverflow.com/questions/315608/conceptual-question-loose-coupling/315665#3156650Answer by badbadboy for Conceptual question: Loose Coupling badbadboy2008-11-24T21:59:44Z2008-11-24T21:59:44Z<p>Just trying to think together with you..
I see no big deal in Shapes having IBoard interface.
Though, I don't like the idea that they have to check the flag on the board...</p>
<p>How would you pass the flag as parameter? In OnMove() method? didn't understood this quite well...could you expand?</p>
<p>Though..
If you try to think a bit about SRP - single responsibility principle...what is the responsibility of Shape classes?
Yea, this is what eJames wrote already.</p>
<p>It feels to me that their main responsibility is probably NOT handling mouse events...here need to know more about your application, but my general feeling is why not someone else get this mouse down and then figure out what the shape should do with it and for instance call Draw() on the Shape with new coordinates?</p>
<p>Let's say you want to apply something like Composite pattern (Shapes inside shapes...) and you want them to be able to handle those mouse events themselves...but then
Then it would be logical if they perceived this mouse event in their local coordinates, but then I think you should provide all the information through this event (local coordinates, mouse status...) so that they don't have to ask for "global" variables on the board...</p>
http://stackoverflow.com/questions/315546/only-one-return-statement-per-method-even-in-this-scenario/315562#3155626Answer by badbadboy for Only one return statement per method, even in this scenario?badbadboy2008-11-24T21:34:10Z2008-11-24T21:34:10Z<p>Personally I think</p>
<pre><code>public static string ChopText(string Text))
{
if(String.IsNullOrEmpty(Text)
return Text;
...
}
</code></pre>
<p>is totally fine, if you don't like those AND if it is getting big.</p>
http://stackoverflow.com/questions/315051/using-a-class-defined-in-a-c-dll-in-c-code/315077#3150771Answer by badbadboy for using a class defined in a c++ dll in c# codebadbadboy2008-11-24T18:58:05Z2008-11-24T18:58:05Z<p>I agree with JaredPar.
Creating instances of unmanaged classes in managed code should not be possible.</p>
<p>Another thing is - if you could recompile the DLL in managed C++ or make a COM component out of it, it would be much easier/</p>
http://stackoverflow.com/questions/314401/how-to-read-a-line-from-the-console-in-c/314427#314427-5Answer by badbadboy for How to read a line from the console in Cbadbadboy2008-11-24T15:12:21Z2008-11-24T17:16:46Z<p>So, if you were looking for command arguments, take a look at Tim's answer.
If you just want to read a line from console:</p>
<pre><code>#include <stdio.h>
int main()
{
char string [256];
printf ("Insert your full address: ");
gets (string);
printf ("Your address is: %s\n",string);
return 0;
}
</code></pre>
<p><strong>Yes, it is not secure, you can do buffer overrun, it does not check for end of file, it does not support encodings and a lot of other stuff.
Actually I didn't even think whether it did ANY of this stuff.
I agree I kinda screwed up :)
But...when I see a question like "How to read a line from the console in C?", I assume a person needs something simple, like gets() and not 100 lines of code like above.
Actually, I think, if you try to write those 100 lines of code in reality, you would do many more mistakes, than you would have done had you chosen gets ;)</strong></p>
http://stackoverflow.com/questions/313894/what-are-the-advantages-of-using-j2ee-over-asp-net/313915#3139150Answer by badbadboy for What are the advantages of using J2EE over ASP.net?badbadboy2008-11-24T11:26:59Z2008-11-24T11:26:59Z<p>I did some J2EE some years ago.
My impression was - in J2EE most things are done the right way, but a lot of XML and other manual work as you mention.
IDE's are still better for Java. Jetbrains IDEA and Eclips are better the Visual studio, even with Resharper.
All the proper ways of doing stuff (transactions, spring, AOP, unit testing, DDD) have longer traditions in Java.</p>
<p>In MS world, you could do stuff quicker. But it is usually also dirty. Many complain about ASP.NET, that it is not proper MVC. They are creating proper MVC, and I don't know how fast it is going to be to work with it.
Newest DAO frameworks from Microsoft (Entity framework) still are very database-centric (bad).</p>
<p>In any case, if your developers decide to move from J2EE - they don't have leave their knowledge. They will apply Spring.NET, NHibernate (there is nothing better in .NET either).
They will use Resharper for visual studio. They will use NUnit instead of JUnit and stuff like that.</p>
<p>Ask your developers. If they are fed up with coding JSTL manually - let them do ASP.NET, and if they would like to adapt something new, they may benefit for it. </p>
<p>But I see no reason for moving from Java either.</p>
<p>My personal choice - probably .NET (one day I left the job because of JSTL, HTML and XSL, however now I am doing windows client, I like all the new cool stuff Microsoft does) with application of good Java traditions with NHibernate, spring and stuff and remembering good old days with Jetbrains IDEA.</p>
http://stackoverflow.com/questions/313882/can-you-invoke-an-instantiated-objects-class-constructor-explicity-in-c/313892#3138922Answer by badbadboy for Can you invoke an instantiated object's class constructor explicity in C++?badbadboy2008-11-24T11:08:46Z2008-11-24T11:08:46Z<p>I am pretty sure you can't do that.
That's the whole point, constructor IS creation of an instance of the class. </p>
<p>If a constructor is not called at all, or is called twice - which consequences could it have?</p>
<p>What you could do of course, is extracting some constructor logic into the method, and calling that method both in the constructor and after creation of the object.</p>
http://stackoverflow.com/questions/313256/migrate-vb-net-2-0-winform-to-3-5-wpf/313266#3132666Answer by badbadboy for Migrate VB.NET 2.0 Winform to 3.5 WPFbadbadboy2008-11-24T02:01:50Z2008-11-24T02:01:50Z<p>Microsoft is doing everything for us so that we have to throw away everything we've written 2 years ago.
According to Josh Smith, </p>
<blockquote>
<p>Is there a way to convert Winforms application to a WPF application?</p>
</blockquote>
<p>No. Those two UI platforms are very different and there is no app which converts a WinForms app to a WPF app. Of course, this will not prevent you from reusing any business/DAL/logging/Ioc/etc libraries you use in WinForms.</p>
<p>However, you might want to check out <a href="http://rrelyea.spaces.live.com/blog/cns!167AD7A5AB58D5FE!1627.entry" rel="nofollow">this</a>, quite basic but functional WinForms->XAML converter, written by Rob Relyea from WPF & Xaml Language Team.</p>
<p>According to him, "We (Microsoft) haven't built a real converter because we think most people will not just move over controls, but often will rethink their application as they move it. We'd love feedback..."</p>
<p>Also, you might want to check out <a href="http://blogs.windowsclient.net/rob_relyea/archive/2008/04/03/guidance-for-migrating-an-app-from-windows-forms-to-wpf.aspx" rel="nofollow">Guidance for migrating an app from Windows Forms to WPF</a>, also by Rob Relyea. </p>
http://stackoverflow.com/questions/267763/defensive-coding-practices/313238#3132381Answer by badbadboy for defensive coding practicesbadbadboy2008-11-24T01:32:14Z2008-11-24T01:32:14Z<p>Installed Resharper ;)
Then I don't need to write "5 == a" to get warned if I did something wrong :)</p>
http://stackoverflow.com/questions/313199/sql-transactions-best-way-to-implement-in-asp-net/313230#3132300Answer by badbadboy for Sql Transactions: Best Way to Implement in ASP.Netbadbadboy2008-11-24T01:26:26Z2008-11-24T01:26:26Z<ol>
<li>I would prefer declarative transactions over trying to do manual DB transactions.</li>
<li>As Mitch Wheat already mentioned, a transaction has context and is connection based, so it will include your changes happening in the page/method, and commit if all ok, or rollback if there was an exception.</li>
<li><strong>I might be wrong here</strong>, but I have a feeling that "Page Transaction" is using Enterprise Services model from .NET 1.1 and works through MSDTC (Distributed transaction coordinator, registered COM+ service)...</li>
<li>I would prefer System.Transactions and LTM (light-weight transaction manager) for declarative transactions in .NET 2.0</li>
<li>I would prefer Spring.NET framework transactions (available for both ADO.NET and NHibernate versions), because I believe they support better AOP-based (aspect oriented programming) separation of concerns, you will not have to couple your code with transaction code, and mostly because these guys have been doing transactions in Java for many years and I just trust them that they know what to do.</li>
</ol>
http://stackoverflow.com/questions/313182/how-to-host-a-wpf-control-in-an-ms-access-vba-form/313204#3132042Answer by badbadboy for How to host a WPF control in an MS Access VBA Form?badbadboy2008-11-24T01:03:09Z2008-11-24T01:03:09Z<p>What if you look into Visual Studio Tools for Office (VSTO) ?
You can write managed .NET addins for Office in C#, that will integrate as ribbons with office.</p>
<p>Now, the problem is that Access add-ins are not supported in VSTO AFAIK.
But, take a look <a href="http://blogs.msdn.com/andreww/archive/2008/02/19/vsto-add-ins-for-access.aspx" rel="nofollow">here</a>, it seems to be not that impossible.</p>
<p>So, if you happen to be lucky, you could </p>
<ul>
<li>Write a C# ribbon for Access which would have all the advanced GUI you need</li>
<li>Write services in C# that could be accessed from Access to encapsulate important business logic for instance, so that you could gradually move not only GUI, but build proper domain object model in C#.</li>
</ul>
<p>If you decide to try it out, let me know how it turned out :)
Good luck anyway.</p>
<p>PS something else which maybe is helpful?
<a href="http://msdn.microsoft.com/en-us/office/bb229700.aspx" rel="nofollow">Access 2007 Developer Extensions (ADE)</a> </p>
http://stackoverflow.com/questions/313084/whats-the-best-way-to-measure-memory-use-from-a-program/313092#3130921Answer by badbadboy for What's the Best Way to Measure Memory Use from a Program?badbadboy2008-11-23T23:13:10Z2008-11-23T23:13:10Z<p>If you are trying to optimize your own program memory-wise, I suggest you use a memory profiler tool for that.
There are many out there...some are free, some are not..you will surely find the one you need.
Those tools are written specifically for what you need (and also for memory leaks search) so...it will be hard to compare with them and do something like that on your own from your own program :)</p>
http://stackoverflow.com/questions/312597/learning-c/312602#3126022Answer by badbadboy for Learning C#badbadboy2008-11-23T15:08:22Z2008-11-23T15:08:22Z<p>I would read one of Jeffrey Richter's books: CLR via C#.
Btw I haven't read this one, but I read his previous one about .NET 1.1.</p>
<p>This will let you understand how CLR works and why, and what is special in C# so that.
You will understand all those specific things as template implementation differences, value types, boxing, nullables and all those kinda stuff which you will otherwise wonder "what a f..."?</p>
http://stackoverflow.com/questions/373064/how-to-implement-a-readonly-immutable-object-interface-in-c/373131#373131Comment by badbadboy on How to implement a readonly (immutable) object interface in C#badbadboy2008-12-17T01:00:11Z2008-12-17T01:00:11Z@Vilx - I like your suggestion, though, I decided not go go for it, because J. Richter suggests to avoid explicit interface implementation as much as possible...in particular, because I will do a lot of these casts, even if I am in derived type.http://stackoverflow.com/questions/373064/how-to-implement-a-readonly-immutable-object-interface-in-c/373204#373204Comment by badbadboy on How to implement a readonly (immutable) object interface in C#badbadboy2008-12-17T00:57:33Z2008-12-17T00:57:33Z@Chris - in a different application I would totally agree :) I've almost done it. In this one (computational) - it is very unfortunate to drop it, it is actually more unfortunate than dropping readonly requirement... http://stackoverflow.com/questions/370141/c-in-comparison-to-c-what-is-your-strongest-pain/370187#370187Comment by badbadboy on C# in comparison to C++: what is your strongest pain?badbadboy2008-12-16T21:32:06Z2008-12-16T21:32:06Z@me.yahoo.com/neilwhitaker1: about #5,it goes together with #1. I don't want to use class, because it will be created on heap and always placed by reference, and structs are always by value and "in context/stack" If I could decide this per instance, like in C++, I could have created a class intead..http://stackoverflow.com/questions/370141/c-in-comparison-to-c-what-is-your-strongest-pain/370196#370196Comment by badbadboy on C# in comparison to C++: what is your strongest pain?badbadboy2008-12-16T21:10:28Z2008-12-16T21:10:28Z@Josh - totally aggreed. I don't know much about this area but I believe you mean that there is no way to guarantee resource will be released like in C++ when the object is out of scope and destructor is called....http://stackoverflow.com/questions/370141/c-in-comparison-to-c-what-is-your-strongest-pain/370153#370153Comment by badbadboy on C# in comparison to C++: what is your strongest pain?badbadboy2008-12-16T00:18:44Z2008-12-16T00:18:44Z@Keith Nicholas - I did some editing, so you can see why they are problems for me.http://stackoverflow.com/questions/346589/c-how-can-i-make-sure-all-my-structures-are-initialized/346611#346611Comment by badbadboy on C# - How can I make sure all my structures are initialized??badbadboy2008-12-06T20:10:58Z2008-12-06T20:10:58Z@jalf - thanks. Makes much sense now. Still, I'm imagining writing this kind of code in C++. You have an array Values, would you declare a regular array (stack) or an array of pointers (heap)? It's not just about allocation. You will have to find the object by ref everytime if doing heap..http://stackoverflow.com/questions/346589/c-how-can-i-make-sure-all-my-structures-are-initialized/346618#346618Comment by badbadboy on C# - How can I make sure all my structures are initialized??badbadboy2008-12-06T19:37:11Z2008-12-06T19:37:11Z@tvanfosson "You could use unit tests with mock/verify to make sure that when new values are created by your code they use the factory" - how can you ensure that everyone uses the factory? Without doing special check in the struct (which is expensive?)http://stackoverflow.com/questions/346589/c-how-can-i-make-sure-all-my-structures-are-initialized/346611#346611Comment by badbadboy on C# - How can I make sure all my structures are initialized??badbadboy2008-12-06T19:35:03Z2008-12-06T19:35:03Z@jalf - 1) I can't define explicit constructor because C# does not allow explicit constructors on structs. 2) I think heap allocation is moer expensive because you need to call something to do it. You might even get OutOfMemoryException.For stack allocation, you don't need to do anything,am I wrong?http://stackoverflow.com/questions/315758/asp-net-based-workflow-engineComment by badbadboy on ASP.NET based Workflow Enginebadbadboy2008-11-24T22:50:39Z2008-11-24T22:50:39Zhmm...if we were starting now, we would have thrown our engine and would have gone for wwf...if you would set copy local checkbox, you could just get the needed 3.5 dlls and run in on 2.0. sorry for offtopichttp://stackoverflow.com/questions/313256/migrate-vb-net-2-0-winform-to-3-5-wpf/313266#313266Comment by badbadboy on Migrate VB.NET 2.0 Winform to 3.5 WPFbadbadboy2008-11-24T20:55:46Z2008-11-24T20:55:46Z@JFV - you are welcome. I just want to warn you that I don't know anything about this topic really...I just googled it to be honest..... but I believe in what Rob Releya says...http://stackoverflow.com/questions/313894/what-are-the-advantages-of-using-j2ee-over-asp-net/313927#313927Comment by badbadboy on What are the advantages of using J2EE over ASP.net?badbadboy2008-11-24T18:50:43Z2008-11-24T18:50:43Z@S.Lott: you haven't however mentioned any advantages of .NET, except being locked with Microsoft :)http://stackoverflow.com/questions/313894/what-are-the-advantages-of-using-j2ee-over-asp-net/313927#313927Comment by badbadboy on What are the advantages of using J2EE over ASP.net?badbadboy2008-11-24T18:43:22Z2008-11-24T18:43:22Z@S.Lott: You are welcome :) PS I think your answer is too subjective (much more than the question). http://stackoverflow.com/questions/267763/defensive-coding-practices/313238#313238Comment by badbadboy on defensive coding practicesbadbadboy2008-11-24T18:39:13Z2008-11-24T18:39:13Z@lexu: no, but it is a subjective question, and I do not use perl, python or bash :)http://stackoverflow.com/questions/314401/how-to-read-a-line-from-the-console-in-c/314427#314427Comment by badbadboy on How to read a line from the console in Cbadbadboy2008-11-24T17:12:01Z2008-11-24T17:12:01Z@Tim - I want to keep all history :)http://stackoverflow.com/questions/314722/good-book-or-other-resource-on-integration-testing/314746#314746Comment by badbadboy on Good book or other resource on integration testing?badbadboy2008-11-24T17:07:42Z2008-11-24T17:07:42Z@Julien Grenier: Looking through the contents, haven't found much on integration testing TECHNIQUES...