public CompileIntellisense(CompileIntellisenseKinds kind, string desc, string sol, string file, int line, int column, string pj) { _kind = kind; _description = desc; _solution = sol; _file = file; _line = line; _column = column; _project = pj; }
public void Add(CompileIntellisenseKinds kind, string desc, string sol, string file, int line, int column, string pj) { _error.Add(kind, desc, sol, file, line, column, pj); }
public void Add(CompileIntellisenseKinds kind, string desc, string sol, string file, int line, int column, string pj) { //Dispatcher.BeginInvoke((Action)delegate () { Model.Data.Add(new CompileIntellisense(kind, desc, sol, file, line, column, pj)); }, DispatcherPriority.DataBind); }