本文介绍了为什么我们要使用自己的类作为参数或方法的返回类型?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

以下使用类作为返回类型(复合类型),并且还用作参数类型)

1.CompositeType GetDataUsingDataContract(CompositeType复合);


公共CompositeType GetDataUsingDataContract(CompositeType复合)
{
}


使用类作为参数类型有什么好处?

below used class as return type(compositetype)and it is used as parameter type also)

1.CompositeType GetDataUsingDataContract(CompositeType composite);


public CompositeType GetDataUsingDataContract(CompositeType composite)
{
}


what are the advantages of using class as parameter type

推荐答案


这篇关于为什么我们要使用自己的类作为参数或方法的返回类型?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-17 01:19