I need to access a C# dll which is built in .net core (.NETCore version = v1.1). I tried in the below way but I am getting the import error.
import clr
clr.AddReference("dllname") - No error
from dllname import *
Got Import Error exception saying no module named dllname.
Note: I tried in both Iron python and python both are giving me the same exception.

