Click here to Skip to main content
16,005,222 members
Home / Discussions / C#
   

C#

 
GeneralRe: inaccessible due to its protection level ??? Pin
Radgar16-Feb-05 14:27
Radgar16-Feb-05 14:27 
QuestionOpen a Project, then close another one?? Pin
luckyShek16-Feb-05 13:43
luckyShek16-Feb-05 13:43 
AnswerRe: Open a Project, then close another one?? Pin
Christian Graus16-Feb-05 14:13
protectorChristian Graus16-Feb-05 14:13 
QuestionRenaming .exe file to .dll file ??? Pin
luckyShek16-Feb-05 13:26
luckyShek16-Feb-05 13:26 
AnswerRe: Renaming .exe file to .dll file ??? Pin
Christian Graus16-Feb-05 13:38
protectorChristian Graus16-Feb-05 13:38 
GeneralRe: Renaming .exe file to .dll file ??? Pin
luckyShek16-Feb-05 13:43
luckyShek16-Feb-05 13:43 
AnswerRe: Renaming .exe file to .dll file ??? Pin
leppie16-Feb-05 21:41
leppie16-Feb-05 21:41 
AnswerRe: Renaming .exe file to .dll file ??? Pin
Heath Stewart16-Feb-05 21:50
protectorHeath Stewart16-Feb-05 21:50 
An EXE and a DLL contain different headers. An EXE contains an entry point while a DLL does not, though it typically contains a load address of where in memory relative to the EXE base it should be loaded. In the case of .NET assemblies, the EXE entry point references mscoree.dll!_CorExeMain, which creates the unmanaged AppDomain, loads a managed AppDomain then your assembly, and runs the entry point. A DLL will simply load into the process space but contains no entry point. While the IL module(s) contained in the assembly are basically file format-agnostic, the PE/COFF headers of the executable that contain the manifest and IL module(s) (and any other embedded files or resources) are different.

This posting is provided "AS IS" with no warranties, and confers no rights.

Software Design Engineer
Developer Division Sustained Engineering
Microsoft

[My Articles] [My Blog]
QuestionPossible to do assignability checking during runtime? Pin
Kelvin Goh16-Feb-05 13:07
Kelvin Goh16-Feb-05 13:07 
AnswerRe: Possible to do assignability checking during runtime? Pin
Christian Graus16-Feb-05 13:31
protectorChristian Graus16-Feb-05 13:31 
AnswerRe: Possible to do assignability checking during runtime? Pin
S. Senthil Kumar16-Feb-05 15:52
S. Senthil Kumar16-Feb-05 15:52 
QuestionHow do i make a mouse's focus fall through a form to whatever is below Pin
FocusedWolf16-Feb-05 11:57
FocusedWolf16-Feb-05 11:57 
AnswerRe: How do i make a mouse's focus fall through a form to whatever is below Pin
Christian Graus16-Feb-05 13:40
protectorChristian Graus16-Feb-05 13:40 
GeneralRe: How do i make a mouse's focus fall through a form to whatever is below Pin
Luis Alonso Ramos16-Feb-05 19:09
Luis Alonso Ramos16-Feb-05 19:09 
GeneralRe: How do i make a mouse's focus fall through a form to whatever is below Pin
FocusedWolf17-Feb-05 5:29
FocusedWolf17-Feb-05 5:29 
GeneralWeb controls - newb question Pin
Esmo200016-Feb-05 10:31
Esmo200016-Feb-05 10:31 
GeneralRe: Web controls - newb question Pin
Christian Graus16-Feb-05 11:49
protectorChristian Graus16-Feb-05 11:49 
GeneralChild seeing parent Pin
Kenny O'Dell16-Feb-05 10:16
Kenny O'Dell16-Feb-05 10:16 
GeneralRe: Child seeing parent Pin
Heath Stewart16-Feb-05 10:25
protectorHeath Stewart16-Feb-05 10:25 
GeneralRe: Child seeing parent Pin
Kenny O'Dell17-Feb-05 2:02
Kenny O'Dell17-Feb-05 2:02 
GeneralRe: Child seeing parent Pin
Heath Stewart17-Feb-05 6:12
protectorHeath Stewart17-Feb-05 6:12 
GeneralArray in dll Pin
Blubbo16-Feb-05 9:16
Blubbo16-Feb-05 9:16 
GeneralRe: Array in dll Pin
Heath Stewart16-Feb-05 10:18
protectorHeath Stewart16-Feb-05 10:18 
GeneralCrystal Report’s error Pin
see0716-Feb-05 8:53
see0716-Feb-05 8:53 
Generalfor-each loop Pin
lindiwe16-Feb-05 8:21
lindiwe16-Feb-05 8:21 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.