I want to access the functionalities of operationcontact of a WFC service from my python code.
int ITiberium.CalculateAge(int day, int month, int year)
{
DateTime dt = new DateTime(year, month, day);
int datetodays = DateTime.Now.Subtract(dt).Days;
return datetodays;
}
Can anybody help?
Thanks in advance,
Monalisa.