Click here to Skip to main content
15,887,434 members
Home / Discussions / C#
   

C#

 
GeneralRe: How to Receive Messages Without a Window Pin
Luc Pattyn31-Jan-12 12:08
sitebuilderLuc Pattyn31-Jan-12 12:08 
Question.NET dll late binding Pin
Blubbo31-Jan-12 8:11
Blubbo31-Jan-12 8:11 
AnswerRe: .NET dll late binding Pin
Blubbo31-Jan-12 8:48
Blubbo31-Jan-12 8:48 
AnswerRe: .NET dll late binding Pin
Luc Pattyn31-Jan-12 9:43
sitebuilderLuc Pattyn31-Jan-12 9:43 
GeneralRe: .NET dll late binding Pin
Shameel31-Jan-12 18:56
professionalShameel31-Jan-12 18:56 
GeneralRe: .NET dll late binding Pin
BobJanova2-Feb-12 4:57
BobJanova2-Feb-12 4:57 
GeneralRe: .NET dll late binding Pin
Blubbo1-Feb-12 7:01
Blubbo1-Feb-12 7:01 
AnswerRe: .NET dll late binding Pin
Abhinav S31-Jan-12 19:42
Abhinav S31-Jan-12 19:42 
You don't need to load any namespace unless you want to load all types within a namespace.

E.g.
SQL
var q = from t in a.GetTypes()
        where t.IsClass && t.Namespace == "ChipReader"
        select t;


Reflection is a performance-intensive way to achieve late binding.
Unless you are studying reflection, you might also want to consider Interfaces as another means to achieve late binding.
As another example. an object is late bound when it is assigned to a variable declared to be of type Object.
AnswerRe: .NET dll late binding Pin
BobJanova2-Feb-12 5:02
BobJanova2-Feb-12 5:02 
GeneralRe: .NET dll late binding Pin
Blubbo2-Feb-12 5:07
Blubbo2-Feb-12 5:07 
Questionmedia player library Pin
idiot prince31-Jan-12 5:20
idiot prince31-Jan-12 5:20 
AnswerRe: media player library Pin
Abhinav S31-Jan-12 6:48
Abhinav S31-Jan-12 6:48 
GeneralRe: media player library Pin
idiot prince31-Jan-12 7:30
idiot prince31-Jan-12 7:30 
AnswerRe: media player library Pin
Dean Oliver31-Jan-12 7:59
Dean Oliver31-Jan-12 7:59 
QuestionDeployment issue in Win7 Pin
siddisagar31-Jan-12 5:09
siddisagar31-Jan-12 5:09 
AnswerRe: Deployment issue in Win7 - Repost Pin
Richard MacCutchan31-Jan-12 6:09
mveRichard MacCutchan31-Jan-12 6:09 
QuestionCreating tolerance-lines for a given array using two delta-values Pin
T.Mann1131-Jan-12 3:42
T.Mann1131-Jan-12 3:42 
AnswerRe: Creating tolerance-lines for a given array using two delta-values Pin
Luc Pattyn31-Jan-12 3:59
sitebuilderLuc Pattyn31-Jan-12 3:59 
QuestionConvertion from .XLS to .XML through c# code Pin
Member 824179730-Jan-12 23:23
Member 824179730-Jan-12 23:23 
AnswerRe: Convertion from .XLS to .XML through c# code Pin
Richard MacCutchan30-Jan-12 23:43
mveRichard MacCutchan30-Jan-12 23:43 
AnswerRe: Convertion from .XLS to .XML through c# code Pin
Abhinav S31-Jan-12 0:41
Abhinav S31-Jan-12 0:41 
QuestionCalling .dll from a C# application (problem when outside VS2010) Pin
Kaare Tragethon30-Jan-12 22:51
Kaare Tragethon30-Jan-12 22:51 
AnswerRe: Calling .dll from a C# application (problem when outside VS2010) Pin
Abhinav S31-Jan-12 0:42
Abhinav S31-Jan-12 0:42 
GeneralRe: Calling .dll from a C# application (problem when outside VS2010) Pin
Kaare Tragethon31-Jan-12 1:14
Kaare Tragethon31-Jan-12 1:14 
GeneralRe: Calling .dll from a C# application (problem when outside VS2010) Pin
Dave Kreskowiak31-Jan-12 2:12
mveDave Kreskowiak31-Jan-12 2:12 

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.