Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

6
votes
2answers
185 views

C# deserialization of System.Type throws for a type from a loaded assembly

I have an application a.exe which is running fine and has loaded an assembly b.dll, which is a Prism module if that matters. This dll is loaded from a directory that is not in the path but is in the ...
5
votes
4answers
843 views

Best way to check if System.Type is a descendant of a given class

Consider the following code: public class A { } public class B : A { } public class C : B { } class D { public static bool IsDescendantOf(this System.Type thisType, System.Type ...
4
votes
1answer
46 views

When should System.Type be inherited

The documentation for Type.GetTypeCode states: Remarks When you inherit from Type, you can change the behavior of this method by overriding the GetTypeCodeImpl method. The documentation ...
3
votes
2answers
44 views

System.Type class and the IsPointer property

what is the major reason for The System.Type class to hold the "IsPointer" property? I have read that it could be used as the "Isprimitive" to check if the type is primitive or not. is that correct? ...
3
votes
1answer
635 views

System.Type.Missing or System.Reflection.Missing.Value when working with Office PIA?

I searched these SO results and couldn't find anything related to my question. I doubt this could be a duplicate. I'm currently writing a Microsoft.Office.Interop.Excel PIA wrapper in .NET C# 3.5 and ...
1
vote
1answer
45 views

What happened to System.TypeCode of value 17

The enum System.TypeCode is defined as follows: public enum TypeCode { Empty = 0, Object = 1, DBNull = 2, Boolean = 3, Char = 4, SByte = 5, Byte = 6, Int16 = 7, UInt16 = 8, ...
1
vote
2answers
232 views

System.Type; implicit cast to string

While looking at the System.Type class under the Code Definition Window, I cannot seem to understand how an instance of this class is implicitly cast to string. For example, on the following code: ...
1
vote
2answers
1k views

C# type name instead of CLR type name

typeof(int).Name Will return System.Int32 does anyone know of a way to return "int"
0
votes
3answers
74 views

IoC spring.net injecting System.Type

I am trying to initiate a class that is expecting a System.Type in it's CTOR. Is there a way in spring.net config file to accomplish this, and preferable pass the type of a spring initialised ...
0
votes
4answers
265 views

C# : return dbnull.value or system.type from function?

I want to create a function (c#): int PutInt (int? x) { if (x.HasValue) return x.Value; else return DBNull.Value; } but there is no cast from int to DBNull.Value. Is there ...
0
votes
2answers
120 views

New object from type? Specifically a resx file. I want a different resx at runtime

I'm trying to use browser specific resx files in some automation tests. I'm stuck at the point where I wish to instansiate the type. Can anyone point me in the right direction? I have tried ...
0
votes
2answers
292 views

How to “EnforceConstraints” to avoid linq errors?

I'm working on a sample from the book I bought. And, for unknown reason, I get the following error message " Could not find an implementation of the query pattern for source type 'System.Type'. ...
0
votes
1answer
84 views

Matching types using reflection in .NET

I am trying to use reflection to collect a property from a class that returns a certain type. However some of the properties I'm returning are strongly typed lists that house the type I want. ...