Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

17
votes
6answers
2k views

C# Using Activator.CreateInstance

I asked a question yesterday regarding using either reflection or Strategy Pattern for dynamically calling methods. However, since then I have decided to change the methods into individual classes ...
14
votes
4answers
17k views

How to dynamically create generic C# object using reflection?

In C# I have the following object: public class Item { } public class Task<T> { } public class TaskA<T> : Task<T> { } public class TaskB<T> : Task<T> { } I want to ...
9
votes
2answers
188 views

T t = new T() is using internally Activator.CreateInstance()

Is it true that a new constraint on a method and inside the method I do: T t = new T() It is using Reflection/Activator.CreateInstance method internally?
4
votes
2answers
94 views

Class<T,C> and Activator.CreateInstance

Here is some class: public class MyClass<T, C> : IMyClass where T : SomeTClass where C : SomeCClass { private T t; private C c; ...
4
votes
8answers
141 views

public T GetMyClass<T>() where T : MyClass, new() { /* is this pointless? */ }

are the two methods in the class "Confused" below the same? class MyClass { public override string ToString() { return "I am confused now"; } } class Confused { public ...
4
votes
1answer
193 views

LINQ and Activator.CreateInstance() creates duplicates

I have next LINQ query to read App.config to instantiate objects using fully qualified types stated inside: var strategies = from strategy in section.Strategies let indicators = ( from indicator ...
4
votes
4answers
3k views

How do i use Activator.CreateInstance with strings?

In my reflection code i hit a problem with my generic section of code. Specifically when i use a string. var oVal = (object)"Test"; var oType = oVal.GetType(); var sz = ...
4
votes
10answers
8k views

Activator.CreateInstance can't find the constructor (MissingMethodException)

I have a class which has the following constructor public DelayCompositeDesigner(DelayComposite CompositeObject) { InitializeComponent(); compositeObject = CompositeObject; ...
3
votes
0answers
145 views

What are the difference between Activator.CreateInstance() and Assembly.CreateInstance() [closed]

Possible Duplicate: Difference between Assembly.CreateInstance and Activator.CreateInstance? I am a bit confused when should I use which one. For me I think they are doing the same job. Am ...
3
votes
3answers
782 views

How to check if a certain assembly exists?

I'm using the Activator to instantiate a new class based on the short name of an assembly (e.a. 'CustomModule'). It throws a FileNotFoundException, because the assembly isn't there. Is there a way to ...
3
votes
2answers
404 views

Ninject, Providers and Activator.CreateInstance

I'm fairly new to Ninject, but I have successfully managed to use it for DI using a custom provider. The binding is initialised as follows kernel = new StandardKernel(); ...
3
votes
2answers
500 views

Unable to catch exception from Activator.CreateInstance

OK, I admit it this code will just look weird to you, and that's because it is weird. This is just code to reproduce the behavior, not code I want to use. class Program { static void ...
2
votes
2answers
29 views

How to creates dynamically an array and sets the element

This can create an array dynamically: Assembly asm = object.GetType().Assembly; string sTypeName = "Company.Namespace.ClassName"; object arrayWithSize1 = Activator.CreateInstance( ...
2
votes
1answer
41 views

How do I instantiate an object from the Activator when its interface has generics?

In my code I have the following interface public interface ILogParser<TParserOptions> { } I have retrieved all types that use this interface via reflection and I am trying to instantiate ...
2
votes
4answers
303 views

Fast creation of objects instead of Activator.CreateInstance(type)

I'm trying to improve the performance of our application. We have a lot of Activator.CreateInstance calls that are causing some grief. We instantiate a lot of classes based on an interface ...
2
votes
3answers
116 views

How do I programatically open an application and check when it's closed?

I've been able to use a winforms application to open another winforms application using: Rhino4.Application oRhino = ...
2
votes
2answers
352 views

does System.Activator.CreateInstance(T) have performance issues big enough to discourage us from using it casually?

I'm wondering, does System.Activator.CreateInstance(T) method have performance issues (since I'm suspecting it uses reflection). In fact my question is: Does System.Activator.CreateInstance(T) have ...
2
votes
2answers
118 views

Create and instance of a Dictionary(Of K,V) with Activator.CreateInstance

Given the below code, I'm trying to create a new instance of a Dictionary(Of String, ??) based on a ItemType variable I have. How do I construct the DictType so that I can use Activator to create an ...
2
votes
5answers
1k views

Activator.CreateInstance: Dynamic Instantiation of Classes

I am designing a loosely-coupled structure. I want to call classes from different assemblies/namespaces via a code which is represented by a String. My design is, each of client's business rules is on ...
2
votes
1answer
447 views

Activator.CreateInstance()

I've been using Activator.CreateInstance() in some of my codes. Is there any risk to making an instance using this?
2
votes
1answer
579 views

Activator.GetObject - Using the state parameter

In .NET Remoting, Activator.GetObject method has a state parameter. What is the purpose of this state param? Can I retrieve its value from server side? mdsn didn't help much. What I'd like to do: ...
2
votes
7answers
3k views

.NET: Unable to cast object to interface it implements

I have a class (TabControlH60) that both inherits from a base class (UserControl) and implements an interface (IFrameworkClient). I instantiate the object using the .NET Activator class. With the ...
2
votes
3answers
264 views

C#: How to find and create instances which fullfills multiple type constraints

Ok, maybe that title didn't make much sense, but here is the deal. Say I have a generic method with multiple type constraints, this this: public static void DoSomethingAwesome<T>(T thing) ...
2
votes
5answers
2k views

Set property Nullable<> by reflection

I try to set a Nullable<> property dynamicly. I Get my property ex : PropertyInfo property = class.GetProperty("PropertyName"); // My property is Nullable<> at this time So the type could ...
2
votes
2answers
713 views

Define a typed dataset dynamically?

I am trying to create an instance of a typed dataset dynamically in my code at runtime. I have the type available to me, but when I try to do this: object obj = ...
1
vote
1answer
43 views

Cast ObjectHandle to UserControl

How to cast a Remoting.ObjectHandle to UserControl type ? I would like to dynamically instanciate a UserControl : UserControl myUserControl = ...
1
vote
3answers
76 views

Activator.CreateInstance(string, string) throwing TypeLoadException

I have the following code: public static void Invoke(string assemblyName, string scheduledTaskExecutorName) { ObjectHandle objectHandle = Activator.CreateInstance(assemblyName, ...
1
vote
2answers
47 views

Any reason for this call to Activator.CreateInstance?

I'm maintaining someone else's code and they have this section in a method: object ReportCriteriaInstance = Activator.CreateInstance( ...
1
vote
1answer
48 views

Activator.CreateInstance Works in Web Service ONLY if User is Logged in Locally

I have a WCF Service that impersonates a user and calls Activator.CreateInstance to create a COM Object: if(impersonateValidUser(impersonatedUser,impersonatedUserDomain,impersonatedUserPassword)) ...
1
vote
0answers
167 views

C#, Type.GetType() not returning class name from string in all cases

My code is like this public static object getClassInstance(string key, params object[] constructorArgs) { string assemblyPath = null; string customClassName = null; ...
1
vote
1answer
242 views

System.Activator.CreateInstance returning null

The problem I have is that CreateInstance returns null. Here is the code: if(spattmono[0] != null) { if((SpecialAttack) System.Activator.CreateInstance( spattmono[0].GetClass()) == null) ...
1
vote
3answers
306 views

.NET Remoting with Reflection

I need to dynamically load an interface assembly that I use on client-side remoting. Something like this. static void Main(string[] args) { TcpClientChannel clientChannel = new TcpClientChannel(); ...
1
vote
1answer
163 views

Activator.CreateInstance is unable to find a constructor

I have a data access provider class defined as: (this is only a part of a class relevant to my question) public class OraDbTerminalStorage : OraDbStorage, ITerminalStorage { private ...
1
vote
5answers
198 views

c# string to class form wich i can call functions

on initialize a class by string variable in c#? I already found out how to create an class using a string so what i already have is : Type type = Type.GetType("project.start"); var class = ...
1
vote
3answers
473 views

“The notification message type <MessageType> was unexpected.” is logged by SSBEA and my app is never called

I am running SQL Server 2005 Standard Edition with External Activator installed. I have the following code in an SSMS tab: -- Begin a conversation and send a request message DECLARE @InitDlgHandle ...
1
vote
1answer
390 views

InvalidCastException of a Activator.CreateInstance object during an installation procedure

I have the following procedure private static IMyInterface OpenInstance( string assemblyPath, string classType, string assemblyName, out AppDomain domainInstall) { IMyInterface interface = ...
1
vote
1answer
445 views

Can't Instantiate Windsor Custom Component Activator

I'm getting an exception calling Resolve: KernelException: Could not instantiate custom activator Inner Exception: {"Constructor on type 'MyProj.MyAdapter`1[[MyProj.MyBusinessObject, MyAsm, ...
1
vote
1answer
594 views

Call Activator.CreateInstance in a dll to intance class that reside inside Asp.Net App_Code

Help, here is the idea: External.dll IMyClass NewCreated = (IMyClass)Activator.CreateInstance(Namespace.MyClass).UnWrap(); Asp.Net WebSite App_Code Namespace.MyClass.cs Bin ...
1
vote
1answer
137 views

Use two vesrions of Microsoft.Reporting DLL's at the same time in VB

Problem It looks like MS have removed support for nested Business Objects in their Report Viewer 2010 companant. We would like to upgrade our web app to make use of the new features, but need to ...
1
vote
2answers
2k views

How to access Microsoft Word existing instance using late binding

i am developing some code in c# where i will be interacting with Microsoft Word. I want to be able to have the option of re-using an existing instance or as an alternative creating a new instance. ...
1
vote
5answers
5k views

Activator.CreateInstance() troubles

I have a factory that is supposed to create objects that inherit from class Foo at run-time. I would think that System.Activator.CreateInstance's return type was the same as the type of an object it's ...
1
vote
4answers
692 views

C# foreach loop causes CS 0246 Type or namespace could not be found

I have a foreach loop that cycles through a list of types and creates an instance of each one. However, when I build, it gives a CS0246 error ("The type or namespace could not be found ... "). ...
1
vote
2answers
383 views

Using Activator best way to create instances of classes with multiple constructors?

I have implemented a 'plugin' system where my application creates classes that implement an interface at runtime to allow pluggable functionality. I am achieving this by using ...
1
vote
2answers
2k views

Activator.CreateInstance throws ArgumentNullException for parameter 'Type'

I recently encountered a problem with my Profile provider: it wouldn't retrieve profiles correctly (see error below). It worked locally, but when I put the code compiled by a Web Deployment project on ...
1
vote
4answers
1k views

Activator and static classes

I'm tossing around the idea of using the Activator class in order to get access to resources in an assembly that I would otherwise create a circular reference for (dependency injection). I've done ...
0
votes
0answers
4 views

CreateInstance using remotable parameter

I've been looking for this more than 2 or 3 days and I could not find any answer. I'm not quite sure if I'm able to do it yet, so I beg for your help. We have an interface which is used to activate a ...
0
votes
1answer
39 views

How can I create a generic “example” object of (practically) any given type?

I'm working on a metadata generator that basically auto-generates documentation for a REST API. Part of this includes showing the request/response types, which of course can be DTOs. What I'd like is ...
0
votes
0answers
8 views

A custom RMI Activator process

I am trying to implement a custom RMI activation scheme, in which remote Activatable objects will be hosted in a custom EXE process, instead of the standard Java.exe/Javaw.exe. In RMI 'Activatable' ...
0
votes
2answers
45 views

Using .NET Activator.CreateInstance without using DTO

I have a Form class that contains several custom Form Elements. I have an Entity object, that provides specific attributes for the element, these are parsed from on XML file. All elements take the ...
0
votes
1answer
123 views

LINQ dynamic object creation without reflection (Activator.CreateInstance) and method invocation

I am writing pipeline logic. The idea is to create in instances of the object on fly and execute method Run methods in each case. I can do old way with reflections Activator.CreateInstance quite easy, ...

1 2