Avatar of lankapala
lankapala

asked on 

C# Array Property

Hi,
I have a created class  and this class i created property  
see my code
public class Test
{

public Test2[] runCode
{

get;
set;
}

}

public class Test2
{
public string name
{
get;
set;
}


}

Open in new window


I need to know how to call this class and assigned to another class
ASP.NETVisual Basic.NET.NET ProgrammingC#

Avatar of undefined
Last Comment
Chris Stanyon

8/22/2022 - Mon