23
votes
12answers
6k views
How to properly clean up Excel interop objects in C#
I'm using the Excel interop in C# (ApplicationClass) and have placed the following code in my finally clause:
while (System.Runtime.InteropServices.Marshal.ReleaseComObject(excelSheet) != …
15
votes
10answers
3k views
Calling Bash Commands From Ruby
How do I call console/bash commands from inside of a Ruby Program? Also, how do I get output from these commands back into my program?
13
votes
6answers
714 views
Lisp+PHP ?
At the moment I use PHP for almost everything I develop for the Web but its linguistic limitations are starting to annoy me. However, as I developed some practices and maintain some PHP libraries that …
10
votes
1answer
123 views
Is PIA embedding broken in .NET 4.0 beta 2?
A while ago, I wrote some Word interop examples in Visual Studio beta 1, and set the reference to Microsoft.Office.Interop.Word to be embedded (set the "Embed Interop Types" = true in the reference …
9
votes
2answers
497 views
Java <-> Scala interop: transparent List and Map conversion
I am learning Scala and I have a Java project to migrate to Scala.
I want to migrate it by rewriting classes one-by-one and checking that new class didn't break the project.
This Java project uses …
9
votes
3answers
1k views
CUDA for .net?
I know that there are a lot of CUDA language bindings, such as PyCUDA, but are there any good bindings for .Net? The only one I've seen is this one, but I'd like to know if there are any others.
9
votes
8answers
2k views
learning c# Excel interop
What are some resources that will help get me up and running quickly with the Excel interop in C#?
9
votes
7answers
730 views
What is the best way and recommended practices for interacting with Lotus Notes from C#
In particular, I have to extract all the messages and attachments from Lotus Notes files in the fastest and most reliable way. Another point that may be relevant is that I need to do this from a …
8
votes
6answers
170 views
Is there a more painless way to call Win32 from C#?
Every few months I find myself needing to call Win32 from C#. Though I've done it a dozen times, I've usually forgotten the exact machinations, so I poke around the web or old code and figure out what …
8
votes
2answers
240 views
Using D programming language in a .NET context
I'm curious: has anyone used D together with .NET languages? Is that even possible? What kind of stuff is easier/makes sense to do in D that's hard to do in, say, C++/CLI?
8
votes
4answers
3k views
How well does WPF blend with XNA in real life?
I understand that there are several ways to blend XNA and WPF within the same application. I find it enticing to use WPF for all GUI and HUD stuff in my XNA games. Does anyone have any practical …
7
votes
4answers
801 views
Does C# clean up C++ allocated memory?
I have a hypothetical COM object with the following signature
void MemAlloc(ref double[] test, int membercount)
where the memory is allocated in C++ using new/malloc. Once this is in C#, using the …
7
votes
6answers
1k views
Referencing Google’s V8 engine from a .NET app
I'm building a .NET 3.5 application and have the need to evaluate JS code on the server - basically a user provided rule set that can work within a browser or on the server. Managed JS is not an …
7
votes
9answers
956 views
Hosting the .NET runtime in a Delphi Program
I was looking into using some .NET code from within a Delphi program, I will need to make my program extensible using .net assemblies and predefined functions (I already support regular DLLs).
After …
7
votes
11answers
649 views
Java and c# interoperability
I have two programs one in c# and another one in Java.
Those programs will, most probably, always run on the same machine.
What would be the best way to let them talk to each other ?
