Tagged Questions
0
votes
0answers
26 views
How to know if ConstructorInfo is dynamically generated [duplicate]
Possible Duplicate:
Detect compiler generated default constructor using reflection in c#
I am using the following line of code to get the members of a type using reflection:
Type t = ..;
...
4
votes
3answers
655 views
How to get the default value for a ValueType Type with reflection
If I have a generic type parameter that is a value type and I want to know if a value is equal to the default I test it like this:
static bool IsDefault<T>(T value){
where T: struct
...
15
votes
7answers
1k views
Is it possible in java to create 'blank' instance of class without no-arg constructor using reflection?
I have a class which has not default constructor. And I need a way to get 'blank' instance of this class. 'blank' means that after instantiation all class fields should has default values
like null, 0 ...
2
votes
3answers
360 views
Detect compiler generated default constructor using reflection in C#
I'm targeting .NET 3.5 SP1 and I'm using CommentChecker to validate my XML documentation, everything works OK until I get to a class like this:
/// <summary>
/// documentation
/// ...
37
votes
6answers
34k views
Creating instance of type without default constructor in C# using reflection
Take the following class as an example:
class Sometype
{
int someValue;
public Sometype(int someValue)
{
this.someValue = someValue;
}
}
I then want to create an instance ...