Two dimension Array as Property

mark it:
VB.NET
Private _arrText(,) As Integer
Public Property arrText() As Integer(,)
Get
 Return _arrText
End Get
Set(ByVal value As Integer(,))
 _arrText = value
End Set
End Property
C#:
public int[,] arrText
{
get{return arrtext;}
set{arrtext=value;}
}

posted on 2006-07-24 22:52  whyin  阅读(133)  评论(0编辑  收藏  举报

导航