Tagged Questions
The gettype tag has no wiki summary.
15
votes
4answers
7k views
C# 'is' operator performance
I have a program that requires fast performance. Within one of its inner loops, I need to test the type of an object to see whether it inherits from a certain interface.
One way to do this would be ...
6
votes
3answers
383 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:
...
5
votes
3answers
1k views
Why would System.Type.GetType(“Xyz”) return null if typeof(Xyz) exists?
I have come across a strange behaviour in my (huge) .NET 4 project. At some point in the code, I am referring to a fully qualified type, say:
System.Type type = typeof (Foo.Bar.Xyz);
later on, I do ...
4
votes
3answers
185 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();
...
4
votes
7answers
150 views
Is there a way to get the type of the objects stored in a generic list?
Given a generic list of type List<T> how do I find type T?
I suppose if the list is populated I could take listInstance[0].GetType() but that seems a bit hackish.
Edit:
For context, I want to ...
4
votes
4answers
732 views
C# class type - How to determine whether it is a standard .net framework class
C# / .net framework
What is the most reliable way to determine whether a class (type) is a class provided by the .net framework and not any of my classes or 3rd party library classes.
I have tested ...
3
votes
2answers
75 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();
...
3
votes
5answers
521 views
Get the parent class of a null object (C# Reflection)
How would I get the parent class of an object that has a value of null?
For example...
ClassA contains int? i which is not set to any value when the class is created.
Then in some other place in ...
3
votes
2answers
107 views
How do I convert a type to a string that can be compiled in vb .net?
I need a function that will convert a type to a string, for example:
Dim foo as Dictionary(of Dictionary(of Integer, String), Integer)
Debug.WriteLine(TypeToString(GetType(foo)))
In the debug ...
3
votes
3answers
2k views
Using GetCurrentMethod in (supposedly) high-performance code
For logging purposes, some methods in our application include the following line:
Dim Log As ILog = GetLog(Reflection.MethodBase.GetCurrentMethod().DeclaringType)
I have what might be described as ...
2
votes
1answer
44 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 = ...
2
votes
5answers
292 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 ...
2
votes
4answers
289 views
what the difference to get Type by using GetType() and typeof()
Which one is the preferred way to get the type?
2
votes
2answers
253 views
Get Enum List via GetType
Hello everybody
I have code that gives a list of all possible values for any given enum
i bound it pretty often to dropdownlists in my webpages
now im trying to make a usercontrol which accepts the ...
2
votes
4answers
1k views
How to convert the current class name of asp.net usercontrols to string on c#?
So I have tried GetType() but for some reason, It does include the namespace...
Does C# not have a property for a class specifying its name?
For example:
public class Parent : ...
2
votes
4answers
313 views
Why does a GetType on a string-property result in a NullReferenceException?
When I call a GetType on a int- or a DateTime-property,
I get the expected results, but on a string-property,
I get a NullReferenceException (?) :
private int PropInt { get; set; }
...
2
votes
3answers
613 views
C# — how does one access a class' static member, given an instance of that class?
In C#, suppose you have an object (say, myObject) that is an instance of class MyClass.
Using myObject only, how would you access a static member of MyClass?
class MyClass
{
public static int ...
2
votes
3answers
339 views
(C#) why does Visual Studio say it's an object while GetType says it's a Func<object>?
C# newbie question here. The following code (taken from the book "C# From Novice to Professional" by Christian Gross, Apress) gives an error:
worksheet.Add("C3", CellFactories.DoAdd(worksheet["A2"], ...
2
votes
4answers
2k views
How to get name of a class property?
Is there anyway I can get the name of class property IntProperty?
public class ClassName
{
public static int IntProperty { get { return 0; } }
}
//something like below but I want to get the string ...
1
vote
2answers
88 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
186 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
...
1
vote
1answer
98 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
0answers
167 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
118 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 ...
1
vote
3answers
125 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 ...
1
vote
5answers
236 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 ...
1
vote
4answers
422 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
vote
1answer
253 views
.NET reflection - Get Declaring class type from instance property
Is it possible to get the type of a class from a property instance
I tried the following
var model = new MyModel("SomeValueForMyProperty")
Type declaringType = ...
1
vote
3answers
1k views
Android get type of a view
How can i do this?
something:
final View view=FLall.getChildAt(i);
if (view.getType()==ImageView) {
...
}
1
vote
2answers
224 views
VB.Net - how can i get the type of the object contained in an List
If I have a list...
dim l as List(of MyClass) = new List(of MyClass)
and I want to get the type of the objects contained in the list, how do I do that?
The obvious answer, that doesn't seem to be ...
1
vote
6answers
680 views
C# GetType().GetField at an array position
public string[] tName = new string[]{"Whatever","Doesntmatter"};
string vBob = "Something";
string[] tVars = new string[]{"tName[0]","vBob","tName[1]"};
Now, I want to change the value of tName[0], ...
1
vote
1answer
404 views
How-to: Load a type from a referenced assembly at runtime using a string in Silverlight
I have tried this, specifying the assembly name:
Type.GetType(string.Format("{0}.{1}, {0}", typeToLoad.AssemblyName, typeToLoad.ClassName));
Which throws the following:
The requested assembly ...
1
vote
2answers
351 views
How to hide GetType() method from COM?
I made an automation Add-In for Excel, and I made several functions (formulas).
I have a class which header looks like this (it is COM visible):
[ClassInterface(ClassInterfaceType.AutoDual)]
...
1
vote
4answers
227 views
How to dynamically use the PropertyType reflection attribute to create a respective typed Function<>?
I want to use type returned by PropertyType to create a typed function. I found this similiar
http://stackoverflow.com/questions/914578/using-type-returned-by-type-gettype-in-c
but this mentions how ...
1
vote
2answers
329 views
Getting the abstract class type from which a class derives
In .NET
using the GetType function returns the concrete class type of the object. The problem is that i don't know what the type is going to be until runtime, but i do know from which abstract class ...
1
vote
2answers
540 views
asp.net, gettype() and fully qualified class names
I've read through a few other threads on here, though none of them really explain how to resolve my issue.
I have a web application with the following page (code behind)
namespace ...
1
vote
6answers
804 views
Need help converting C# to vb. “array initializer is missing 1 elements”
I am trying to convet the following code from C# to Vb using 3.5 framework.
Here is the code in C# that I am having trouble with.
MethodInfo mi = typeof(Page).GetMethod("LoadControl", new Type[2] { ...
1
vote
4answers
410 views
ASP.NET - cant GetType() of MasterPage
I have a MasterPage and get its type as follows:
No problem, this works
Now, when I create an aspx page and try the same thing I get null:
Why?
How can I get this to work?
NOTE
The answers ...
0
votes
0answers
33 views
How to GetTypes() in C# Assembly which LoadFrom mixed mode dll with dependecies?
Assembly myAssembly = Assembly.LoadFrom( aOpenFileDialogAssemblies.FileName );
Type[] t = null;
try
{
t = myAssembly.GetTypes();
...
0
votes
1answer
22 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";
...
0
votes
2answers
28 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
73 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. ...
0
votes
4answers
175 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 ...
0
votes
0answers
152 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 ...
0
votes
0answers
237 views
Assembly.GetType returns null for custom class — suddenly stopped working
I've got this code in a Silverlight 4 app:
string typeName = typeInfo.TypeName.Replace("[]", string.Empty);
type = type.Assembly.GetType(typeName);
It is essentially working from a generic ...
0
votes
1answer
629 views
GetType(string) returns null after AppDomain.CurrentDomain.Load
I'am building a small plugin architecture (unfortunately MEF is not an options because it needs to run on .NET 2.0).
I want to be able to put dll's in a directory without recompiling the main project.
...
0
votes
2answers
793 views
C# ASP.NET GetType() with WebUserControl issue
In the project I have some custom WebUserControls for form elements (they encapsulate some standard validators and other system specific functions). My user controls are "DropDownListField" and ...
0
votes
1answer
188 views
How to get underlying type from typed DataSet
I've been searching a lot but I haven't found anything about this question. I'm making a log of my app and I'm printing types of variables and their values. I want to do the same for every object I ...
0
votes
2answers
420 views
Generic Function (Of T) - and object GetType comparison
I've created the following basic function to determine whether specific control type is currently loaded:
Private Function IsPreviewerTypeLoaded(Of T)() As Boolean
For Each previewer In ...
0
votes
1answer
55 views
Type equality performance
I have an iterator of objects and I have to take specific action if the item is of some type. That type is a friend class in the runtime, and therefore cannot be used in design-time.
So my question ...