Is Boolean the same as bool in a WCF contract
如果我将现有的DataMember属性作为WCF契约的一部分从布尔值更改为布尔值,那么这是否被视为更改/违反契约?
bool是system.boolean的别名,正如string是system.string的别名一样。
http://msdn.microsoft.com/en-us/library/ya5y69ds%28与.80%29.aspx
If I change an existing DataMember property as part of a WCF contract from Boolean to bool,
bool是布尔的别名。没有区别。
is this then considered as a change/breach of contract
不,因为它们是一样的,所以你不会面临任何变化。
没有区别!bool只是system.boolean的别名!