The tag has no wiki summary.

learn more… | top users | synonyms

2
votes
2answers
48 views

Why does System.Exception shadow GetType()

While attempting to compare two dlls for API changes, a co-worker noticed that some classes had two GetType() methods. Upon deeper inspection, it turns out that System.Exception shadows GetType(): ...
1
vote
1answer
29 views

Error when dynamically creating a generic list through reflection

when i run the program an error message pops up, it says: Object reference not set to an instance of an object from the methodinfo.invoke(data, null). what i want is create a dynamic generic ...
0
votes
2answers
60 views

How to know the data type of value entered by user at runtime in textbox?

How to know the data type of value entered by user at runtime in textbox ? Do share with an simple example I have tried it by using GetType() but to no use , it always shows System.String , whether ...
1
vote
1answer
86 views

How to get a Type from an object in another DLL?

I've got an object called "Communication" that has a method to "CreatePdfFromTemplate". This method is going to be called from a Windows Service that has a SqlDependancy on a table that will notify ...
-1
votes
2answers
124 views

Assembly.GetType returns null [closed]

I want to get my assembly's Type: string name = "Namespace.Folder1.Folder2.MyClass"; Assembly assembly = Assembly.Load(convertedAssembly); // works fine assembly.GetType(name); // returns null. I ...
0
votes
1answer
82 views

