How to initialize class in WCF?
suppose i just want to make a sum of two member in a class
i have coded in iService like
[DataContract]
class Sample
{
public int i { get; set; }
public int q { get; set; }
}
[OperationContract]
public int Sum(Sample obj);
and in service
public int Sum(Sample obj)
{
}
what added coding require to make that run, as i am confuse with the class declaration in both the pages?