Nino 3.9.17
See the version list below for details.
dotnet add package Nino --version 3.9.17
NuGet\Install-Package Nino -Version 3.9.17
<PackageReference Include="Nino" Version="3.9.17" />
<PackageVersion Include="Nino" Version="3.9.17" />
<PackageReference Include="Nino" />
paket add Nino --version 3.9.17
#r "nuget: Nino, 3.9.17"
#:package Nino@3.9.17
#addin nuget:?package=Nino&version=3.9.17
#tool nuget:?package=Nino&version=3.9.17
<div align="center">
Nino
Ultimate high-performance binary serialization library for C#
🌐 Official Website • 📚 Documentation • 🚀 Performance • 🇨🇳 中文
Fast, flexible, and effortless C# binary serialization
</div>
✨ Why Choose Nino?
<table> <tr> <td width="25%" align="center"> <h3>🔧 Seamless Integration</h3> <p>Leverages C# Source Generators for automatic compile-time code generation. Zero manual setup required.</p> </td> <td width="25%" align="center"> <h3>⚡ Blazing Performance</h3> <p>Engineered for high-throughput, low-latency scenarios with minimal GC pressure and memory allocation.</p> </td> <td width="25%" align="center"> <h3>🎮 Unity Compatible</h3> <p>Works seamlessly with Unity projects and native Unity data types like Vector3 and Quaternion.</p> </td> <td width="25%" align="center"> <h3>🛠️ Advanced Features</h3> <p>Handles complex scenarios like polymorphism, versioning, custom constructors, and private member serialization.</p> </td> </tr> </table>
🎯 Core Features
🚀 Performance & Reliability
- High-Speed Serialization: Consistently ranks among the fastest C# binary serializers
- Low Memory Footprint: Minimal GC pressure and memory allocation
- By-Reference Deserialization: Deserialize directly into existing objects to eliminate allocation overhead
- Thread-Safe Operations: Fully concurrent serialization/deserialization without external locking
- Data Integrity: Built-in type checking ensures data consistency
🧩 Comprehensive Type Support
- Primitives & Built-ins: Full support for all C# primitive types (
int,float,DateTime, etc.) - Modern C# Features:
records,record structs,structs,classes, and generics - Collections: Any
IEnumerable<T>includingList<T>,Dictionary<TKey,TValue>,HashSet<T>,ConcurrentDictionary<TKey,TValue> - Advanced Generics: Complex nested types like
Dictionary<string, List<CustomType[]>> - Value Types:
ValueTuple,Tuple,KeyValuePair<TKey,TValue>,Nullable<T>
🎮 Unity & Cross-Platform
- Unity Native Types:
Vector3,Quaternion,Matrix4x4, and other Unity-specific data types - Cross-Assembly Support: Serialize types across different .NET assemblies and projects
- Platform Agnostic: Works seamlessly across different .NET implementations
⚙️ Advanced Control
- Polymorphism: Interface and abstract class serialization with type preservation
- Custom Constructors:
[NinoConstructor]for immutable types and factory patterns - Versioning & Migration:
[NinoMember]ordering and[NinoFormerName]for backward compatibility - Privacy Control:
[NinoType(true)]to include private/protected members - Selective Serialization:
[NinoIgnore]to exclude specific fields - String Optimization:
[NinoUtf8]for efficient UTF-8 string handling
📖 Quick Start
Installation
Standard .NET Projects:
dotnet add package Nino
Unity Projects (via OpenUPM):
openupm add com.jasonxudeveloper.nino
Basic Usage
[NinoType]
public class GameData
{
public int Score;
public string PlayerName;
public DateTime LastPlayed;
}
// Serialize
var data = new GameData { Score = 1000, PlayerName = "Player1", LastPlayed = DateTime.Now };
byte[] bytes = NinoSerializer.Serialize(data);
// Deserialize
var restored = NinoDeserializer.Deserialize<GameData>(bytes);
📊 Performance
Nino consistently delivers exceptional performance across various scenarios. See detailed benchmarks and comparisons with other popular serialization libraries.
🤝 Community & Support
<div align="center">
🐛 Report Issues • 💡 Feature Requests • 🔀 Contribute
</div>
<div align="center">
Made with ❤️ by JasonXuDeveloper
Licensed under MIT License
</div>
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net5.0 was computed. net5.0-windows was computed. net6.0 is compatible. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. net9.0 was computed. net9.0-android was computed. net9.0-browser was computed. net9.0-ios was computed. net9.0-maccatalyst was computed. net9.0-macos was computed. net9.0-tvos was computed. net9.0-windows was computed. net10.0 was computed. net10.0-android was computed. net10.0-browser was computed. net10.0-ios was computed. net10.0-maccatalyst was computed. net10.0-macos was computed. net10.0-tvos was computed. net10.0-windows was computed. |
| .NET Core | netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
| .NET Standard | netstandard2.1 is compatible. |
| MonoAndroid | monoandroid was computed. |
| MonoMac | monomac was computed. |
| MonoTouch | monotouch was computed. |
| Tizen | tizen60 was computed. |
| Xamarin.iOS | xamarinios was computed. |
| Xamarin.Mac | xamarinmac was computed. |
| Xamarin.TVOS | xamarintvos was computed. |
| Xamarin.WatchOS | xamarinwatchos was computed. |
-
.NETStandard 2.1
- Nino.Generator (>= 3.9.17)
- Nino.Serialization (>= 3.9.17)
-
net6.0
- Nino.Generator (>= 3.9.17)
- Nino.Serialization (>= 3.9.17)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
| Version | Downloads | Last Updated |
|---|---|---|
| 4.0.0-beta.47 | 52 | 2/8/2026 |
| 4.0.0-beta.46 | 51 | 2/7/2026 |
| 4.0.0-beta.44 | 50 | 2/7/2026 |
| 4.0.0-beta.43 | 392 | 11/19/2025 |
| 4.0.0-beta.42 | 222 | 11/14/2025 |
| 4.0.0-beta.40 | 165 | 11/4/2025 |
| 4.0.0-beta.38 | 156 | 10/29/2025 |
| 4.0.0-beta.37 | 157 | 10/28/2025 |
| 4.0.0-beta.36 | 82 | 10/25/2025 |
| 4.0.0-beta.35 | 227 | 10/15/2025 |
| 4.0.0-beta.34 | 153 | 10/14/2025 |
| 4.0.0-beta.33 | 85 | 10/12/2025 |
| 4.0.0-beta.32 | 87 | 10/11/2025 |
| 4.0.0-beta.31 | 86 | 10/11/2025 |
| 4.0.0-beta.30 | 81 | 10/11/2025 |
| 4.0.0-beta.29 | 83 | 10/11/2025 |
| 4.0.0-beta.28 | 60 | 10/11/2025 |
| 4.0.0-beta.27 | 124 | 10/10/2025 |
| 4.0.0-beta.26 | 131 | 10/10/2025 |
| 3.9.17 | 228 | 7/30/2025 |