Skip to content

rarnu/ison-csharp

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

ISON-C#

A minimal, token-efficient data format optimized for LLMs and Agentic AI workflows.

The origin project and why (HERE)

Installation

C#

$ dotnet add package Ison --version 1.0.1

you may find the package HERE

Usage Examples

C#

var doc = Ison.Parse(@"
table.users
id:int name:string active:bool
1 Alice true
2 Bob false
");
var (users, ok) = doc.Get("users");
Assert.True(ok);
Debug.Assert(users != null, nameof(users) + " != null");
foreach (var row in users.Rows)
{
    var (name, _) = row["name"].AsString();
    _testOutputHelper.WriteLine(name);
}

About

The C# implementation of ISON

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors

Languages