![]() |
VOOZH | about |
dotnet add package MessageStudio --version 1.1.1
NuGet\Install-Package MessageStudio -Version 1.1.1
<PackageReference Include="MessageStudio" Version="1.1.1" />
<PackageVersion Include="MessageStudio" Version="1.1.1" />Directory.Packages.props
<PackageReference Include="MessageStudio" />Project file
paket add MessageStudio --version 1.1.1
#r "nuget: MessageStudio, 1.1.1"
#:package MessageStudio@1.1.1
#addin nuget:?package=MessageStudio&version=1.1.1Install as a Cake Addin
#tool nuget:?package=MessageStudio&version=1.1.1Install as a Cake Tool
Modern implementation of (some) EPD MessageStudio file formats written in managed C#
From Binary
byte[] data = File.ReadAllBytes("path/to/file.msbt");
Msbt msbt = Msbt.FromBinary(data);
From Yaml
string yaml = File.ReadAllText("path/to/file.msbt.yml");
Msbt msbt = Msbt.FromYaml(yaml);
Write Binary (to Stream)
/* ... */
using MemoryStream ms = new();
msbt.WriteBinary(
ms,
endianness: Endian.Little,
encoding: Encoding.Unicode // Encoding.UTF8 is not supported!
);
To Binary (to Bytes)
Note: This method creates a copy of the written bytes.<br/> Use
WriteBinary(in Stream, TextEncoding?, Endianness?)if writing to a stream is possible.
/* ... */
byte[] data = msbt.ToBinary(
endianness: Endian.Little,
encoding: Encoding.Unicode // Encoding.UTF8 is not supported!
);
To Yaml
/* ... */
string yaml = msbt.ToYaml();
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net8.0 net8.0 is compatible. net8.0-android net8.0-android was computed. net8.0-browser net8.0-browser was computed. net8.0-ios net8.0-ios was computed. net8.0-maccatalyst net8.0-maccatalyst was computed. net8.0-macos net8.0-macos was computed. net8.0-tvos net8.0-tvos was computed. net8.0-windows net8.0-windows was computed. net9.0 net9.0 was computed. net9.0-android net9.0-android was computed. net9.0-browser net9.0-browser was computed. net9.0-ios net9.0-ios was computed. net9.0-maccatalyst net9.0-maccatalyst was computed. net9.0-macos net9.0-macos was computed. net9.0-tvos net9.0-tvos was computed. net9.0-windows net9.0-windows was computed. net10.0 net10.0 was computed. net10.0-android net10.0-android was computed. net10.0-browser net10.0-browser was computed. net10.0-ios net10.0-ios was computed. net10.0-maccatalyst net10.0-maccatalyst was computed. net10.0-macos net10.0-macos was computed. net10.0-tvos net10.0-tvos was computed. net10.0-windows net10.0-windows was computed. |
This package is not used by any NuGet packages.
This package is not used by any popular GitHub repositories.
| Version | Downloads | Last Updated | |
|---|---|---|---|
| 1.1.1 | 1,384 | 6/13/2024 | |
| 1.1.0 | 455 | 4/23/2024 | |
| 1.0.7 | 290 | 4/6/2024 | |
| 1.0.6 | 226 | 4/6/2024 | 1.0.6 is deprecated because it has critical bugs. |
| 1.0.5 | 256 | 2/21/2024 | |
| 1.0.4 | 341 | 2/21/2024 | |
| 1.0.3 | 313 | 1/17/2024 | |
| 1.0.2 | 248 | 1/15/2024 | |
| 1.0.1 | 265 | 1/6/2024 | |
| 1.0.0 | 287 | 1/1/2024 | |
| 0.2.2-beta | 237 | 12/13/2023 | |
| 0.2.1-beta | 247 | 12/7/2023 | |
| 0.2.0-beta | 176 | 12/7/2023 |