EventArgPropertyDataValue Property |
Namespace: SOWIData.Helper
if (lDataFieldType == typeof(string)) { lDataField.SetValue(pDataItem, lXMLValue, null); } else if (lDataFieldType == typeof(int)) { int lIntValue = System.Convert.ToInt32(lXMLValue); lDataField.SetValue(pDataItem, lIntValue, null); } else if (lDataFieldType == typeof(System.Nullable<int>)) { int lIntValue = System.Convert.ToInt32(lXMLValue); lDataField.SetValue(pDataItem, lIntValue, null); }