1
vote
1answer
57 views
Activator.CreateInstance()
Hey guys.
I've been using Activator.CreateInstance() in some of my codes. But I was just wondering if there's any risk to making an instance using this?
1
vote
1answer
51 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.
Wha …
1
vote
5answers
203 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 …
1
vote
3answers
94 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< …
1
vote
4answers
186 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 …
0
votes
3answers
222 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 ty …
0
votes
4answers
396 views
Activator.CreateInstance(t, 42, args) cannot find constructor
I am using (a slightly extended version of) the following code in a factory-pattern style function:
public class SingleItemNew : CheckoutContext
{
public BookingContext …
1
vote
3answers
219 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 …
1
vote
2answers
122 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 Ac …
4
votes
4answers
1k 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& …
0
votes
1answer
245 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 D …
1
vote
2answers
223 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 = Activator.CreateIn …
0
votes
3answers
712 views
C# Create objects with Generics at runtime.
In the following example i can create an object dynamically via a string; however, i have no way to get at the public methods of BASE class. i can't cast obj to a BASE because i d …
0
votes
1answer
179 views
C# CF2.0 - System.Activator and Internal classes
I've got a data provider that contains a collection of entities. I only want to be able to create a new entity through the data provider.
I.e, to create a new record I need to use …
1
vote
4answers
229 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 inje …
