User Todd Stout - Stack Overflowmost recent 30 from stackoverflow.com2009-12-19T04:10:55Zhttp://stackoverflow.com/feeds/user/59768http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/172793/good-dynamic-programing-language-for-net-recommendation/1909227#19092270Answer by Todd Stout for Good dynamic programing language for .net recommendationTodd Stout2009-12-15T18:00:28Z2009-12-15T18:00:28Z<p>Take a look at <a href="http://clojure.org/" rel="nofollow">Clojure</a>. The CLR version is still in the early stages, but you could probably get the java version working in .Net via <a href="http://www.ikvm.net/" rel="nofollow">IKVM</a></p>
http://stackoverflow.com/questions/1786257/properly-handling-platform-specifics-unix-windows-in-c/1786379#17863790Answer by Todd Stout for Properly handling platform specifics (unix/windows) in C?Todd Stout2009-11-23T22:06:03Z2009-11-23T22:13:15Z<p>You could create separate shared libraries for each platform (.so or .dll), then dynamically load the appropriate library at runtime. Each library would contain the platform-specific code. You would need a wrapper for the OS-specific load library calls, but that would probably be your only #ifdef'd function.</p>
http://stackoverflow.com/questions/769983/how-to-configure-log4net-programmatically-from-scratch-no-config/1776025#17760252Answer by Todd Stout for How to configure log4net programmatically from scratch (no config)Todd Stout2009-11-21T16:56:02Z2009-11-21T16:56:02Z<p>Here's an example class that creates log4net config completely in code. I should mention that creating a logger via a static method is generally viewed as bad, but in my context, this is what I wanted. Regardless, you can carve up the code to meet your needs.</p>
<pre><code>using log4net;
using log4net.Repository.Hierarchy;
using log4net.Core;
using log4net.Appender;
using log4net.Layout;
namespace dnservices.logging
{
public class Logger
{
private PatternLayout _layout = new PatternLayout();
private const string LOG_PATTERN = "%d [%t] %-5p %m%n";
public string DefaultPattern
{
get { return LOG_PATTERN; }
}
public Logger()
{
_layout.ConversionPattern = DefaultPattern;
_layout.ActivateOptions();
}
public PatternLayout DefaultLayout
{
get { return _layout; }
}
public void AddAppender(IAppender appender)
{
Hierarchy hierarchy =
(Hierarchy)LogManager.GetRepository();
hierarchy.Root.AddAppender(appender);
}
static Logger()
{
Hierarchy hierarchy = (Hierarchy)LogManager.GetRepository();
TraceAppender tracer = new TraceAppender();
PatternLayout patternLayout = new PatternLayout();
patternLayout.ConversionPattern = LOG_PATTERN;
patternLayout.ActivateOptions();
tracer.Layout = patternLayout;
tracer.ActivateOptions();
hierarchy.Root.AddAppender(tracer);
RollingFileAppender roller = new RollingFileAppender();
roller.Layout = patternLayout;
roller.AppendToFile = true;
roller.RollingStyle = RollingFileAppender.RollingMode.Size;
roller.MaxSizeRollBackups = 4;
roller.MaximumFileSize = "100KB";
roller.StaticLogFileName = true;
roller.File = "dnservices.txt";
roller.ActivateOptions();
hierarchy.Root.AddAppender(roller);
hierarchy.Root.Level = Level.All;
hierarchy.Configured = true;
}
public static ILog Create()
{
return LogManager.GetLogger("dnservices");
}
}
</code></pre>
<p>} </p>
http://stackoverflow.com/questions/1515947/writing-a-portable-domain-specific-language/1570003#15700030Answer by Todd Stout for writing a portable domain specific languageTodd Stout2009-10-15T02:23:18Z2009-11-04T00:48:56Z<p>I would like to expand on Darien's answer. I think that ANTLR brings something to the table that few other lexer/parser tools provide (at least to my knowledge). If you would like to create a DSL which ultimately generates Java and C# code, ANTLR really shines.</p>
<p>ANTLR provides four fundamental components:</p>
<ul>
<li>Lexer Grammar (break down input streams into tokens)</li>
<li>Parser Grammar (organize tokens into an abstract syntax tree)</li>
<li>Tree Grammar (walk the abstract syntax tree and pipe the metadata into a template engine)</li>
<li>StringTemplate (a template engine based on functional programming principles)</li>
</ul>
<p>Your lexer,parser, and tree grammars can remain independent of your final generated language. In fact, the StringTemplate engine supports logical groups of template definitions. It even provides for interface inheritance of template groups. This means you can have third parties use your ANTLR parser to create say python, assembly, c, or ruby, when all you initially provided was java and C# output. The output language of your DSL can easily be extended as requirements change over time.</p>
<p>To get the most out of ANTLR you will want to read the following:</p>
<p><a href="http://www.pragprog.com/titles/tpantlr/the-definitive-antlr-reference" rel="nofollow">The Definitive ANTLR Reference: Building Domain-Specific Languages</a></p>
<p><a href="http://www.pragprog.com/titles/tpdsl/language-design-patterns" rel="nofollow">Language Implementation Patterns: Create Your Own Domain-Specific and General Programming Languages</a></p>
http://stackoverflow.com/questions/1658887/functional-programming-immutable-data-structure-efficiency/1658903#16589031Answer by Todd Stout for functional programming: immutable data structure efficiencyTodd Stout2009-11-02T00:29:47Z2009-11-02T00:36:56Z<p>Take a look at the <a href="http://en.wikipedia.org/wiki/Zipper%5F%28data%5Fstructure%29" rel="nofollow">Zipper data structure</a>.</p>
http://stackoverflow.com/questions/783631/will-vb-net-be-phased-out/1598559#15985591Answer by Todd Stout for Will VB.NET be phased out?Todd Stout2009-10-21T03:17:59Z2009-10-25T01:26:55Z<p>I disagree that John Saunders is wrong. MS is moving towards the two languages being virtually identical minus curly braces and semicolons. Since the early days of .Net, VB.Net has been getting the short-end-of-the-stick. </p>
<ul>
<li>You would never create a library in VB.Net, so why should it support XML doc comments? Yes, it's there now, but not until recently in .Net's history.</li>
<li>Operator overloading? That's beyond the VB.Net developer's understanding. They won't complain. Yes, it's there now, but for a long time it was not.</li>
<li>LINQ - OK, we will provide it now. Future enhancements...no guarantees!</li>
<li>Lambda - Sure, but they must be declared to return a value and can only be a single statement (will be fixed in 2010 I believe). This limitation has made closures syntactically painful in VB.Net.</li>
</ul>
<p>Ironically, VB.Net's dynamic binding has become vogue (for good reasons). C# will support dynamic binding in the next release.</p>
<p>I would truly appreciate someone explaining why dynamic binding is good for C# in its next release, but for VB.Net, in most circles it is considered bad practice to not have 'Option Strict On' at the top of every .vb file.</p>
http://stackoverflow.com/questions/1606202/decompiling-exe-to-asm/1606547#16065470Answer by Todd Stout for Decompiling EXE to ASMTodd Stout2009-10-22T11:20:40Z2009-10-22T23:17:36Z<p>You can install <a href="http://www.cygwin.com/" rel="nofollow">Cygwin</a> and use <a href="http://en.wikipedia.org/wiki/Objdump" rel="nofollow">objdump</a> to decompile an exe into asm. Be sure you select the binutils when installing cygwin. After installing cygwin, you can run the following from a bash shell:</p>
<pre><code>objdump -Slx yourpgm.exe
</code></pre>
http://stackoverflow.com/questions/1600802/tools-for-generating-uml-class-diagram-from-c-source-or-dll/1600896#16008962Answer by Todd Stout for Tools for generating UML class diagram from C# source or dllTodd Stout2009-10-21T13:38:03Z2009-10-22T02:43:05Z<p>The combination of <a href="http://www.graphviz.org/" rel="nofollow">Graphviz</a> and <a href="http://www.stack.nl/~dimitri/doxygen/" rel="nofollow">Doxygen</a> can generate some nice class diagrams (and much more) from C# source. Both tools are free. </p>
<p>Here's an example: </p>
<p><img src="http://clmosq.bay.livefilestore.com/y1phtgmkH7G1SszpIrtgvM1-mffd0D0b%5FDlp2rkWSFSD7b3brZjqj2YqxktRa5GglO6H3MI2NjZbLo077OcTYECJoPVWRlcQCP6/csla.png" alt="alt text" /></p>
http://stackoverflow.com/questions/1072300/is-there-a-net-analog-of-the-functionality-provided-by-java-lang-instrument0Is there a .Net analog of the functionality provided by java.lang.instrument?Todd Stout2009-07-02T03:19:51Z2009-10-22T02:39:20Z
<p>I have looked at a few of the well-known AOP-oriented frameworks for .Net such as PostSharp, bltoolkit, Castle, Cecil, and Policy Injection Block from Microsoft. Perhaps I am ignorant, but it appears that these frameworks do not provide the ability to inject code while the class is being loaded by the virtual machine, before it is visible to the application. They all appear to rely on either application use of a factory or class/method level attributes that provide the meta-data needed for compile-time manipulation of assemblies. The critical feature of <a href="http://java.sun.com/j2se/1.5.0/docs/api/java/lang/instrument/package-summary.html" rel="nofollow">java.lang.instrument</a> I'm looking for is to simply inject interceptors around method calls without changing source (attributes on methods/classes) or rebuilding existing assemblies to inject the interception code. Am I naive in thinking the CLR security model can support this?</p>
http://stackoverflow.com/questions/1604283/buffer-overflow-windows-vs-unix/1604304#16043041Answer by Todd Stout for Buffer overflow - Windows vs UnixTodd Stout2009-10-21T23:57:06Z2009-10-21T23:57:06Z<p>Both Windows and Unix processes have memory isolation. Buffer overflow attacks can occur in both environments.</p>
http://stackoverflow.com/questions/1537404/how-do-you-use-func-and-action-when-designing-applications/1539261#15392610Answer by Todd Stout for How do you use Func<> and Action<> when designing applications?Todd Stout2009-10-08T17:21:00Z2009-10-21T01:28:32Z<p>I use an Action to nicely encapsulate executing database operations in a transaction:</p>
<pre><code>public class InTran
{
protected virtual string ConnString
{
get { return ConfigurationManager.AppSettings["YourDBConnString"]; }
}
public void Exec(Action<DBTransaction> a)
{
using (var dbTran = new DBTransaction(ConnString))
{
try
{
a(dbTran);
dbTran.Commit();
}
catch
{
dbTran.Rollback();
throw;
}
}
}
}
</code></pre>
<p>Now to execute in a transaction I simply do</p>
<pre><code>new InTran().Exec(tran => ...some SQL operation...);
</code></pre>
<p>The InTran class can reside in a common library, reducing duplication and provides a singe location for future functionality adjustments.</p>
http://stackoverflow.com/questions/1597884/refactoring-guard-clauses/1598015#15980150Answer by Todd Stout for Refactoring Guard ClausesTodd Stout2009-10-21T00:03:50Z2009-10-21T00:03:50Z<p>You might consider refactoring to <a href="http://sourcemaking.com/refactoring/introduce-null-object" rel="nofollow">Introduce a Null Object</a>.</p>
http://stackoverflow.com/questions/1565674/execute-sql-file-on-a-sql-server-using-c/1575468#15754680Answer by Todd Stout for Execute sql file on a SQL Server using C#Todd Stout2009-10-15T22:25:32Z2009-10-15T22:25:32Z<p>If you are willing to include a couple of the SMO dlls, you can execute a script with a few lines of code:</p>
<pre><code>using Microsoft.SqlServer.Management.Smo;
using Microsoft.SqlServer.Management.Common;
public void Exec(string script)
{
using (var conn = new SqlConnection(ConnString))
{
var server = new Server(new ServerConnection(conn));
server.ConnectionContext.ExecuteNonQuery(script, ExecutionTypes.ContinueOnError);
}
}
</code></pre>
<p>The SMO library handles the GO issue so you don't have to. You will need to reference the following assemblies:</p>
<p>Microsoft.SqlServer.ConnectionInfo.dll</p>
<p>Microsoft.SqlServer.Management.Sdk.Sfc.dll</p>
<p>Microsoft.SqlServer.Smo.dll</p>
http://stackoverflow.com/questions/1567635/unit-testing-with-an-input-file/1567649#15676492Answer by Todd Stout for Unit testing with an input fileTodd Stout2009-10-14T17:01:09Z2009-10-14T22:12:31Z<p>Add the file as a resource to your test assembly. Then you can load it at runtime via Assembly.GetManifestResourceStream in your test setup.</p>
<p>Here's a convenient method I use to load resources:</p>
<pre><code>public static class ResLoader
{
public static string AsString<T>(string resName)
{
using (var reader = new StreamReader(Assembly.GetAssembly(typeof(T))
.GetManifestResourceStream(resName)))
{
return reader.ReadToEnd();
}
}
}
</code></pre>
<p>T is any class contained in your test assembly.</p>
http://stackoverflow.com/questions/1567935/how-to-do-inheritance-modeling-in-relational-databases/1567953#15679530Answer by Todd Stout for How to do Inheritance Modeling in Relational Databases ?Todd Stout2009-10-14T17:55:54Z2009-10-14T17:55:54Z<p>Look at these articles for some ideas:</p>
<p><a href="http://www.ibm.com/developerworks/library/ws-mapping-to-rdb/" rel="nofollow">Mapping Objects to Relational Databases</a></p>
<p><a href="http://www.alachisoft.com/articles/inheritance%5Fmapping.html" rel="nofollow">Inheritance in O/R Mapping</a></p>
http://stackoverflow.com/questions/349711/ruby-on-rails-state-machines/1561560#15615600Answer by Todd Stout for ruby on rails state machinesTodd Stout2009-10-13T16:59:34Z2009-10-13T16:59:34Z<p>I have found the <a href="http://smc.sourceforge.net/" rel="nofollow">State Machine Compiler</a> to be very useful for creating state machines. It supports Ruby and many other languages.</p>
http://stackoverflow.com/questions/1534834/database-design-software-for-a-student/1534845#15348450Answer by Todd Stout for Database design software for a student?Todd Stout2009-10-07T23:49:52Z2009-10-07T23:49:52Z<p>Try <a href="http://fabforce.net/dbdesigner4/" rel="nofollow">DB Designer</a>. It's free and has some useful features. It is both Windows and Linux friendly.</p>
http://stackoverflow.com/questions/1494502/how-do-i-generate-const-or-test-data-in-c/1494776#14947760Answer by Todd Stout for How do I generate const or test data in C# ?Todd Stout2009-09-29T20:32:51Z2009-09-29T20:32:51Z<p>Take a look at <a href="http://autofixture.codeplex.com/" rel="nofollow">Autofixture</a>. It can substantially simplify setting up your unit tests.</p>
http://stackoverflow.com/questions/1480252/the-future-of-net/1480268#14802681Answer by Todd Stout for The Future of .NetTodd Stout2009-09-26T02:32:53Z2009-09-26T02:32:53Z<p>Coke and Pepsi...which one do you like? I hate it when you go into a restaurant and find while ordering that they only serve Pepsi. Don't you? I would say that they both have their place and serve very similar purposes. Both are tasty and will satisfy your thirst! Is one better than the other? Perhaps, but that is very subjective. Both have substantial market share. Will that change over time? Of course it will, but probably not until a new kid on the block changes the game all together.</p>
http://stackoverflow.com/questions/1414095/what-is-the-best-way-for-c-app-to-communicate-unix-c-app/1414180#14141802Answer by Todd Stout for What is the best way for C# app to communicate unix c++ appTodd Stout2009-09-12T03:30:23Z2009-09-12T13:05:40Z<p>Since you are already aware of the Web service and socket approach, I'll mention some other options. If you like simplicity, check out <a href="http://www.xmlrpc.com/" rel="nofollow">XML-RPC</a>. This is what SOAP was before large standards committees and corporate interests began to control the specification. You can find implementations of XML-RPC for just about every major programming language out there. <a href="http://hessian.caucho.com/" rel="nofollow">Hessian</a> is an interesting binary protocol that has many fans and supports just about every major language as well. <a href="http://en.wikipedia.org/wiki/Protocol%5FBuffers" rel="nofollow">Protocol Buffers</a> is popular within Google. The official version from Google does not support C#. However, the two highest rep users of SO do provide ports of protobuf for the .Net space.</p>
<p>I will probably be ridiculed for this, but also take a look at CORBA. It's not in vogue these days, but has many substantial technical creds, especially if one end of the communication is C++. IMHO, it's WS-* with OO support and no angle brackets required. For interop, I think it still should have a seat at the table. When engaged in C++ development, I found <a href="http://omniorb.sourceforge.net/" rel="nofollow">OmniOrb</a> to be quite effective and efficient. Take a look at this <a href="http://stackoverflow.com/questions/341038/corba-from-net-disrecommended-libraries/1002715">SO Question</a> for some pointers concerning using CORBA in .Net. </p>
http://stackoverflow.com/questions/1056567/java-appdomain-like-abstraction/1414050#14140501Answer by Todd Stout for Java AppDomain like abstraction?Todd Stout2009-09-12T02:24:15Z2009-09-12T02:24:15Z<p>I think the accepted answer here is a little misleading. Simply saying "no, you can't" is not the whole story. The question is focused on unloading Java classes in a server process to remove leaky code from the JVM process without a process restart. The OP is not asking for the process-like memory isolation feature that an AppDomain gives, but the ability to unload classes in a running JVM. I say process-like, since under the hood an AppDomain is not a process, but enjoys some of the isolation aspects that a first-class process is afforded by the operating system. The isolate JSR mentioned is referring to this 'process-like' isolation. Unloading java ClassLoaders and thus classes, without cycling the OS process hosting the JVM is possible. A couple of methods are mentioned here: <a href="http://stackoverflow.com/questions/148681/unloading-classes-in-java">SO 148681</a>. It is not trivial, or elegant to do this in Java, but it is possible. </p>
http://stackoverflow.com/questions/1050736/object-disposed-exception-when-using-net-trace-source-within-vs-unit-tests/1364882#13648820Answer by Todd Stout for Object Disposed Exception when using .Net Trace Source within VS UNit TestsTodd Stout2009-09-01T22:03:36Z2009-09-02T14:02:36Z<p>I encountered the same problem when running tests that exercised code with Trace.WriteLine calls. Running a single test is fine, but running multiple triggered the following call stack:</p>
<pre><code>System.IO.__Error.WriterClosed()
System.IO.StringWriter.Write(Char[] buffer, Int32 index, Int32 count)
System.IO.TextWriter.WriteLine(String value)
System.IO.TextWriter.SyncTextWriter.WriteLine(String value)
System.Diagnostics.TextWriterTraceListener.WriteLine(String message)
System.Diagnostics.TraceInternal.WriteLine(String message)
System.Diagnostics.Trace.WriteLine(String message)
</code></pre>
<p>After some investigation I found that placing the following code in your test setup worked around the problem:</p>
<pre><code>[TestInitialize()]
public void Setup()
{
Array.ForEach((from TraceListener tl in Trace.Listeners
where tl.Name != "Default"
select tl).ToArray(),
tl => Trace.Listeners.Remove(tl));
}
</code></pre>
<p>Apparently, when running in the mstest environment, there is a problem with multiple trace listeners. MSTest is adding a System.Diagnostics.TextWriterTraceListener that is using a stream that is disposed after the first test. The workaround simply removes all Trace listeners other than the default, effectively removing the mstest-added listener. The problem appears to be related to some improper handling of the trace stream created by mstest. Previously I stated that mstest created an AppDomain for each test. This is not true.</p>
<p>I see that you filed a bug report with Microsoft <a href="http://connect.microsoft.com/VisualStudio/feedback/ViewFeedback.aspx?FeedbackID=472475" rel="nofollow">here</a>, but did not receive any useful feedback. Hopefully this quick fix will work for you, as it did for me.</p>
http://stackoverflow.com/questions/662956/most-useful-free-net-libraries/793519#7935196Answer by Todd Stout for Most useful free .NET libraries?Todd Stout2009-04-27T13:36:36Z2009-08-30T12:28:24Z<p><a href="http://www.ikvm.net/" rel="nofollow">IKVM</a> brings the extensive world of Java libraries to .NET.</p>
http://stackoverflow.com/questions/851050/whats-the-best-way-to-change-the-namespace-of-a-highly-referenced-class/1019168#10191682Answer by Todd Stout for What's the best way to change the namespace of a highly referenced class?Todd Stout2009-06-19T17:41:11Z2009-08-24T16:10:05Z<p>Here's a <a href="http://www.microsoft.com/windowsserver2003/technologies/management/powershell/default.mspx" rel="nofollow">Powershell</a> script that I have used to accomplish a painful namespace rename. In my situation there were about 5000 VB.Net and C# source files making heavy use of a common library (<a href="http://www.lhotka.net/cslanet/" rel="nofollow">CSLA</a>). For reasons not worth discussing, I needed to rename the namespace <em>Csla</em> to <em>CslaLegacy</em>. With minimal effort, you should be able to adapt this script to your specific needs. The script recursively searches the source tree looking for .vb and .cs files. The $repValues hash table contains the strings that need to be replaced. A variation of this script can also be used to update project references, should your rename include an assembly name change. You can add a call to your source control tool to checkout the file before the modification. I originally did this for TFS, but found it slow to execute tf.exe. In the end it was much faster to simply checkout the entire source tree before running the script. I use <a href="http://powergui.org/index.jspa" rel="nofollow">PowerGUI</a> script editor for debugging and running powershell scripts. </p>
<pre><code>$root = "c:/path/to/your/source"
cd $root
$files = Get-ChildItem -Path $root -Recurse -include *.cs,*.vb
$repValues =
@{
'using Csla;' = 'using CslaLegacy;';
'using Csla.Validation;' = 'using CslaLegacy.Validation;';
'using Csla.Data;' = 'using CslaLegacy.Data;';
'Imports Csla' = 'Imports CslaLegacy';
'Imports Csla.Validation' = 'Imports CslaLegacy.Validation';
}
$stmtsToReplace = @()
foreach ($key in $repValues.Keys) { $stmtsToReplace += $null }
$repValues.Keys.CopyTo($stmtsToReplace, 0)
foreach ($file in $files)
{
$path = [IO.Path]::Combine($file.DirectoryName, $file.Name)
$sel = Select-String -Pattern $stmtsToReplace -Path $path -l
if ($sel -ne $null)
{
write "Modifying file $path"
(Get-Content -Encoding Ascii $path) |
ForEach-Object {
$containsStmt = $false
foreach ($key in $repValues.Keys)
{
if ($_.Contains($key))
{
$_.Replace($key, $repValues[$key])
$containsStmt = $true
break
}
}
if (!$containsStmt) { $_ }
} |
Set-Content -Encoding Ascii $path
}
}
</code></pre>
http://stackoverflow.com/questions/1301677/is-there-and-equivalent-for-microsofts-uuidcompare-uuidcreate-etc-in-linux-or/1301702#13017020Answer by Todd Stout for Is there and equivalent for Microsoft's UuidCompare, UuidCreate, etc in Linux or POSIX environment?Todd Stout2009-08-19T18:13:55Z2009-08-19T18:13:55Z<p>Take a look at <a href="http://linux.about.com/library/cmd/blcmdl1%5Fuuidgen.htm" rel="nofollow">uuidgen</a>.</p>
http://stackoverflow.com/questions/780614/dbunit-net-alternatives/1301634#13016342Answer by Todd Stout for DbUnit.NET AlternativesTodd Stout2009-08-19T18:04:47Z2009-08-19T18:04:47Z<p>I ran into this problem a few years ago. I was annoyed at the state of DBUnit.Net. It was missing features that were important to me. Thanks to <a href="http://www.ikvm.net/" rel="nofollow">IKVM</a>, it's not very difficult to use the normal Java version of DBUnit from dotnet. As a matter of fact, I'm running C# unit tests right now that are using the original DBUnit. Here's how I converted the java version of DBUnit into a .Net assembly:</p>
<ul>
<li>Download <a href="http://www.ikvm.net/" rel="nofollow">IKVM</a></li>
<li>Place the following jars into a common directory: commons-collections-3.2.jar commons-logging-1.1.jar junit-4.1.jar commons-lang-2.2.jar dbunit-2.2.jar sqljdbc.jar</li>
</ul>
<p>Now, from the command line with a working directory of the common jar directory:</p>
<pre><code>ikvmc -target:libary -keyfile:yoursignature.snk -debug -version:2.2.0.0 -out:dbunit.dll *.jar
</code></pre>
<p>You can get necessary libraries from the following locations:</p>
<ul>
<li>commons-* <a href="http://commons.apache.org/" rel="nofollow">Apache Commons</a></li>
<li>dbunit.jar <a href="http://www.dbunit.org/" rel="nofollow">DbUnit homepage</a></li>
<li>sqljdbc.jar <a href="http://msdn.microsoft.com/en-us/data/aa937724.aspx" rel="nofollow">MSDN</a></li>
<li>junit.jar <a href="http://www.junit.org/" rel="nofollow">Junit homepage</a></li>
</ul>
<p>If you are not using SQL Server as your database, then replace sqljdbc.jar with the appropriate JDBC driver. To use DBUnit directly from your .Net code, include dbunit.dll and the appropriate IKVM assemblies. </p>
<p>The jar versions I have given here are old. My notes on this subject are almost three years old. Newer versions will probably work, but I have not tried them.</p>
http://stackoverflow.com/questions/1290332/business-objects-frameworks-for-c-and-net/1290369#12903691Answer by Todd Stout for Business objects frameworks for C# and .netTodd Stout2009-08-17T20:53:00Z2009-08-17T20:53:00Z<p>The <a href="http://bltoolkit.net/" rel="nofollow">Business Logic Toolkit</a> has <em>some</em> overlap with CSLA.</p>
http://stackoverflow.com/questions/1278456/embedded-system-projects-for-experienced-programmer/1278911#12789111Answer by Todd Stout for Embedded system projects for experienced programmerTodd Stout2009-08-14T16:41:42Z2009-08-14T16:41:42Z<p>Consider contributing to Linux open source device driver efforts. This should satisfy your urge to go low-level, and help others in the process. I realize this is not strictly speaking embedded dev, but it may give you some of the same rush.</p>
http://stackoverflow.com/questions/1274033/random-crash-debugging/1274101#12741011Answer by Todd Stout for Random crash debuggingTodd Stout2009-08-13T19:30:52Z2009-08-13T19:56:01Z<p>Try running the program under <a href="http://msdn.microsoft.com/en-us/library/cc266321.aspx" rel="nofollow">Windbg</a>. When the crash occurs, you can probably get some specific info regarding the cause. You can startup the 3rd party process that hosts your dll and then attach the windbg debugger to the process. When the crash happens, windbg will likely halt and report some type of exception. You can then use the various windbg commands to look at thread stacks, etc.</p>
http://stackoverflow.com/questions/1261558/is-there-a-generally-accepted-idiom-for-indicating-c-code-can-throw-exceptions/1261766#12617661Answer by Todd Stout for Is there a generally accepted idiom for indicating C++ code can throw exceptions?Todd Stout2009-08-11T17:13:06Z2009-08-11T17:13:06Z<p>C++ defines a throw specification. See <a href="http://stackoverflow.com/questions/1055387/throw-keyword-in-functions-signature-c">this question</a>. It has been my experience in the past that microsoft compilers ignore the C++ throw spec. The whole notion of "checked exceptions" is controversial, especially in the Java realm. Many developers consider it a failed experiment. </p>
http://stackoverflow.com/questions/1926039/cross-platform-uComment by Todd Stout on cross platform U++Todd Stout2009-12-18T03:30:33Z2009-12-18T03:30:33ZMake it wiki and edit the question to contain a link to U++http://stackoverflow.com/questions/1817488/is-it-more-efficient-to-call-the-net-garbage-collector/1817496#1817496Comment by Todd Stout on Is it more efficient to call the .net Garbage collector?Todd Stout2009-11-30T01:58:12Z2009-11-30T01:58:12ZExplicitly calling GC guarantees nothing. If you have hard real-time requirements, then as you point out in your edit, perhaps managed code is not a good fit. However, if you really have real-time constraints, then C++ won't help either unless the underlying OS has latency guarantees, which Windows does not.http://stackoverflow.com/questions/1817488/is-it-more-efficient-to-call-the-net-garbage-collector/1817496#1817496Comment by Todd Stout on Is it more efficient to call the .net Garbage collector?Todd Stout2009-11-30T01:45:47Z2009-11-30T01:45:47ZWhy would a financial application need this?http://stackoverflow.com/questions/1600802/tools-for-generating-uml-class-diagram-from-c-source-or-dll/1600896#1600896Comment by Todd Stout on Tools for generating UML class diagram from C# source or dllTodd Stout2009-10-26T16:54:52Z2009-10-26T16:54:52ZYou only need Tex if you want latex support. I have never installed Tex. If you generate the HTML docs, there is a single diagram created for all classes in your doxygen project.http://stackoverflow.com/questions/783631/will-vb-net-be-phased-out/783728#783728Comment by Todd Stout on Will VB.NET be phased out?Todd Stout2009-10-21T02:39:52Z2009-10-21T02:39:52ZThe C# and VB.Net compiler teams have been merged within MS. At least that is the public info. VB.Net has always had great features. However, I think the focus within MS is favoring C#. Closures in VB.Net are less than optimal. That whole _ line continuation thing gets in the way. The commercial demand for terse code is making VB look less marketable. However, VB.Net, true to its roots, has always provided dynamic binding. MS acknowledges the importance of this. C# will allow you to opt-in to this paradigm in the next release of C#. Will Option Strict On still be a best best practice?http://stackoverflow.com/questions/632391/state-machine-frameworks-for-net/632461#632461Comment by Todd Stout on State Machine Frameworks for .NETTodd Stout2009-10-16T12:38:51Z2009-10-16T12:38:51ZI have used SMC for C# UI code. It has worked well for me. The state pattern is difficult to maintain over time. SMC's DSL makes maintenance easy.http://stackoverflow.com/questions/1274033/random-crash-debuggingComment by Todd Stout on Random crash debuggingTodd Stout2009-10-15T03:01:16Z2009-10-15T03:01:16ZOut of random curiosity since my answer was accepted, did windbg halt on a memory corruption or an out-of-memory or some other resource exception?http://stackoverflow.com/questions/1515947/writing-a-portable-domain-specific-languageComment by Todd Stout on writing a portable domain specific languageTodd Stout2009-10-15T01:50:00Z2009-10-15T01:50:00ZTake a look at what the original author of ANT has to say: <a href="http://web.archive.org/web/20040602210721/x180.net/Articles/Java/AntAndXML.html" rel="nofollow">web.archive.org/web/20040602210721/…</a>
Don't blindly follow the XML-Golden Hammer paradigm. If you are going to create a DSL read and written by actual people, please consider using one of the many nice lexer/parser tools instead of XML. There are many nice tools these days (like ANTLR) that make this practical. Writing lexers/parsers is not as painful now as it once was when lex/yacc was state-of-the-art.http://stackoverflow.com/questions/746079/anyone-have-experience-using-csla-under-monoComment by Todd Stout on Anyone have experience using CSLA under Mono?Todd Stout2009-09-30T23:27:07Z2009-09-30T23:27:07ZI have not had success yet. However, I have not spent much time on this. I tried a cursory run on mono 2.4 without Olive under fedora core. It failed due to a missing PresentationFramework assembly. I believe that Olive contains some support for this. Unfortunately I have had other priorities for a while now.http://stackoverflow.com/questions/1480252/the-future-of-net/1480281#1480281Comment by Todd Stout on The Future of .NetTodd Stout2009-09-26T02:48:02Z2009-09-26T02:48:02Z+1 My thoughts without the sarcasm! Both install bases are huge. Are dynamic languages the answer? I don't know, many think so. I'm not so sure. There needs to be a 'new kid on the block'.http://stackoverflow.com/questions/1205621/whats-the-most-widely-used-documentation-tool-for-c/1220841#1220841Comment by Todd Stout on Whats the most widely used documentation tool for C#?Todd Stout2009-09-25T17:06:53Z2009-09-25T17:06:53ZI have found doxygen to be an excellent alternative to Sandcastle for C# code. It's also at least one order of magnitude faster than sandcastle.http://stackoverflow.com/questions/662956/most-useful-free-net-libraries/793519#793519Comment by Todd Stout on Most useful free .NET libraries?Todd Stout2009-09-23T02:41:11Z2009-09-23T02:41:11Z@TrueWill Startup time has never been an issue for me. Do you find slow startup times after using ikvmc to compile the jars to assemblies?http://stackoverflow.com/questions/1414095/what-is-the-best-way-for-c-app-to-communicate-unix-c-appComment by Todd Stout on What is the best way for C# app to communicate unix c++ appTodd Stout2009-09-12T03:48:55Z2009-09-12T03:48:55ZIn this day of ORM infatuation, I think the Database as an integration mechanism is often overlooked.http://stackoverflow.com/questions/765335/fast-local-database/765489#765489Comment by Todd Stout on fast local databaseTodd Stout2009-09-10T02:52:19Z2009-09-10T02:52:19ZI'm a fan of SQL Server, but SQL Server Compact has some rather severe limitations regarding basic T-SQL support. There are enough restrictions that I do not think I could use it for an off-line data store for my standalone desktop apps that could later sync up with a central server. Yes, you can use it for this, but only if you limit your T-SQL to a tiny subset of the norm.http://stackoverflow.com/questions/1402531/deciding-on-a-language-python-or-java/1402613#1402613Comment by Todd Stout on Deciding on a language: Python or JavaTodd Stout2009-09-10T02:21:52Z2009-09-10T02:21:52ZThis type of mixing is plausible thanks to the wide adoption of the JVM. You can extend this notion even further and mix .Net CLR with JVM languages via IKVM. The commercial acceptance of virtual machines has opened the door for many types of inter-op that has historically been difficult. Long live the CLR and the JVM!