Invoke function from DLL (c#) in Oracle Forms

前端 未结 1 1590
孤街浪徒
孤街浪徒 2021-01-26 09:42

I\'ve got big problem with invoking method from DLL in Oracle Forms 6i. DLL has been written in

C#, and it is code:

using System;
using System.Collectio         


        
1条回答
  •  悲哀的现实
    2021-01-26 10:10

    register_function requires a dll entry point and you cannot generate that in managed code.

    You can write a C++/CLi wrapper DLL to have native entry points for your managed code but if you are just starting from scratch then why not just write a plain native dll.

    0 讨论(0)
提交回复
热议问题