{"id":19244332,"url":"https://github.com/nanoframework/system.io.streams","last_synced_at":"2026-05-11T03:26:33.642Z","repository":{"id":38243429,"uuid":"459566810","full_name":"nanoframework/System.IO.Streams","owner":"nanoframework","description":":package: System.IO.Streams library for .NET nanoFramework.","archived":false,"fork":false,"pushed_at":"2025-04-02T11:30:40.000Z","size":188,"stargazers_count":1,"open_issues_count":0,"forks_count":5,"subscribers_count":5,"default_branch":"main","last_synced_at":"2025-04-19T17:14:34.589Z","etag":null,"topics":["csharp","dotnet","hacktoberfest","library","nanoframework","streams"],"latest_commit_sha":null,"homepage":"https://www.nanoframework.net","language":"C#","has_issues":false,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/nanoframework.png","metadata":{"funding":{"open_collective":"nanoframework","github":"nanoframework"},"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE.md","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2022-02-15T12:21:44.000Z","updated_at":"2025-04-02T11:25:40.000Z","dependencies_parsed_at":"2023-02-08T08:15:26.439Z","dependency_job_id":"ad8038f9-9207-4cea-9d1f-7171fa182efc","html_url":"https://github.com/nanoframework/System.IO.Streams","commit_stats":{"total_commits":108,"total_committers":6,"mean_commits":18.0,"dds":0.5092592592592593,"last_synced_commit":"c673ebdd2e6e54ae0fff015ffa136b4ea5341a4c"},"previous_names":[],"tags_count":37,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nanoframework%2FSystem.IO.Streams","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nanoframework%2FSystem.IO.Streams/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nanoframework%2FSystem.IO.Streams/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nanoframework%2FSystem.IO.Streams/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/nanoframework","download_url":"https://codeload.github.com/nanoframework/System.IO.Streams/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":250032464,"owners_count":21363839,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["csharp","dotnet","hacktoberfest","library","nanoframework","streams"],"created_at":"2024-11-09T17:22:57.945Z","updated_at":"2026-01-08T18:02:42.306Z","avatar_url":"https://github.com/nanoframework.png","language":"C#","funding_links":["https://opencollective.com/nanoframework","https://github.com/sponsors/nanoframework"],"categories":[],"sub_categories":[],"readme":"[![Quality Gate Status](https://sonarcloud.io/api/project_badges/measure?project=nanoframework_System.IO.Streams\u0026metric=alert_status)](https://sonarcloud.io/dashboard?id=nanoframework_System.IO.Streams) [![Reliability Rating](https://sonarcloud.io/api/project_badges/measure?project=nanoframework_System.IO.Streams\u0026metric=reliability_rating)](https://sonarcloud.io/dashboard?id=nanoframework_System.IO.Streams) [![NuGet](https://img.shields.io/nuget/dt/nanoFramework.System.IO.Streams.svg?label=NuGet\u0026style=flat\u0026logo=nuget)](https://www.nuget.org/packages/nanoFramework.System.IO.Streams/) [![#yourfirstpr](https://img.shields.io/badge/first--timers--only-friendly-blue.svg)](https://github.com/nanoframework/Home/blob/main/CONTRIBUTING.md) [![Discord](https://img.shields.io/discord/478725473862549535.svg?logo=discord\u0026logoColor=white\u0026label=Discord\u0026color=7289DA)](https://discord.gg/gCyBu8T)\n\n![nanoFramework logo](https://raw.githubusercontent.com/nanoframework/Home/main/resources/logo/nanoFramework-repo-logo.png)\n\n-----\n\n# Welcome to the .NET **nanoFramework** System.IO.Streams Library repository\n\n## Build status\n\n| Component | Build Status | NuGet Package |\n|:-|---|---|\n| System.IO.Streams | [![Build Status](https://dev.azure.com/nanoframework/System.IO.Streams/_apis/build/status/nanoframework.System.IO.Streams?repoName=nanoframework%2FSystem.IO.Streams\u0026branchName=main)](https://dev.azure.com/nanoframework/System.IO.Streams/_build/latest?definitionId=94\u0026repoName=nanoframework%2FSystem.IO.Streams\u0026branchName=main) | [![NuGet](https://img.shields.io/nuget/v/nanoFramework.System.IO.Streams.svg?label=NuGet\u0026style=flat\u0026logo=nuget)](https://www.nuget.org/packages/nanoFramework.System.IO.Streams/) |\n\n## Usage examples\n\n### Using a MemoryStream\n\nWrite data using memory as a backing store.\n\n```csharp\nusing MemoryStream memStream = new MemoryStream(100);\n\nstring test = \"nanoFramework Test\";\nmemStream.Write(Encoding.UTF8.GetBytes(test), 0, test.Length);\nmemStream.Flush();\n```\n\nReset stream position.\n\n```csharp\nmemStream.Seek(0, SeekOrigin.Begin);\n```\n\nRead from from stream.\n\n```csharp\nbyte[] readbuff = new byte[20];\nmemStream.Read(readbuff, 0, readbuff.Length);\n\nstring testResult = new string(Encoding.UTF8.GetChars(readbuff));\n```\n\n## Feedback and documentation\n\nFor documentation, providing feedback, issues and finding out how to contribute please refer to the [Home repo](https://github.com/nanoframework/Home).\n\nJoin our Discord community [here](https://discord.gg/gCyBu8T).\n\n## Credits\n\nThe list of contributors to this project can be found at [CONTRIBUTORS](https://github.com/nanoframework/Home/blob/main/CONTRIBUTORS.md).\n\n## License\n\nThe **nanoFramework** Class Libraries are licensed under the [MIT license](LICENSE.md).\n\n## Code of Conduct\n\nThis project has adopted the code of conduct defined by the Contributor Covenant to clarify expected behaviour in our community.\nFor more information see the [.NET Foundation Code of Conduct](https://dotnetfoundation.org/code-of-conduct).\n\n## .NET Foundation\n\nThis project is supported by the [.NET Foundation](https://dotnetfoundation.org).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnanoframework%2Fsystem.io.streams","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fnanoframework%2Fsystem.io.streams","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnanoframework%2Fsystem.io.streams/lists"}