<System.ComponentModel.Description("ここに説明文を書くとプロパティウインドウに表示されます。")> _
Private _Cprop As String = ""
Property Cprop() As String
Get
Return _Cprop
End Get
Set(ByVal value As String)
_Cprop= value
End Set
End Property