B
Biranchi Narayan Panda
is it possible in .net framework 2.0 to create a class that can server the
purpose of List<> ?
eg.
A class Job that has empno, ename etc. I want to get data from database in
form of List<Job> and bind it to gridView. The problem is that I'm using
VS2005 and I'll not be able to upgrade.
So, what modification do I need to make to the following class to server the
above purpose--
//automatic property of .net framework 3.0
public class Job
{
public int empno{get; set}
public string ename{get; set}
}
I want to make a class in .NET framework 2.0 that will help me to create
object of Job and List<Job>, bind with gridview and etc.
please assist.
purpose of List<> ?
eg.
A class Job that has empno, ename etc. I want to get data from database in
form of List<Job> and bind it to gridView. The problem is that I'm using
VS2005 and I'll not be able to upgrade.
So, what modification do I need to make to the following class to server the
above purpose--
//automatic property of .net framework 3.0
public class Job
{
public int empno{get; set}
public string ename{get; set}
}
I want to make a class in .NET framework 2.0 that will help me to create
object of Job and List<Job>, bind with gridview and etc.
please assist.