1 type derived from ValueType
mscorlib (1)
system\enum.cs (1)
19public abstract class Enum : ValueType, IComparable, IFormattable, IConvertible
39 references to ValueType
mscorlib (13)
system\argiterator.cs (1)
134return ValueType.GetHashCodeOfPtr(ArgCookie);
System\Diagnostics\Eventing\TraceLogging\PropertyAccessor.cs (1)
73? default(ValueType)
system\multicastdelegate.cs (2)
507return ValueType.GetHashCodeOfPtr(_methodPtr) ^ ValueType.GetHashCodeOfPtr(_methodPtrAux);
system\reflection\emit\typebuilder.cs (1)
888valueClassType = m_module.DefineType(strValueClassName, typeAttributes, typeof(System.ValueType), PackingSize.Size1, size);
system\reflection\mdimport.cs (1)
299return ValueType.GetHashCodeOfPtr(m_metadataImport2);
system\reflection\methodinfo.cs (1)
426return ValueType.GetHashCodeOfPtr(m_handle);
system\rttype.cs (3)
2712internal static readonly RuntimeType ValueType = (RuntimeType)typeof(System.ValueType); 3977if (this == typeof(ValueType) || this == typeof(Enum)) 3980return IsSubclassOf(typeof(ValueType));
system\runtime\serialization\objectmanager.cs (1)
224if (holder.ObjectValue!=null && holder.ObjectValue is ValueType) {
system\runtimehandles.cs (2)
1095return ValueType.GetHashCodeOfPtr(Value); 1643return ValueType.GetHashCodeOfPtr(Value);
System.Activities.Presentation (4)
System.Activities.Presentation\System\Activities\Presentation\Model\ModelItemDictionaryImpl.cs (2)
688if (keyValue is ValueType || keyValue is string) 924if (keyValue is ValueType || keyValue is string)
System.Activities.Presentation\System\Activities\Presentation\Model\ModelTreeManager.cs (2)
151if (!((instance is ValueType) || (instance is string))) 756if (instance is ValueType || instance is string)
System.Core (3)
Microsoft\Scripting\Ast\TypeUtils.cs (2)
180if (AreReferenceAssignable(targetType, typeof(System.ValueType))) { 591if (source.IsValueType && (destination == typeof(object) || destination == typeof(System.ValueType)))
Microsoft\Scripting\Compiler\ILGen.cs (1)
616typeFrom == typeof(System.ValueType) ||
System.Data (5)
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\Model\ModelItemDictionaryImpl.cs (2)
688if (keyValue is ValueType || keyValue is string) 924if (keyValue is ValueType || keyValue is string)
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\Model\ModelTreeManager.cs (2)
151if (!((instance is ValueType) || (instance is string))) 756if (instance is ValueType || instance is string)
fx\src\data\System\Data\CodeGen\datacache.cs (1)
821if(col.DataType.IsSubclassOf(typeof(System.ValueType))) {
System.Data.DataSetExtensions (2)
System\Data\DataRowComparer.cs (2)
229System.ValueType vt = value as System.ValueType;
System.Runtime.Remoting (1)
metadata\wsdlwriter.cs (1)
814private static Type s_valueType = typeof(System.ValueType);
System.Runtime.Serialization (3)
System\Runtime\Serialization\DataContract.cs (2)
780type = typeof(ValueType); 865else if (type == typeof(Enum) || type == typeof(ValueType))
System\Runtime\Serialization\Globals.cs (1)
73typeOfValueType = typeof(ValueType);
System.ServiceModel (1)
System\ServiceModel\Description\TypeLoader.cs (1)
1247for (Type baseType = typedMessageType; baseType != null && baseType != typeof(object) && baseType != typeof(ValueType); baseType = baseType.BaseType)
System.ServiceModel.Activities (1)
System\ServiceModel\Activities\Dispatcher\PersistenceContext.cs (1)
494else if (instanceValue.Value == null && !(value is ValueType))
System.ServiceModel.Internals (1)
System\Runtime\TypeHelper.cs (1)
279if (sourceType.IsValueType && (destinationType == ObjectType || destinationType == typeof(ValueType)))
System.Windows.Forms (1)
winforms\Managed\System\WinForms\DataGridViewCell.cs (1)
1945!typeof(System.ValueType).IsAssignableFrom(this.FormattedValueType))
System.Xml (2)
System\Xml\Serialization\Types.cs (2)
715else if (type == typeof(ValueType)) { 850if (baseType != null && baseType != typeof(object) && baseType != typeof(ValueType)) {
WindowsBase (2)
Base\MS\Internal\AvTrace.cs (2)
313&& !(parameters[j] is ValueType) 496return typeof(ValueType);