public LogRecord(log_vrste vrsta, string opis, string prefix) { this.vrsta = vrsta; this.opis = opis; this.prefix = prefix; date = DateTime.Now; }
public void add_to_log(log_vrste vrsta, string opis, string prefix) { Console.WriteLine(DateTime.Now.ToString("dd.MM.yyyy HH:mm:ss.fff") + "\t" + vrsta + "\t" + _prefix + " " + prefix + " " + opis); lock (items) { items.Add(new LogRecord(vrsta, opis, prefix)); } /*add_to_log_del zapis = new add_to_log_del(add_to_log_fnc); zapis.BeginInvoke(vrsta, opis, prefix, null, null);*/ }