1

enter image description here

I create a class library for my client application and web service. In it, I create some class which I'd like to use it in the web service, but when I add the reference, the solution explorer shows the a yellow warning. But I don't know what is happening.

I'm receiving two warnings:

Error The type or namespace name 'Usuario' could not be found (are you missing a using directive or an assembly reference?)

Error The type or namespace name 'Core' does not exist in the namespace 'RedMov' (are you missing an assembly reference?)

4

1 に答える 1

1

参照しようとしているCoreアセンブリの.NETバージョンがWebServiceアセンブリのバージョンよりも高くないことを確認してください。

.NETには下位互換性があるため、.NET4プロジェクトで.NET3.5アセンブリを参照できますが、その逆はできません。

于 2012-11-15T19:23:29.363 に答える