Hellow.
I have 3 variables
1. string query;
2. public static OracleCommand oracmd;
3. public static OracleDataReader reader;
I have used these variables in a function
.
.
.
public void PreviousValue()
{
query = " select * from....... ";
oracmd = new OracleCommand();
....
....
reader = oracmd.ExecuteReader();
}
.
.
But I want to put these three variables in C# Generics and then access those in PreviousValue().
Can any one help me how to do that?