Ejemplo n.º 1
0
        private void processProperty(string property,string fileName, string type, DateTime dt,DBManager dbm)
        {
            string[] pValue = property.Split(LogConstants.SEP.ToCharArray());

            string prop = pValue[0];
            string value = pValue[pValue.Length-1];

            dbm.saveLog(fileName, dt, type, prop, value);
        }