{"id":50301848,"url":"https://github.com/aspose-cells/agentic-net-examples","last_synced_at":"2026-05-28T13:07:18.257Z","repository":{"id":355563313,"uuid":"1159803428","full_name":"aspose-cells/agentic-net-examples","owner":"aspose-cells","description":"Agent-driven repository of Aspose.Cells for .NET examples, validated to compile and run successfully, with an agents.md guide for AI coding agents.","archived":false,"fork":false,"pushed_at":"2026-05-26T12:07:02.000Z","size":12556,"stargazers_count":0,"open_issues_count":27,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-05-26T12:07:53.788Z","etag":null,"topics":["agentic","ai-agents","aspose-cells","code-examples","code-generation","csharp","dotnet","excel","spreadsheet"],"latest_commit_sha":null,"homepage":"https://products.aspose.com/cells/net/","language":"C#","has_issues":true,"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/aspose-cells.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","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,"notice":null,"maintainers":null,"copyright":null,"agents":"agents.md","dco":null,"cla":null}},"created_at":"2026-02-17T07:12:51.000Z","updated_at":"2026-05-12T09:58:17.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/aspose-cells/agentic-net-examples","commit_stats":null,"previous_names":["aspose-cells/agentic-net-examples"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/aspose-cells/agentic-net-examples","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aspose-cells%2Fagentic-net-examples","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aspose-cells%2Fagentic-net-examples/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aspose-cells%2Fagentic-net-examples/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aspose-cells%2Fagentic-net-examples/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/aspose-cells","download_url":"https://codeload.github.com/aspose-cells/agentic-net-examples/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aspose-cells%2Fagentic-net-examples/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33609353,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-05-28T02:00:06.440Z","response_time":99,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"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":["agentic","ai-agents","aspose-cells","code-examples","code-generation","csharp","dotnet","excel","spreadsheet"],"created_at":"2026-05-28T13:07:17.606Z","updated_at":"2026-05-28T13:07:18.245Z","avatar_url":"https://github.com/aspose-cells.png","language":"C#","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Aspose.Cells for .NET Examples\n\nAI-friendly repository containing validated C# examples for Aspose.Cells for .NET API.\n\n## Overview\n\nThis repository provides working code examples demonstrating Aspose.Cells for .NET capabilities. All examples are automatically generated, compiled, and validated using the Aspose.Cells Examples Generator.\n\n## Repository Structure\n\nExamples are organized by feature category:\n\n- `cells-data/`\n- `comments-and-notes/`\n- `conversion/`\n- `document-properties/`\n- `encryption-and-protection/`\n- `globalization-and-localization/`\n- `macro-project/`\n- `manage-formulas/`\n- `manage-workbook/`\n- `managing-ranges/`\n- `open-workbook/`\n- `queries-and-connections/`\n- `save-workbook/`\n- `slicer/`\n- `smart-markers/`\n- `sparkline/`\n- `workbook-merger/`\n- `working-with-html/`\n- `working-with-images/`\n- `working-with-json/`\n- `working-with-pdf/`\n- `working-with-tables/`\n- `working-with-worksheets/`\n- `xml-maps/`\n\nEach category contains standalone `.cs` files that can be compiled and run independently.\n\n## Getting Started\n\n### Prerequisites\n\n- .NET SDK (net10.0 or compatible version)\n- Aspose.Cells for .NET NuGet package\n- Valid Aspose license (for production use)\n\n### Running Examples\n\nEach example is a self-contained C# file. To run an example:\n\ncd \u003cCategoryFolder\u003e\ndotnet new console -o ExampleProject\ncd ExampleProject\ndotnet add package Aspose.Cells\n# Copy the example .cs file as Program.cs\ndotnet build\n\ndotnet run\n\n## Code Patterns\n\n### Loading a Workbook\n\nusing (Workbook workbook = new Workbook(\"input.xlsx\"))\n{\n    // Work with workbook\n}\n\n### Accessing Worksheets and Cells\n\nWorksheet worksheet = workbook.Worksheets[0];\nCell cell = worksheet.Cells[\"A1\"];\ncell.PutValue(\"Hello World\");\n\n### Saving a Workbook\n\nworkbook.Save(\"output.xlsx\");\n\n### Important Notes\n\n- Zero-based indexing: Worksheets use 0-based indexing (Worksheets[0] = first worksheet)\n- Core object: Aspose.Cells works with Workbook instead of Document\n- Deterministic cleanup: Use using statements where applicable\n\n## Contributing\n\nExamples in this repository are automatically generated. To suggest new examples:\n\n1. Submit tasks to the Aspose.Cells Examples Generator\n2. Generated examples are validated via compilation\n3. Passing examples are included in repository updates\n\n## Related Resources\n\n- [Aspose.Cells for .NET Documentation](https://docs.aspose.com/cells/net/)  \n- [API Reference](https://reference.aspose.com/cells/net/)  \n- [Aspose Forum](https://forum.aspose.com/c/cells/9)  \n- [AI Agent Guide (agents.md)](./agents.md)  \n\n## License\n\nAll examples use Aspose.Cells for .NET and require a valid license for production use. See licensing page on Aspose website.\n\n---\n\nThis repository is maintained by automated code generation. For AI-friendly guidance, see agents.md.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Faspose-cells%2Fagentic-net-examples","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Faspose-cells%2Fagentic-net-examples","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Faspose-cells%2Fagentic-net-examples/lists"}