1 write to m_converter
mscorlib (1)
system\runtime\serialization\serializationinfo.cs (1)
89m_converter = converter;
19 references to m_converter
mscorlib (19)
system\runtime\serialization\serializationinfo.cs (19)
547Contract.Assert(m_converter != null, "[SerializationInfo.GetValue]m_converter!=null"); 549return m_converter.Convert(value, type); 580Contract.Assert(m_converter != null, "[SerializationInfo.GetValue]m_converter!=null"); 582return m_converter.Convert(value, type); 595return m_converter.ToBoolean(value); 608return m_converter.ToChar(value); 622return m_converter.ToSByte(value); 635return m_converter.ToByte(value); 648return m_converter.ToInt16(value); 662return m_converter.ToUInt16(value); 675return m_converter.ToInt32(value); 689return m_converter.ToUInt32(value); 702return m_converter.ToInt64(value); 716return m_converter.ToUInt64(value); 729return m_converter.ToSingle(value); 743return m_converter.ToDouble(value); 756return m_converter.ToDecimal(value); 769return m_converter.ToDateTime(value); 782return m_converter.ToString(value);