Click here to Skip to main content
15,908,907 members
Home / Discussions / C#
   

C#

 
QuestionXML File problem Pin
InderK5-Oct-10 1:22
InderK5-Oct-10 1:22 
QuestionHow to identify is a certificate is in a smart card? Pin
Sunil P V4-Oct-10 22:38
Sunil P V4-Oct-10 22:38 
AnswerRe: How to identify is a certificate is in a smart card? Pin
Rajesh Anuhya4-Oct-10 23:28
professionalRajesh Anuhya4-Oct-10 23:28 
AnswerRe: How to identify is a certificate is in a smart card? Pin
Goutam Patra5-Oct-10 2:15
professionalGoutam Patra5-Oct-10 2:15 
QuestionB.K.M for dynamically resolve assembly location - a question [modified] Pin
Shultz 24-Oct-10 20:57
Shultz 24-Oct-10 20:57 
AnswerRe: B.K.M for dynamically resolve assembly location - a question Pin
Mycroft Holmes4-Oct-10 22:00
professionalMycroft Holmes4-Oct-10 22:00 
GeneralRe: B.K.M for dynamically resolve assembly location - a question Pin
Shultz 24-Oct-10 23:18
Shultz 24-Oct-10 23:18 
AnswerRe: B.K.M for dynamically resolve assembly location - a question Pin
Bernhard Hiller4-Oct-10 22:25
Bernhard Hiller4-Oct-10 22:25 
An assembly has a GetReferencedAssemblies() method. Have you tried that? E.g.
string assemblyName = "c:\\UserPlugins\\UserPluginDll.dll";
string assemblyPath = System.IO.Path.GetDirectoryName(assemblyName);
Assembly assembly = Assembly.LoadFrom(assemblyName);
AssemblyName[] referenced = assembly.GetReferencedAssemblies();
List<Assembly> assemblies = new List<Assembly>();
foreach (AssemblyName an in referenced)
{
    string extra = System.IO.Path.Combine(assemblyPath, an.Name + ".dll");
    if (System.IO.File.Exists(extra))
    {
        Assembly tmpAssembly = Assembly.LoadFrom(System.IO.Path.Combine(assemblyPath, an.Name + ".dll"));
        assemblies.Add(tmpAssembly);
    }
}

GeneralRe: B.K.M for dynamically resolve assembly location - a question Pin
Shultz 24-Oct-10 23:12
Shultz 24-Oct-10 23:12 
AnswerRe: B.K.M for dynamically resolve assembly location - a question Pin
PIEBALDconsult5-Oct-10 3:07
mvePIEBALDconsult5-Oct-10 3:07 
GeneralRe: B.K.M for dynamically resolve assembly location - a question Pin
Shultz 25-Oct-10 4:59
Shultz 25-Oct-10 4:59 
GeneralRe: B.K.M for dynamically resolve assembly location - a question Pin
PIEBALDconsult5-Oct-10 15:08
mvePIEBALDconsult5-Oct-10 15:08 
QuestionWebpage is fully loaded Pin
wenlong884-Oct-10 20:08
wenlong884-Oct-10 20:08 
AnswerRe: Webpage is fully loaded Pin
rah_sin4-Oct-10 20:31
professionalrah_sin4-Oct-10 20:31 
GeneralRe: Webpage is fully loaded Pin
wenlong884-Oct-10 21:07
wenlong884-Oct-10 21:07 
GeneralRe: Webpage is fully loaded Pin
wenlong884-Oct-10 21:08
wenlong884-Oct-10 21:08 
GeneralRe: Webpage is fully loaded Pin
Pete O'Hanlon4-Oct-10 21:35
mvePete O'Hanlon4-Oct-10 21:35 
GeneralRe: Webpage is fully loaded Pin
Mycroft Holmes4-Oct-10 21:52
professionalMycroft Holmes4-Oct-10 21:52 
GeneralRe: Webpage is fully loaded Pin
Pete O'Hanlon4-Oct-10 22:06
mvePete O'Hanlon4-Oct-10 22:06 
QuestionHow do I get this page? Pin
gemeite4-Oct-10 17:44
gemeite4-Oct-10 17:44 
AnswerRe: How do I get this page? Pin
Eduard Keilholz4-Oct-10 19:49
Eduard Keilholz4-Oct-10 19:49 
GeneralRe: How do I get this page? Pin
gemeite6-Oct-10 15:40
gemeite6-Oct-10 15:40 
QuestionHow to implement .Empty in your own class? Pin
FruitBatInShades4-Oct-10 5:55
FruitBatInShades4-Oct-10 5:55 
AnswerRe: How to implement .Empty in your own class? Pin
Ian Shlasko4-Oct-10 6:06
Ian Shlasko4-Oct-10 6:06 
GeneralRe: How to implement .Empty in your own class? Pin
FruitBatInShades4-Oct-10 6:21
FruitBatInShades4-Oct-10 6: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.