嗨,我一直在阅读一些讲义,但我无法弄清楚为什么这种方法:
[OperationContract]
Student PostStudent (Student student);
很好。
而且这种方法很糟糕:
[OperationContract]
void PostStudent (string firstname, string lastname etc..);
然而我实现的版本是这样的:
[OperationContract]
void PostStudent(Student student);
所以我不确定我实施的版本是否不好,我也不确定我的讲师是如何得到的
Student PostStudent (Student student);
// ?