#a fun little package for Python
pip install pythonnet
# The package allows the use of c# dll files to be used in python
# Note works only for the .Net Framework
example code:
import os
import clr
pwd = os.getcwd()+"/"
# remeber the 2 files have to in the same dir
clr.AddReference(pwd+"PythonTest1.dll")
# PythonTest1 is also my namespce
# remeber to import the name space to be able to import the
# Class or methods or other thing
# Yes other things, you can do a lot with this LIB
from PythonTest1 import Calculator
cl = Calculator() #Class Name
print("Add "+str(cl.add(1, 1)))
print("sub "+str(cl.subtract(1, 19999999)))