本文整理匯總了VB.NET中System.ServiceModel.Dispatcher.QueryStringConverter類的典型用法代碼示例。如果您正苦於以下問題:VB.NET QueryStringConverter類的具體用法?VB.NET QueryStringConverter怎麽用?VB.NET QueryStringConverter使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。
在下文中一共展示了QueryStringConverter類的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的VB.NET代碼示例。
示例1: QueryStringConverter
Dim converter As New QueryStringConverter()
If (converter.CanConvert(GetType(Int32))) Then
converter.ConvertStringToValue("123", GetType(Int32))
End If
Dim value As Integer = 321
Dim strValue As String = converter.ConvertValueToString(value, GetType(Int32))
Console.WriteLine("the value = {0}, the string representation of the value = {1}", value, strValue)