1
vote
6answers
62 views
C# How to create Object name fron string variaable
Hello,
I have windows form with one textbox(Pname) and one button.
I have one class by name Player with no constructor.
When user enters text inside textbox (e.g. John) and click …
1
vote
3answers
22 views
how to dynamicaly call a method while repecting privacy
Using dynamic method calls (#send or #method) the methods visibility is ignored.
is there a simple way to dynamically call a method that will fail calling a private method?
0
votes
5answers
49 views
Reflection.Emit better than GetValue & SetValue :S
I've been told to use Reflection.Emit instead of PropertyInfo.GetValue / SetValue because it is faster this way.
But I don't really know what stuff from Reflection.Emit and how to …
2
votes
2answers
112 views
Non-code-generated forwarding shim for testing private methods
In general, I design classes in such a manner as to not require access to privates for testing purposes. An InternalsVisibleTo can also assist.
However, I'm currently dealing wit …
5
votes
6answers
149 views
Is it possible to clone a ValueType?
Is it possible to clone an object, when it's known to be a boxed ValueType, without writing type specific clone code?
Some code for reference
List<ValueType> values = new L …
0
votes
2answers
36 views
Load Assembly at runtime and create class instance
I have a assembly. In this assembly I have a class and interface. I need to load this assembly at runtime and want to create an object of the class and also want to use the interfa …
5
votes
7answers
189 views
C/C++: any way to get reflective enums?
I've encountered this situation so many times...
enum Fruit {
Apple,
Banana,
Pear,
Tomato
};
Now I have Fruit f; // banana and I want to go from f to the string "Banan …
1
vote
2answers
29 views
Advanced topic of dynamic lazy loading of DLLs in silverlight application
It's a common sense when you are developing a big silverlight application that break it into many small components, to make the original XAP file relatively small and dynamically l …
0
votes
1answer
35 views
Cast Interface in generic method
Hello All
I am new user of interface. My problem is i have create a Generic class which have two parameter
one is object type another is interface type. Now within class i can cas …
1
vote
2answers
38 views
How can I prevent CompileAssemblyFromSource from leaking memory?
I have some C# code which is using CSharpCodeProvider.CompileAssemblyFromSource to create an assembly in memory. After the assembly has been garbage collected, my application uses …
1
vote
2answers
30 views
Access the function object (closure) of a setter
Assume I have the following class:
class Example
{
function set something(value:String):void
{
trace("set something");
}
function doSomething():void
{ …
2
votes
2answers
51 views
Getting attributes of Enum’s value
Hi everyone,
I would like to know if it is possible to get attributes of the enum values and not of the enum itself? For example, suppose I have the following enum:
enum FunkyAtt …
2
votes
1answer
53 views
how know if a Type has inherited some other type ?
how know if a Type has inherited some other type ?
Type t;
// i get the t from somewhere
bool b = t.IsInhertitedFrom(typeof(BaseType));
3
votes
9answers
153 views
Is Reflection breaking the encapsulation principle?
Okay, let's say we have a class defined like
public class TestClass
{
private string MyPrivateProperty { get; set; }
// This is for testing purposes
public string Get …
2
votes
4answers
60 views
Python: Get list of all classes within current module
I've seen plenty of examples of people extracting all of the classes from a module, usually something like:
# foo.py
class Foo:
pass
# test.py
import inspect
import foo
for …
