Sublime Forum

Use C# Class library as Plugin instead of Python Plugin

#1

Hi All,

I have been using Sublime Text since version 1 but it was not untill last 2 weeks that i started to fully explore all the features of the editor.

I wanted to know if there would be any way to use a CSharp Class library as Plugin for Sublime Text.
Normally we write Python .py] Plugins and assign Keybindings to various Commands that we write in the Python Plugin file.

I have been a DotNet developer since past 5 years and am totally new to Python so this functionality to use CSharp DLL files as Plugin would be a boon for me.

Any idea or help would be appreciated.

Regards,
Sanket S

0 Likes

#2

Sanket,

No. Not that I know of. And I’ve messed with a LOT of Python/C# stuff. But not recently. Been doing web stuff the last year and a half.
ST is written in C++, AFAIK, and does not run on .Net, (or Mono), or know anything about IL code, much less raw C# code.
But things move fast in the Python world sometimes, and someone MAY have actually written a convenient binding to dynamic C# by now. Would be nice, but I seriously doubt it. You might check in with the IronPython guys. http://ironpython.codeplex.com/ (IronPython is just C# under the hood.)
If anybody knows about any bindings to/from C++/CPython/C#, they would.
Regards,
Dave

0 Likes

#3

Thanks a lot for your reply , checking out Iron Python now :smile:

0 Likes