SerializationInfo.GetInt16(String) 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
从 SerializationInfo 存储中检索一个 16 位带符号整数值。
public:
short GetInt16(System::String ^ name);
public short GetInt16 (string name);
member this.GetInt16 : string -> int16
Public Function GetInt16 (name As String) As Short
参数
- name
- String
与要检索的值关联的名称。
返回
与 name
关联的 16 位带符号整数。
例外
name
为 null
。
与 name
关联的值不能转换为 16 位带符号整数。
当前实例中没有找到具有指定名称的元素。
注解
如果值为 16 位有符号整数,或可转换为 1,则返回该值;否则, InvalidCastException 将引发 。 所有转换都由 IFormatterConverter 与此 SerializationInfo关联的 完成。