Hi all,
I want to access the functionalities of operationcontact of a WFC service from my python code.
[OperationContract]
int CalculateAge(int day, int month, int year);
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.
Gokhul VarmanPosted Aug 3, 2017, 2:54 AM
Sundaram SubramanianPosted Aug 2, 2017, 8:29 AM