So, I have something written in Java, and I want to extend it in Scala...The issue I\'m running into is that Scala isn\'t seeing methods I need.
Here\'s an extract from a REPL session that hopefully explains what I want to achieve: user> (Integer/parseInt \"1\")
I\'d like to write a plugin (DLL) for a C++ application but I\'d like to use C#.Is this possible?I don\'t have access to the C++ code so I can\'t modify it.
My application (base application is MFC interop with C++/CLI but it also contains a lot of C#, Windows Forms, WPF) has has a handle leak. Shortly after application start I can see the handle count in
I\'m trying to write a C# application that will find a document open in MS Word and write some text to the end of the document using word interop. Is this possible?
I have an arrangement where I am replacing legacy code with a shiny new WCF based service. I have a dll (a.dll) that calls a dll that I am replacing (b.dll)
C declaration: struct t_name { char first_name[128]; char nickname[128]; int32_t words[7]; uint16_t parts_of_speech[7];
I am in the process of writing a small library that will perform a MailMerge on a word 2003 .DOT document in C#. I am able to retrieve and replace all of the document body fields like so:
I\'m trying to create a very basic COM dll for inclusion in a C# project, to then use to wrap up some C++ functionality into a COM module for inclusion in a C# project (the language used by the rest o
From C# I need to setup a callback to C++ where the data received with the callback originates from structs with inheritance (See the distilled code below in the C++ section).