Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/olivegamestudio/utility.toolkit
A utility library with helper classes, such as ObservableObjectT.cs and ICommandT interface.
https://github.com/olivegamestudio/utility.toolkit
command csharp helpers icommand library mvvm observableobject utility
Last synced: 26 days ago
JSON representation
A utility library with helper classes, such as ObservableObjectT.cs and ICommandT interface.
- Host: GitHub
- URL: https://github.com/olivegamestudio/utility.toolkit
- Owner: olivegamestudio
- Created: 2024-07-22T20:37:42.000Z (5 months ago)
- Default Branch: main
- Last Pushed: 2024-08-28T16:02:49.000Z (4 months ago)
- Last Synced: 2024-08-28T17:38:43.899Z (4 months ago)
- Topics: command, csharp, helpers, icommand, library, mvvm, observableobject, utility
- Language: C#
- Homepage:
- Size: 12.7 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Utility.Toolkit
A utility library of various toolkit type classes.
## Installation
You can use the NUGET package named **Utility.Toolkit** that is on nuget.org or adding this line to an **ItemGroup** section in your csproj file.
```
```
## Usage Examples
### Taking the ObservableObject one step further with defining a model type.
```
public partial class MyViewModel : ObservableObject
{
public MyClass(MyModel myModel) : base(myModel)
{
}
}
```