StringValue.Implicit 运算符
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
重载
Implicit(String to StringValue) |
将指定的 String 值隐式转换为 StringValue 对象。 |
Implicit(StringValue to String) |
将指定的值隐式转换为 String 值。 |
Implicit(String to StringValue)
将指定的 String 值隐式转换为 StringValue 对象。
public static implicit operator DocumentFormat.OpenXml.StringValue (string value);
public static implicit operator DocumentFormat.OpenXml.StringValue (string? value);
static member op_Implicit : string -> DocumentFormat.OpenXml.StringValue
Public Shared Widening Operator CType (value As String) As StringValue
参数
- value
- String
指定的值。
返回
具有 值的新 StringValue 实例。
适用于
Implicit(StringValue to String)
将指定的值隐式转换为 String 值。
public static implicit operator string (DocumentFormat.OpenXml.StringValue xmlAttribute);
public static implicit operator string? (DocumentFormat.OpenXml.StringValue? value);
static member op_Implicit : DocumentFormat.OpenXml.StringValue -> string
static member op_Implicit : DocumentFormat.OpenXml.StringValue -> string
Public Shared Widening Operator CType (xmlAttribute As StringValue) As String
Public Shared Widening Operator CType (value As StringValue) As String
参数
- xmlAttributevalue
- StringValue
返回
转换后的值。 当 为 null
时value
返回 null
。