There is a boolean column I added to a custom list, but I also have a feature on this custom list so that when a Item is added i have to check if this column exists or not and then its value.
now i am using this code,
class GetCustomerDetails : SPItemEventReceiver
{
public override void ItemAdded(SPItemEventProperties properties)
{
if ((bool)properties.ListItem.Properties["Invoice Generated"] == true)
{
}
}
}
how can i check if this property exists before checking its value and if am checking property value right way.
