- Aug
- 2,799
- 144
Using the traditional SDK with PureBasic to develope a plugin, I could...
...and then I could do things like...
How can I do this using C# and the .NET Plugin SDK for TCC?
If the anwser is contained in DotNetPluginSDK.cs,
or DotNetPluginGuide.md,
then I have missed it.
Joe
Code:
ImportC "takecmd.lib"
Command_(*lpszString, nReserved) As "Command"
Evaluate_(*lpszString) As "Evaluate"
SetEVariable_(*lpszString) As "SetEVariable"
EndImport
...and then I could do things like...
Code:
Command_("echo USAGE: Test %_year-1960",0)
Command_("set abc=123", 0)
Command_("echo " + theResult, 0)
Command_("type tmp:",0)
Command_("type " + theFile + " > tmp:",0)
How can I do this using C# and the .NET Plugin SDK for TCC?
If the anwser is contained in DotNetPluginSDK.cs,
or DotNetPluginGuide.md,
then I have missed it.
Joe