Example #1
0
 static internal bool IsValidVOUsualType(this TypeSymbol type, CSharpCompilation compilation)
 {
     switch (type.SpecialType)
     {
     case SpecialType.System_Int32:
     case SpecialType.System_Int64:
     case SpecialType.System_Boolean:
     case SpecialType.System_String:
     case SpecialType.System_IntPtr:
     case SpecialType.System_Decimal:
     case SpecialType.System_DateTime:
     case SpecialType.System_Object:
         return(true);
     }
     if (type == compilation.ArrayType())
     {
         return(true);
     }
     if (type == compilation.CodeBlockType())
     {
         return(true);
     }
     if (type == compilation.DateType())
     {
         return(true);
     }
     if (type == compilation.FloatType())
     {
         return(true);
     }
     if (type == compilation.SymbolType())
     {
         return(true);
     }
     if (type == compilation.PszType())
     {
         return(true);
     }
     return(false);
 }