Loading Resource

  • Thread starter Thread starter perspolis
  • Start date Start date
P

perspolis

Hi all
I have some resources for some languages.
1-To create diffrent resources,Do I have to use VC++ environment or Can I
create them from C#?
2-How can I load different resources dynamically?
thx :)
 
What do you mean by resources? If DLLs, just include them as
references. If an image, add the image to your project and set its
build action to embed resource -
http://msdn.microsoft.com/library/d...tml/vbtskEmbeddingImageResourcesInProject.asp.

To load DLLs or invoke methods in other assemblies dynamically for
example, use reflection. Take a look at these snippets:

http://weblogs.asp.net/rosherove/articles/7610.aspx

http://my.execpc.com/~gopalan/dotnet/reflection.html

http://www.codeproject.com/csharp/IntroReflection.asp

Brett
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top