Tagged Questions

10
votes
4answers
101 views

Get dependent assemblies?

Is there a way to get all assemblies that depend on a given assembly? Pseudo: Assembly a = GetAssembly(); var dependants = a.GetDependants();
8
votes
4answers
7k views

How to get the assembly (System.Reflection.Assembly) for a given type in .Net?

In .Net, given a type name, is there a method that tells me in which assembly (instance of System.Reflection.Assembly) that type is defined? I assume that my project already has a reference to that ...
7
votes
3answers
210 views

How to load an .exe as a .NET assembly?

Can I just use?: Assembly.LoadFile Not sure if this is the way to do this? But when I try that approach, it throws a Could not load file or assembly "CustomControlLib" or one of its dependencies. ...
4
votes
6answers
134 views

In C# how do i get the name of the running file?

I would like to know how to pragmatically get the name of the running file not the assembly name but the name of the file in C# .NET, I tried ...
4
votes
1answer
87 views

What is the order of returned Types by Assembly.GetTypes()?

If I get the list of types in my AppDomain, is there an inherent ordering to these types? List<Type> myTypes = new List<Type>(); foreach (Assembly a in ...
2
votes
1answer
170 views

Retrieve Target Framework Version and Target Framework Profile from a .Net Assembly

Is there any way that I can access the values that were used for TargetFrameworkVersion and/or TargetFrameworkProfile when a .Net assembly was compiled? The values I'm talking about are the ones ...
2
votes
2answers
131 views

.NET Framework Assemblies in Reflection

I have a collection of assemblies using reflection. I want to loop through them, but I would like to ignore the .NET framework or ASP.NET framework DLL's. Is there an attribute on the assembly that ...
1
vote
2answers
128 views

How to prevent ReflectionTypeLoadException when calling Assembly.GetTypes()

I'm trying to scan an assembly for types implementing a specific interface using code similar to this: public List<Type> FindTypesImplementing<T>(string assemblyPath) { var ...
1
vote
2answers
187 views

Read AssemblyTitle attribute in ASP.NET

I use code below to read AssemblyTitle attribute of .NET apps, unfortunately Assembly.GetEntryAssembly() always return Null in ASP.NET app. How to read AssemblyTitle in ASP.NET app? public ...
1
vote
1answer
90 views

How to call a specific method on an object after creating it via its constructor using reflection in .NET?

I have a WPF application that I want to launch using: Assembly.LoadFrom It works fine but after this, I am trying to call it's default constructor: LayerView.MainWindow(); Then, call the Show ...
1
vote
5answers
596 views

How can I create variable controls at runtime?

I'm trying to create controls at runtime using Reflection. In my case, I get a string like Label or Button and I would like to create a object Label or Button of it. Assembly WinFormasm = ...
0
votes
0answers
62 views

Getting information of method name and parameters using Reflections? [closed]

There is a section of my projects that deals with a C++ DLL full of methods, which I've already made a DLLImport Attribute and a proper C# extern methods. Each method has a different name and various ...
0
votes
1answer
45 views

Invoke the methods of the assembly is created by reflection from its owner in .NET

I know how to create some object by reflection and pass some arguments. Dim assembly As System.Reflection.Assembly Dim control As Object assembly = ...
0
votes
2answers
117 views

System.Reflection.Assembly.FullName returning out of date information?

I replaced the EXE of a Windows service with a new version after stopping the service. The EXE is definitely the new version, and Windows Explorer Properties shows the new version. However, the ...
0
votes
1answer
166 views

c# load on-the-fly generated partial class assembly

I would like to override a virtual base class function on the fly and use this overriden method in application. If I write a basic example class: partial Class myBase { public myBase() {} ...
0
votes
0answers
30 views

Is there a Visual Studio “Assembly referenced” event?

I need to run a block of code in my .NET assembly (DLL) when this assembly is being referenced in Visual Studio 2008 and/or 2010. If I put this code in a static and/or instance constructor of a class ...
0
votes
2answers
180 views

Call methods from Managed C++ dll object

I load my dll in C# with Assembly assembly = Assembly.LoadFrom(dllPath); // late binding Type classType = assembly.GetType("Namespace.Classname"); object readerInterface = ...
0
votes
1answer
114 views

Executing WPF Assembly from Memory

This method here, shown below, works well for most applications. FileStream fs = new FileStream(filePath, FileMode.Open); // read the bytes from the application EXE file BinaryReader br = new ...
0
votes
1answer
79 views

Is there a way to get the date of the Assembly in a Windows Phone 7 app?

Is there a way to get the date of the Assembly in a Windows Phone 7 app? This post looked like what I am looking for, but it does not work in Windows Phone 7 due to some of the APIs missing. ...
0
votes
1answer
153 views

Loading external web.config variables when invoking a method in an external assembly

I am using reflection to invoke a method in an external assembly. The external class / method is in a WCF data service. The WCF data service uses information loaded from a custom configuration ...
0
votes
1answer
59 views

Execute code in assembly and access its objects

i have a difficult question: I want to write some code into a textbox and compile it at runtime, like "Application.GetSystem().ObjectList.Count" so that i can get the result and display it in another ...
0
votes
4answers
109 views

How to determine the code-file filename from a compiled application at runtime

Let's say I have an application with two files. Console.cs and Business.cs Console.cs has program Main class. Business.cs has three classes named Customer, Order and Orderline. Is there anyway ...
0
votes
1answer
270 views

Using reflection to determine assembly module type

How would one use .net reflection to determine the type of the executing assembly, by type I mean dll or exe. Currently its possible to do something like: ...