Todd Stout

912
Reputation
778 views

Registered User

Name Todd Stout
Member for 10 months
Seen 8 hours ago
Website
Location Dallas, TX USA
Age 39
Email: todd.tstout@gmail.com
Nov
30
comment Is it more efficient to call the .net Garbage collector?
Explicitly 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.
Nov
30
comment Is it more efficient to call the .net Garbage collector?
Why would a financial application need this?
Nov
23
revised Properly handling platform specifics (unix/windows) in C?
added 122 characters in body
Nov
23
answered Properly handling platform specifics (unix/windows) in C?
Nov
21
answered How to configure log4net programmatically from scratch (no config)
Nov
4
revised writing a portable domain specific language
edited body
Nov
2
answered functional programming: immutable data structure efficiency
Oct
26
comment Tools for generating UML class diagram from C# source or dll
You 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.
Oct
25
revised Will VB.NET be phased out?
added 42 characters in body; added 68 characters in body; added 64 characters in body; edited body
Oct
25
revised Will VB.NET be phased out?
added 4 characters in body; added 133 characters in body
Oct
22
revised Decompiling EXE to ASM
added 128 characters in body
Oct
22
answered Decompiling EXE to ASM
Oct
22
revised Tools for generating UML class diagram from C# source or dll
added 16 characters in body
Oct
22
revised Is there a .Net analog of the functionality provided by java.lang.instrument?
added 99 characters in body; edited tags
Oct
21
answered Buffer overflow - Windows vs Unix
Oct
21
revised Tools for generating UML class diagram from C# source or dll
deleted 3 characters in body
Oct
21
revised Tools for generating UML class diagram from C# source or dll
added 189 characters in body
Oct
21
revised Tools for generating UML class diagram from C# source or dll
added 89 characters in body; deleted 125 characters in body
Oct
21
answered Tools for generating UML class diagram from C# source or dll
Oct
21
revised Will VB.NET be phased out?
edited body
Oct
21
revised Will VB.NET be phased out?
deleted 7 characters in body
Oct
21
answered Will VB.NET be phased out?
Oct
21
comment Will VB.NET be phased out?
The 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?
Oct
21
revised Is ANTLR an appropriate tool to serialize/deserialize a binary data format?
edited tags
Oct
21
revised How do you use Func<> and Action<> when designing applications?
added 10 characters in body
Oct
21
answered Refactoring Guard Clauses
Oct
16
comment State Machine Frameworks for .NET
I 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.
Oct
15
answered Execute sql file on a SQL Server using C#
Oct
15
revised writing a portable domain specific language
deleted 20 characters in body
Oct
15
revised writing a portable domain specific language
deleted 134 characters in body
Oct
15
comment Random crash debugging
Out 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?
Oct
15
revised writing a portable domain specific language
added 109 characters in body; added 29 characters in body
Oct
15
answered writing a portable domain specific language
Oct
15
comment writing a portable domain specific language
Take a look at what the original author of ANT has to say: web.archive.org/web/20040602210721/… 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.
Oct
14
revised Unit testing with an input file
added proper dispose
Oct
14
answered How to do Inheritance Modeling in Relational Databases ?
Oct
14
accepted Unit testing with an input file
Oct
14
answered Unit testing with an input file
Oct
13
answered ruby on rails state machines
Oct
8
answered How do you use Func<> and Action<> when designing applications?
Oct
7
answered Database design software for a student?
Sep
30
comment Anyone have experience using CSLA under Mono?
I 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.
Sep
29
awarded  Civic Duty
Sep
29
answered How do I generate const or test data in C# ?
Sep
26
comment The Future of .Net
+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'.
Sep
26
answered The Future of .Net
Sep
25
comment Whats the most widely used documentation tool for C#?
I 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.
Sep
24
accepted Business objects frameworks for C# and .net
Sep
23
comment Most useful free .NET libraries?
@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?
Sep
17
accepted DbUnit.NET Alternatives