Tagged Questions

5
votes
2answers
250 views

calling methods on .net object from coldfusion

I am trying to instantiate and call methods on a .net object created from a dll from coldfusion. This works when I call methods with one or zero arguments but fails with - ...
5
votes
2answers
1k views

About using F# to create a Matrix assembly usable from C#

There are no builtin matrix functions in C#, but there are in the F# powerpack. Rather than using a third party or open source C# library, I wonder about rolling my own in F#, and exposing the useful ...
2
votes
4answers
219 views

Create Indexer in VB.NET which can be used from C#

Can I create a class in VB.NET which can be used from C# like that: myObject.Objects[index].Prop = 1234; Sure I could create a property which returns an array. But the requirement is that the index ...
1
vote
1answer
410 views

string array C# Interoperability to C++ dll; string array from C# to C++ dll which sets the data and sends it back to c#

this is what i have so far... basically I use the c++ dll to populate the tree components set them and then return them to the managed csharp code. I am running into problems and have tried the ...
1
vote
4answers
462 views

C# dll which is inter-operable with php and java

I need to create a dll in C sharp which is interoperable with php and Tomcat/Java webservices. Will the normal C# class library help me for this? Thanks, John