{"id":18892202,"url":"https://github.com/anas-araid/iniserializer","last_synced_at":"2026-02-26T06:30:13.753Z","repository":{"id":95041964,"uuid":"136032467","full_name":"anas-araid/INISerializer","owner":"anas-araid","description":" Class that serializes an object into a string that can be saved to an ini file","archived":false,"fork":false,"pushed_at":"2018-06-11T13:31:52.000Z","size":4,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"master","last_synced_at":"2024-12-31T06:29:30.087Z","etag":null,"topics":["c-sharp","csharp","ini","serializer"],"latest_commit_sha":null,"homepage":null,"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/anas-araid.png","metadata":{"files":{"readme":"README.md","changelog":null,"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}},"created_at":"2018-06-04T13:52:51.000Z","updated_at":"2018-06-11T13:31:54.000Z","dependencies_parsed_at":"2023-04-26T15:46:38.188Z","dependency_job_id":null,"html_url":"https://github.com/anas-araid/INISerializer","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/anas-araid%2FINISerializer","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/anas-araid%2FINISerializer/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/anas-araid%2FINISerializer/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/anas-araid%2FINISerializer/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/anas-araid","download_url":"https://codeload.github.com/anas-araid/INISerializer/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":239868555,"owners_count":19710474,"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":["c-sharp","csharp","ini","serializer"],"created_at":"2024-11-08T08:01:13.533Z","updated_at":"2026-02-26T06:30:13.673Z","avatar_url":"https://github.com/anas-araid.png","language":"C#","funding_links":[],"categories":[],"sub_categories":[],"readme":"# INISerializer example\n\n```\nusing System;\nusing System.Collections.Generic;\nusing System.Linq;\nusing System.Text;\nusing System.Threading.Tasks;\nusing System.IO;\n\nnamespace INI_Tester\n{\n    class Program\n    {\n        static void Main(string[] args)\n        {\n            Rect r = new Rect();\n            r.a = 100;\n            r.b = 200;\n            string s = INISerializer.INISerializer.SerializeObject(r);\n            string path = @\"path\\file.ini\";\n            try\n            {\n                File.Create(path).Dispose();\n\t\tusing (var tw = new StreamWriter(path, true))\n\t\t{\n\t\t\ttw.WriteLine(s);\n\t\t}\n            }\n            catch(Exception)\n            {\n\n            }\n            object obj = INISerializer.INISerializer.deserializeObject(path);\n        }\n    }\n    class Rect\n    {\n        public int a { get; set; }\n        public int b { get; set; }\n    }\n}\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fanas-araid%2Finiserializer","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fanas-araid%2Finiserializer","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fanas-araid%2Finiserializer/lists"}