\を設定しても消えます。

タグの編集
投稿者 ケンケン  (社会人) 投稿日時 2024/11/20 12:00:23
  Private _format2 As String = "\\#,##0.000"
    ' フォーマット文字列のプロパティの設定
    Public Property Format2 As String
        Get
            Return _format2
        End Get
        Set(value As String)
            _format2 = value
        End Set
    End Property
 下記のコーディングをしたいのですが此の時点で、_format2 に¥¥が有りません
  Dim formatted As String = Format(value, _format2) 
 何方かわかる方ご教授お願いします。