Exemple #1
0
        private object ParseModel(ActionsVm model)
        {
            var initialStateMatches = ActionRegex.Matches(model.InitialState);

            foreach (var match in initialStateMatches)
            {
                var action = new StripAction();
            }
        }
Exemple #2
0
        private object ParseModel(ActionsVm model)
        {
            var initialStateMatches = ActionRegex.Matches(model.InitialState);
            foreach (var match in initialStateMatches)
            {

                var action = new StripAction();
            }
        }