I wonder is there any way to check whether any appointment in EventsCollection exist or not as not to add same event again and again.
I tired this way but it always returns false
if(!eventsCollection.Contains(events.Subject))
{
eventsCollection.Add(events);
}
Thank you.