|
-
September 23rd, 2002, 12:18 PM
#1
Junior Member
visual C#
hello everybody
I have a question about c# language
I currently making a new component to the c# library, but I need to
split that component into multiple PE (portable Executable) files
I do not know how can I do this.............
my compiler tool is Microsoft Visual C#
and my developement platform is Windows 2000
-
September 25th, 2002, 05:34 PM
#2
I'm not sure, but here goes:
You have to create several .dll files, and then import each of these into the GAC. The GAC is what you call c# libraray, but it's actually the .Net library. To import files into the GAC you have to run the gacutil.exe. Use the /i parameter and then the filename, like this: gacutil /i myfile.dll. The component should now be available to include in a project under
project->references.
To create a component (dll), you have to choose 'classlibrary' when choosing a new project.
If this is not what you asked for, ******** and I'll try to look it up in my big book of .Net
-
September 26th, 2002, 02:39 PM
#3
Junior Member
thnx
thnx..proactive
I think that's what I search 4..
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
|