Categories:
.NET (961)
C (387)
C++ (185)
CSS (84)
DBA (8)
General (31)
HTML (48)
Java (641)
JavaScript (220)
JSP (109)
JUnit (31)
MySQL (297)
Networking (10)
Oracle (562)
Perl (48)
Perl (9)
PHP (259)
PL/SQL (140)
RSS (51)
Software QA (28)
SQL Server (5)
Struts (20)
Unix (2)
Windows (3)
XHTML (199)
XML (59)
Other Resources:
Can you have two files with the same file name in GAC?
Can you have two files with the same file name in GAC?
✍: Guest
Yes, remember that GAC is a very special folder, and while normally you would not be able to place two files with the same name into a Windows folder, GAC differentiates by version number as well, so it’s possible for MyApp.dll and MyApp.dll to co-exist in GAC if the first one is version 1.0.0.0 and the second one is 1.1.0.0.
2014-12-29, 1518👍, 0💬
Popular Posts:
How can you raise custom errors from stored procedure ? The RAISERROR statement is used to produce a...
What is the difference between const char* p and char const* p? In const char* p, the character poin...
How To Create an Add-to-Google-Reader Button on Your Website? - RSS FAQs - Adding Your Feeds to RSS ...
How to reduce the final size of an executable file? Size of the final execuatable can be reduced usi...
Once I have developed the COM wrapper do I have to still register the COM in registry? Yes.