An open API service indexing awesome lists of open source software.

https://github.com/thebeachmaster/fsm-c-sharp

A simple FSM written in C#
https://github.com/thebeachmaster/fsm-c-sharp

c-sharp dotnet fsm

Last synced: about 1 month ago
JSON representation

A simple FSM written in C#

Awesome Lists containing this project

README

          

# fsm-c-sharp
A simple FSM written in C#

> Creating Project

```bash
$ dotnet new console -o gen-fsm
```

> Details

+ States
- Paused
- Exited
- Active
- Inactive

+ State Trasitions
- Begin process
- End process
- Pause process
- Exit process
- Resume process

> Run

```bash
$ cd ./gen-fsm && dotnet run
```

Initially Contributed by [Juliet](https://stackoverflow.com/users/40516/juliet)