This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using Stateless; | |
using System; | |
using System.Collections.Generic; | |
using System.Linq; | |
namespace WorkFlow { | |
public class MyStateMachine<T, TTrigger> { | |
private readonly static object locker = new object(); | |
private readonly T _element; |