英語ロケールなどでうまく動かない場合はLCIDを指定すればよい
before.vb
Return StrConv("123-4", VbStrConv.Narrow)
after.vb
Private ReadOnly _LCID As Integer = New System.Globalization.CultureInfo("ja-JP", True).LCID
Return StrConv("123-4", VbStrConv.Narrow, _LCID)
Go to list of users who liked
More than 5 years have passed since last update.
英語ロケールなどでうまく動かない場合はLCIDを指定すればよい
Return StrConv("123-4", VbStrConv.Narrow)
Private ReadOnly _LCID As Integer = New System.Globalization.CultureInfo("ja-JP", True).LCID
Return StrConv("123-4", VbStrConv.Narrow, _LCID)
Register as a new user and use Qiita more conveniently
Go to list of users who liked