Type.GetType() visibility issue between projects (Visual C#)

I ran into a peculiarish problem. I am working on a dynamic factory project and my intention is to be able to create new objects based on an XML file. My problem is this: I have a separate project ...
0
votes
1answer
75 views

VB Assignment of member field programmatically

This question is a follow-on to VB ReDim of member field programmatically. After the arrays are dimensioned appropriately, I try to set the values of the elements, but I get an exception at run time ...
0
votes
8answers
513 views

C# Unhandled Exception: System.NullReferenceException: Object reference not set to an instance of an object

Hello, I have a problem understanding why this piece of code: using System; class Person { public Person() { } } class NameApp { public static void Main() { Person me = ...
0
votes
1answer
57 views

VB ReDim of member field programmatically

I am trying to ReDim a member array based on reading a file. I cannot figure out how to do it. This is what I tried, but it does not work. Public Class BS Public A() As String Public B() As ...
0
votes
0answers
67 views

Override Page.Master property for custom dynamic master pages casting (MasterType)

I need a solution for strongly typed dynamic master pages (based on my cms template layouts) wich I set in a base class wich inherits from System.Web.UI.Page and wich is inherited from all my page (a ...
0
votes
1answer
35 views

Invoke MethodInfo from dll file

I'm writing a dll library that must be attachable to any project, and there's one thing I cannot resolve. I need to Invoke/Run MethodInfo from dll file. And it looks something like this. ...
0
votes
0answers
73 views

ASP.net determine if property exists getting 'Cannot Index' error

I'm attempting to learn classes in Visual Basic and need a way to figure out if the key of a dictionary object does exist as a property of a class I'm building. I'm getting the Class 'System.Type' ...
2
votes
1answer
73 views

What does (type1)+(type2) means using GetType().ToString()?

I'm writing a little Console app to test some basic MS ProjectServer interop. I can connect to the server with no problems, and I was trying to refactor one of my for (int i = 0; i < ...
0
votes
2answers
69 views

Check object is equal to generic type

I have a method that does some type conversion. I don't want to go through the whole process if the type is equal to the generic types passed. Here's a snippet. public static T ...
2
votes
2answers
110 views

C# Set Property in unknow object

I have to set a property inside an unknown object. The structure looks like this: ObjA.ObjB().ObjC.PropA = propValue; ObjA is from a referenced class. ObjB() is of type object and therefore ...
1
vote
1answer
89 views

Type.GetType for Interfaces

I am using PRISM (recently started). How do I dynamically resolve the interface type defined as the string and pass it to Container.Resolve? For example, I have an interface called ...
0
votes
0answers
124 views

HitTestResult.getType() returns null

I am using WebView in my application. I have written the below code for touch event of WebView. mWebView.setOnTouchListener(new View.OnTouchListener() { public boolean onTouch(View v, MotionEvent ...
0
votes
2answers
1k views

Get type in referenced assembly by supplying class name as string?

These are similar questions: How-to: Load a type from a referenced assembly at runtime using a string in Silverlight, GetType on a class in a referenced assembly fails but neither answer works. I've ...
0
votes
1answer
253 views

Assembly.GetTypes() generating LoaderException Error

I tried googling a lot but failed to found a solution. Please help me through. I have a windows application setup wizard which will run a installer class where custom actions are assigned to do. ...
11
votes
1answer
186 views

Unexpected value of System.Type.FullName

I recently needed to build C# specific name (which must always include global:: specifier) for an arbitrary type and have come accross following issue: // 1 - value: System.String[,,,][,,][,] string ...
1
vote
1answer
3k views

VB.net xml check element exist and if it has a value

I have an xml ant I am trying to chcke if an element exist and if yes then if it has a value xml example: <Attributes Version="1.0.2012"> <OpenAtStart>True</OpenAtStart> ...
0
votes
4answers
345 views

When and where to use GetType() or typeof()? [duplicate]

Possible Duplicate: What is the difference of getting Type by using GetType() and typeof()? Why this compiles if (mycontrol.GetType() == typeof(TextBox)) {} and this do not? Type tp = ...
0
votes
2answers
307 views

VarType to GetType()

I am converting a VB.NET project to C# and I got stuck on this if-loop, could anyone help me convert this? I am assuming that i'll need to use the GetType()-method for this but I'm not sure how. The ...
1
vote
0answers
56 views

How to get the original Type of a Nullable object? [duplicate]

Possible Duplicate: Nullable type is not a nullable type? How to check if an object is nullable? See the codes below. Is there a way to get something like System.Nullable`1[System.Int32] by ...
0
votes
4answers
569 views

Call non-static GetType() in static method? [duplicate]

Possible Duplicate: .NET: Determine the type of “this” class in its static method Hello is there any way to call non-static GetType() in non-static class without using typeof()? Here is ...
1
vote
2answers
313 views

Type.GetType() doesn't work for non-native types?

I tried getting the type of UnityEngine.Vector3 using Type.GetType() but its returning NULL. It works fine for native types.
1
vote
2answers
235 views

Specify generics type using a field

Suppose I have the following class: public class MyClass { public decimal myDecimal; public string myString; } I want to use the DataRowExtensions method Field<> Currently, I am using ...
0
votes
1answer
47 views

LINQPad taking long time to execute?

//LINQPad version 4.31 - for me this code takes 1 minute and 40 seconds to execute. Can anyone else //confirm / explain whats going on var v = new {Name="jon",Age=33}; v.Age.Dump(); ...
0
votes
1answer
286 views

Cannot seem to use GetType with Activator.CreateInstance

I am trying to get an object using Reflection, and then launch a method on that object. I was getting null from Type.GetType("my.namespace.item") so I decided to try a test that SHOULD work. Using ...
0
votes
3answers
274 views

What could cause String.charAt(0) to print nothing, and be of character type “16”?

Anyone have an idea about what could be going on here? The first block shows what I would generally expect to see - the first character of a string is in index '0', with the 'problem' string ...
-1
votes
2answers
219 views

Getting type of not initialized variable

There is main a variable which has uninitialized variables. I need to retrieve the Type of uninitialized varible type with reflection. Because I am generating the values dynamically but can't get the ...
4
votes
2answers
276 views

Possible multiple enumeration of IEnumerable warning by using .GetType()

I get the ReSharper warning "Possible multiple enumeration of IEnumerable" with following code: public void Mymethod(IEnumerable<int> entities) { var enumerator = entities.GetEnumerator(); ...
2
votes
3answers
1k views

Type.GetType() returning null

I have a web application that dynamically creates a web page using usercontrols. Within my code I have the following: private void Render_Modules() { foreach ...
1
vote
6answers
922 views

C# Reflection: How to get the type of a Nullable<int>?

What I want to do is something like this: switch( myObject.GetType().GetProperty( "id") ) { case ??: // when Nullable<Int32>, do this case ??: // when string, do this ...
0
votes
1answer
88 views

GetType() by last Control type

I know, its a simple one. I want to get the type of the control in Winforms form. Button btn = new Button(); btn.Name = "btnLoadForm"; btn.Text = "Click to Load Form"; ...
1
vote
1answer
396 views

cursor.getType() and CursorIndexOutOfBoundsException exception

There is a thing that I can not understand about Cursor.getType(), can anyone explain why do I get this stupid exception when I want to get columns type if cursor has no record but there are columns? ...
1
vote
2answers
95 views

Why does the gettype() say it's a double but var_dump() says float?

Why does the gettype() say it's a double but var_dump() says float? $number = 1234567890123456789; echo "Number: {$number} is a ". gettype($number) . "\n"; var_dump($number); Response: Number: ...
0
votes
5answers
204 views

foreach dictionary to check derived class

I have a base class Rules.cs. There are 2 derived classes RowRules.cs and ColumnRules.cs. I have another class Test.cs. This class has a Dictionary <int, Rules> which keeps adding the values. ...
2
votes
5answers
2k views

Type.GetType(string typeName) returns null

My code is type = Type.GetType(key); Key which i pass is a namespace qualified name . My code is in BusinessLayer. I am creating a instance of DataAccessLayer. DataAccessLayer reference is ...
1
vote
0answers
470 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
3answers
240 views

GetType() == type perfomance question

I am making a XNA game and I am calling following code 2 to 20 times per update. I tried googling and it seems like this is semi-slow, so I just thought I'd ask if there is any faster way to compare ...
2
votes
3answers
2k views

Type.GetType return null

I am trying to use Type.GetType and pass "caLibClient.entity.Web2ImageEntity" full class name. The caLibClient.entity is namespace, located in separated assembly (caLibClient) and added to program ...
2
votes
1answer
60 views

How can i get the system type of a value i get from a form/string?

i have never tried something like this so i need your help. i have the following code: public int AddChannel(NameValueCollection FormValues) { string Keys = ...
19
votes
4answers
1k views

Why GetType returns System.Int32 instead of Nullable<Int32>?

Why is the output of this snippet System.Int32 instead of Nullable? int? x = 5; Console.WriteLine(x.GetType());
0
votes
0answers
520 views

php gettype fix

Following function I created is to store data in a database with the correct type. I have several questions: It makes sense to me to turn empty strings in to NULL. Are there consequences I am not ...
5
votes
3answers
2k views

Unloading the Assembly loaded with Assembly.LoadFrom()

I need to check the time amount to run GetTypes() after loading the dll. The code is as follows. Assembly assem = Assembly.LoadFrom(file); sw = Stopwatch.StartNew(); var types1 = assem.GetTypes(); ...
2
votes
5answers
2k views

C# Generic T Class TypeOf, is this possible?

I have a class that is generic. Class<T> and depending in the switch statement in the calling code it can be class<int> class<string> class<decimal> The the method that ...
1
vote
5answers
1k views

GetType() and Typeof() in C#

itemVal = "0"; res = int.TryParse(itemVal, out num); if ((res == true) && (num.GetType() == typeof(byte))) return true; else return false; // goes here when I debugging. Why ...
12
votes
3answers
3k views

MySQL integer field is returned as string in PHP

Hi guys I have a table field in a MySQL database: userid INT(11) So I am calling it to my page with this query: "SELECT userid FROM DB WHERE name='john'" Then for handling the result I do: ...
1
vote
4answers
3k views

Get datatype from values passed as string

I am writing a framework that will connect to many different data source types and return values from these sources. The easy ones are SQL, Access and Oracle. The tougher ones are Sharepoint, CSV. ...

1 2