ThinBasic.NET
1.0.4
There is a newer version of this package available.
See the version list below for details.
See the version list below for details.
dotnet add package ThinBasic.NET --version 1.0.4
NuGet\Install-Package ThinBasic.NET -Version 1.0.4
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="ThinBasic.NET" Version="1.0.4" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="ThinBasic.NET" Version="1.0.4" />
<PackageReference Include="ThinBasic.NET" />
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add ThinBasic.NET --version 1.0.4
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: ThinBasic.NET, 1.0.4"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package ThinBasic.NET@1.0.4
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=ThinBasic.NET&version=1.0.4
#tool nuget:?package=ThinBasic.NET&version=1.0.4
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
ThinBasic.NET
.Net Wrapper for ThinBasic Programming Language.
Environment
- Windows 7 above (recommend)
- ThinBasic 1.10
- .NET 6
NuGet Installation
PM> Install-Package ThinBasic.NET
How to Build
Building requires Visual Studio 2022 Community and test under Windows 10.
Example
string scriptPath = @"Sample\test.tbasic";
string scriptBuffer = File.ReadAllText(scriptPath, Encoding.UTF8);
int bufferType = (int)Enums.BufferType.IsScript;
int callingProgram = (int)Enums.CallingProgram.GUI;
int hThinbasic = Thinbasic.Init(0, 0, "thinbasic");
int result = Thinbasic.Run(hThinbasic, scriptBuffer, bufferType, 0, 0, 0, 0, callingProgram, 0);
Thinbasic.Release(0);
License
Copyright (c) 2017-2021 Ji-Feng Tsai.
ThinBasic Copyright (c) Eros Olmi ThinBASIC Interpreter.
Code released under the MIT license.
TODO
- More Functions defined in thinCore.dll
- More examples
Donation
If this application help you reduce time to coding, you can give me a cup of coffee 😃
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net5.0-windows7.0 is compatible. net6.0-windows was computed. net6.0-windows7.0 is compatible. net7.0-windows was computed. net8.0-windows was computed. net9.0-windows was computed. net10.0-windows was computed. |
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
-
net5.0-windows7.0
- No dependencies.
-
net6.0-windows7.0
- No dependencies.
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
1.0.4