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

C#

 
GeneralRe: help me pls..........help me with my codes Pin
Calla14-Oct-09 1:53
Calla14-Oct-09 1:53 
AnswerRe: please help me with my c# project language acceptor Pin
OriginalGriff9-Oct-09 4:15
mveOriginalGriff9-Oct-09 4:15 
AnswerRe: please help me with my c# project language acceptor Pin
PIEBALDconsult9-Oct-09 4:50
mvePIEBALDconsult9-Oct-09 4:50 
QuestionIs C# the preferred language to develop BHO in IE8? Pin
Ziink9-Oct-09 3:36
Ziink9-Oct-09 3:36 
AnswerRe: Is C# the preferred language to develop BHO in IE8? Pin
Dave Kreskowiak9-Oct-09 6:10
mveDave Kreskowiak9-Oct-09 6:10 
GeneralRe: Is C# the preferred language to develop BHO in IE8? Pin
Ziink9-Oct-09 10:42
Ziink9-Oct-09 10:42 
QuestionAssembly.load Pin
shivapriyak9-Oct-09 2:12
shivapriyak9-Oct-09 2:12 
AnswerRe: Assembly.load Pin
Eddy Vluggen9-Oct-09 2:25
professionalEddy Vluggen9-Oct-09 2:25 
shivapriyak wrote:
Assembly.Load(...) requires to give the fully qualified name, so does it mean Assembly.Load(..) can load only assemblies present in GAC?


Nope, it can also load an assembly that's present in-memory[^] (as an array of bytes), and you can also load an assembly by giving a partial name[^]. This snippet from PIEBALDConsult may help;
System.Reflection.Assembly assm ;

name = System.IO.Path.GetFileNameWithoutExtension ( Filename ) ;

/*\
|*| This is the common way to load an assembly:
|*| assm = System.Reflection.Assembly.LoadFrom ( Filename ) ;
|*|
|*| The following is my take on a technique suggested by Sacha Barber:
\*/

assm = System.AppDomain.CreateDomain ( name ).
    Load ( System.IO.File.ReadAllBytes ( Filename ) ) ;


I are Troll Smile | :)

GeneralRe: Assembly.load Pin
PIEBALDconsult9-Oct-09 4:48
mvePIEBALDconsult9-Oct-09 4:48 
GeneralRe: Assembly.load Pin
Eddy Vluggen9-Oct-09 7:45
professionalEddy Vluggen9-Oct-09 7:45 
GeneralRe: Assembly.load Pin
Daniel Grunwald9-Oct-09 6:26
Daniel Grunwald9-Oct-09 6:26 
GeneralRe: Assembly.load Pin
Eddy Vluggen9-Oct-09 8:03
professionalEddy Vluggen9-Oct-09 8:03 
GeneralRe: Assembly.load Pin
Daniel Grunwald9-Oct-09 12:09
Daniel Grunwald9-Oct-09 12:09 
GeneralRe: Assembly.load Pin
Eddy Vluggen10-Oct-09 1:37
professionalEddy Vluggen10-Oct-09 1:37 
QuestionSmooth Moving of TableLayoutPanel control [modified] Pin
Lyon Sun9-Oct-09 1:19
Lyon Sun9-Oct-09 1:19 
AnswerRe: Smooth Moving of TableLayoutPanel control Pin
stancrm9-Oct-09 2:13
stancrm9-Oct-09 2:13 
GeneralRe: Smooth Moving of TableLayoutPanel control [modified] Pin
Lyon Sun9-Oct-09 2:32
Lyon Sun9-Oct-09 2:32 
GeneralRe: Smooth Moving of TableLayoutPanel control Pin
Dave Kreskowiak9-Oct-09 3:36
mveDave Kreskowiak9-Oct-09 3:36 
GeneralRe: Smooth Moving of TableLayoutPanel control Pin
Lyon Sun9-Oct-09 9:34
Lyon Sun9-Oct-09 9:34 
Questionuseof custom validation Pin
atiskumar9-Oct-09 0:36
atiskumar9-Oct-09 0:36 
QuestionRe: useof custom validation Pin
harold aptroot9-Oct-09 0:43
harold aptroot9-Oct-09 0:43 
AnswerRe: useof custom validation Pin
atiskumar9-Oct-09 2:47
atiskumar9-Oct-09 2:47 
GeneralRe: useof custom validation Pin
harold aptroot9-Oct-09 5:10
harold aptroot9-Oct-09 5:10 
AnswerRe: useof custom validation Pin
dan!sh 9-Oct-09 0:48
professional dan!sh 9-Oct-09 0:48 
GeneralRe: useof custom validation Pin
atiskumar9-Oct-09 2:25
atiskumar9-Oct-09 2:25 

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.