Parsi Coders
کلاس مشترک در یک سلوشن برای چند پروژه - نسخه قابل چاپ

+- Parsi Coders (http://parsicoders.com)
+-- انجمن: Software Development Programming (http://parsicoders.com/forumdisplay.php?fid=37)
+--- انجمن: C# Programming (http://parsicoders.com/forumdisplay.php?fid=55)
+--- موضوع: کلاس مشترک در یک سلوشن برای چند پروژه (/showthread.php?tid=1303)



کلاس مشترک در یک سلوشن برای چند پروژه - analyze - 12-02-2011

سلام خدمت دوستان
چگونه می توانیم در یک سلوشن کلاس مشترک برای چند پروژه داشته باشیم و اسفتاده کنیم.Huh


RE: کلاس مشترک در یک سلوشن برای چند پروژه - analyze - 12-02-2011

بصورت دیگری عرض کنم
اگر یک کلاس داشته باشیم، مثل کلاس ارتباط با دیتابیس که در همه پروژه ها مشترک باشد و نخواهیم در هر پروژه کپی شود باید چه کنیم؟! شما چه می کنید؟


RE: کلاس مشترک در یک سلوشن برای چند پروژه - Amin_Mansouri - 12-04-2011

(12-02-2011، 12:52 PM)analyze نوشته: سلام خدمت دوستان
چگونه می توانیم در یک سلوشن کلاس مشترک برای چند پروژه داشته باشیم و اسفتاده کنیم.Huh

سلام
من الان سی شارپ ندارم ولی توی فروم های خارجی بودم همچین جوابی داده بودن :
کد:
Greetings,
1. You have to alter this code to make a class and then add this class in your project and use that class without declaring an object by just calling its static method.
2. make the Class library and use add its reference in your project and use it.
3. make a separate function in your existing project and use it instead of make class library or class.

but in all the case you can only use the logic of the programm . You can't use the syntax of the program as it is.
Reagrds,
-riz
و همچنین اینجا راجع به سوال شما بحث گسترده ای کردن :

http://stackoverflow.com/questions/3554658/how-to-use-a-class-from-one-c-sharp-project-with-another-c-sharp-project



RE: کلاس مشترک در یک سلوشن برای چند پروژه - analyze - 12-05-2011

ممنون
مطالب مفیدی داشت.