60 references to Value
mscorlib (60)
system\array.cs (1)
1086return EmptyArray<T>.Value;
system\collections\arraylist.cs (1)
53private static readonly Object[] emptyArray = EmptyArray<Object>.Value;
system\collections\emptyreadonlydictionaryinternal.cs (2)
102return EmptyArray<Object>.Value; 108return EmptyArray<Object>.Value;
system\collections\sortedlist.cs (1)
84private static Object[] emptyArray = EmptyArray<Object>.Value;
system\globalization\compareinfo.cs (1)
1103keyData = EmptyArray<Byte>.Value;
system\io\binaryreader.cs (2)
489return EmptyArray<Char>.Value; 529return EmptyArray<Byte>.Value;
system\reflection\customattribute.cs (1)
1335return (caType.IsValueType) ? EmptyArray<Object>.Value : CreateAttributeArrayHelper(caType, 0);
system\reflection\emit\dynamicilgenerator.cs (6)
1030m_exceptions = EmptyArray<Byte>.Value; 1031m_code = EmptyArray<Byte>.Value; 1032m_localSignature = EmptyArray<Byte>.Value; 1065m_code = (code != null) ? (byte[])code.Clone() : EmptyArray<Byte>.Value; 1092m_exceptions = (exceptions != null) ? (byte[])exceptions.Clone() : EmptyArray<Byte>.Value; 1117m_localSignature = (localSignature != null) ? (byte[])localSignature.Clone() : EmptyArray<Byte>.Value;
system\reflection\emit\dynamicmethod.cs (4)
304CustomAttributeBuilder transparencyAttribute = new CustomAttributeBuilder(transparencyCtor, EmptyArray<Object>.Value); 942return EmptyArray<Object>.Value; 1020return EmptyArray<Object>.Value; 1024return EmptyArray<Object>.Value;
system\reflection\emit\methodbuilder.cs (2)
352m_parameterTypes = EmptyArray<Type>.Value; 398m_parameterTypes = EmptyArray<Type>.Value;
system\reflection\emit\symbolmethod.cs (1)
53m_parameterTypes = EmptyArray<Type>.Value;
system\reflection\emit\typebuilder.cs (1)
1207return EmptyArray<Type>.Value;
system\reflection\fieldinfo.cs (2)
957return EmptyArray<Type>.Value; 962return EmptyArray<Type>.Value;
system\reflection\methodinfo.cs (1)
981types = EmptyArray<Type>.Value;
system\reflection\parameterinfo.cs (6)
132return EmptyArray<Type>.Value; 137return EmptyArray<Type>.Value; 158return EmptyArray<Object>.Value; 167return EmptyArray<Object>.Value; 732return EmptyArray<Object>.Value; 744return EmptyArray<Object>.Value;
system\reflection\propertyinfo.cs (2)
132public virtual Type[] GetRequiredCustomModifiers() { return EmptyArray<Type>.Value; } 134public virtual Type[] GetOptionalCustomModifiers() { return EmptyArray<Type>.Value; }
system\rttype.cs (8)
138return EmptyArray<T>.Value; 801return EmptyArray<RuntimeConstructorInfo>.Value; 1188return EmptyArray<RuntimeType>.Value; 4195types = EmptyArray<Type>.Value; 4309constraints = EmptyArray<Type>.Value; 4502members = EmptyArray<MemberInfo>.Value; 4945providedArgs = EmptyArray<Object>.Value; 5202args = EmptyArray<Object>.Value;
system\security\cryptography\base64transforms.cs (2)
78return(EmptyArray<Byte>.Value); 212return (EmptyArray<Byte>.Value);
system\security\cryptography\cryptoapitransform.cs (1)
193Utils._EncryptData(_safeKeyHandle, EmptyArray<Byte>.Value, 0, 0, ref temp, 0, PaddingValue, true);
system\security\cryptography\hashalgorithm.cs (1)
181outputBytes = EmptyArray<Byte>.Value;
system\security\cryptography\hmac.cs (2)
148m_hash1.TransformFinalBlock(EmptyArray<Byte>.Value, 0, 0); 155m_hash2.TransformFinalBlock(EmptyArray<Byte>.Value, 0, 0);
system\security\cryptography\passwordderivebytes.cs (1)
249_hash.TransformFinalBlock(EmptyArray<Byte>.Value, 0, 0);
system\security\cryptography\rfc2898derivebytes.cs (2)
231m_hmac.TransformFinalBlock(EmptyArray<Byte>.Value, 0, 0); 238m_hmac.TransformFinalBlock(EmptyArray<Byte>.Value, 0, 0);
system\security\cryptography\utils.cs (2)
813hash.ComputeHash(EmptyArray<Byte>.Value); // Use an empty octet string 903hash.ComputeHash(EmptyArray<Byte>.Value);
system\text\encoding.cs (3)
713return EmptyArray<Byte>.Value; 1584return EmptyArray<Char>.Value; 1590return EmptyArray<Char>.Value;
system\text\unicodeencoding.cs (1)
1940return EmptyArray<Byte>.Value;
system\text\utf32encoding.cs (1)
1204return EmptyArray<Byte>.Value;
system\text\utf8encoding.cs (1)
2398return EmptyArray<Byte>.Value;
system\type.cs (1)
56public readonly static Type[] EmptyTypes = EmptyArray<Type>.Value;