Is it possible to call c# from IRON Python plugin. If yes kindly share the details.
Hi Karthik,
you can compile your C# code in dlls and import them in IronPython using clr
clr
import clr clr.AddReference("Ansys.ACT.Core") import Ansys.ACT.Core
thanks @Ayush Kumar for the reply.