コード例 #1
0
        private object ParseModel(ActionsVm model)
        {
            var initialStateMatches = ActionRegex.Matches(model.InitialState);

            foreach (var match in initialStateMatches)
            {
                var action = new StripAction();
            }
        }
コード例 #2
0
ファイル: MainWindow.xaml.cs プロジェクト: VsMaX/ITO-P8
        private object ParseModel(ActionsVm model)
        {
            var initialStateMatches = ActionRegex.Matches(model.InitialState);
            foreach (var match in initialStateMatches)
            {

                var action = new StripAction();
            }
        }