We moved all namespaces into a single namespace. No matter which (WinUICommunity) library you use, the namespace is always as follows
For use in the Xaml:xmlns:wuc="using:WinUICommunity"
For use in the Csharp:using WinUICommunity;
InIHelper class is for working with ini file in simple way.
Add Value
you can use default section and path
| 1 | InIHelper.AddValue("key1", "test1"); | 
Read Value
| 1 | Debug.WriteLine(InIHelper.ReadValue("key1")); | 
Delete Key
you can delete a key or section
| 1 | InIHelper.DeleteKey("key4", "mySection"); | 
Exist Key
you can check if a key exist or not
| 1 | Debug.WriteLine(InIHelper.IsKeyExists("key4", "mySection")); |