Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Test of the model type
Message
 
 
À
Tous
Information générale
Forum:
ASP.NET
Catégorie:
MVC
Titre:
Test of the model type
Versions des environnements
Environment:
C# 4.0
OS:
Windows 7
Network:
Windows 2003 Server
Database:
MS SQL Server
Divers
Thread ID:
01560569
Message ID:
01560569
Vues:
53
Hi everybody,

This is more of a C# language question, but I want to implement this logic in the razor view.

I found that for my case the ViewData.ModelMetadata.ModelType returned Int16.

So, this is what I started to write
@if (ViewData.ModelMetadata.ModelType.ToString()
And I am not sure how to finish it. I want to test it against (first 3 chars to be Int or other numerical types (I guess I need to test for decimal)?

Do you know what is the best way to implement this logic?

Thanks in advance.

-----------------------
By some googling on this topic I found this
Type objType = typeof(T);

    if (objType.IsPrimitive)
    {
        return (objType != typeof(bool) && 
            objType != typeof(char) && 
            objType != typeof(IntPtr) && 
            objType != typeof(UIntPtr)) ||
            objType == typeof(decimal);
    }
in http://stackoverflow.com/questions/1130698/checking-if-an-object-is-a-number-in-c-sharp

Do you think I can somehow apply that code to my case?
If it's not broken, fix it until it is.


My Blog
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform