Serving the Quantitative Finance Community

Search found 4 matches

by someguy2
October 1st, 2002, 9:51 pm
Forum: Programming and Software Forum
Topic: C# and .NET
Replies: 47
Views: 196013

C# and .NET

The real problem with productivity when using C++ is you have to spend all your time writing into newsgroups defending the productivity of the language.
by someguy2
September 28th, 2002, 5:58 pm
Forum: Programming and Software Forum
Topic: C# and .NET
Replies: 47
Views: 196013

C# and .NET

<t>The MSIL does get compiled at some point. A JIT (just in time) compiler compiles the code the first time a method is invoked during a run of the application. From that point forward (during this particular run of the application) the compiled code is used. There is also an option to compile code ...
by someguy2
September 28th, 2002, 7:34 am
Forum: Programming and Software Forum
Topic: Creating Excel Addins or VBA callable dlls from Visual Studio
Replies: 10
Views: 191743

Creating Excel Addins or VBA callable dlls from Visual Studio

<t>J# sucks - I think it's only Java 1.1 compatible and even then it's lacking in some libraries. If your code is simple it might work. I haven't found a project yet it would work on.If you do get it to compile in J# (or any .Net language), adding a COM wrapper is very easy - the online documentatio...
by someguy2
September 28th, 2002, 7:21 am
Forum: Programming and Software Forum
Topic: C# and .NET
Replies: 47
Views: 196013

C# and .NET

<t>I've been developing a modeling and trading framework for a small company. Initially I started it in C++ but abandonded C++ in favor of .Net languages because of the development speed. I still have some unmanaged C++ to interface to datafeeds, some legacy code and third party packages. I haven't ...