abdul subhan mohammed Ответов: 1

Сообщение об ошибке компилятора: CS0433: тип 'helper.securityhelper' существует в обоих случаях


Дорогие Все,

Я создал одно веб-приложение в ASP.NET с#.

Я получаю ошибку компиляции.

 Compilation Error
Description: An error occurred during the compilation of a resource required to service this request. Please review the following specific error details and modify your source code appropriately.

Compiler Error Message: CS0433: The type 'Helper.SecurityHelper' exists in both 'c:\Windows\Microsoft.NET\Framework\v4.0.30319\Temporary ASP.NET Files\vs\f223be9b\b9616c13\App_Code.ogr_8fdx.dll' and 'c:\Windows\Microsoft.NET\Framework\v4.0.30319\Temporary ASP.NET Files\vs\f223be9b\b9616c13\assembly\dl3\498118b1\c68db00e_ae71d301\ExamWebsite.DLL'

Source Error:


Line 25: public UserInfo User
Line 26: {
Line 27: get { return _user ?? (_user = SecurityHelper.GetCurrentUser()); }
Line 28: }
Line 29: 


Source File: c:\Development\Online.ExamWebsite\Resource\Control\SignIn.ascx.cs    Line: 27 


Что я уже пробовал:

1. Close Visual Studio
2. Perform an iisreset [open command prompt as admin and type "iisreset"]
3. Delete all the folders and files within the "Temporary ASP.NET Files" folder (the path is referenced in the error message)
4. Delete the offending application's "obj" and "bin" folders
5. Restart Visual Studio and open the solution
6. Perform a "Clean Solution" followed by a "Rebuild Solution"



Ссылка: Гугл

Но я все равно получаю ошибку.


Кто-нибудь может пожалуйста помочь мне.


Заранее спасибо

1 Ответов

Рейтинг:
1

OriginalGriff

У вас есть два класса с одинаковым названием: Один в App_Code.ogr_8fdx.dll и еще один в ExamWebsite.файл DLL
Поскольку в вашем проекте есть ссылки на оба варианта, система не может определить, какой из них вы пытаетесь использовать.

Решения:
1) префикс вашего имени класса с именем сборки. Это может быть:

get { return _user ?? (_user = ExamWebSite.SecurityHelper.GetCurrentUser()); }

2) измените имя одного из классов и перестройте соответствующую библиотеку DLL.