J
jiangyh
Hi, everyone.
I have a C# class like following .
public class CommGlaVariantIO : BCCBase
{
private DataSet _dataSetTblSchema = new DataSet();
public void InitAllSchema()
{
DirectoryInfo directoryInfo;
directoryInfo = new DirectoryInfo(WebConfiguration.GetSchemaFilePath);
foreach(FileInfo fileInfo in directoryInfo.GetFiles("*Schema.xsd"))
{
DataSet dsSchema = TblSchemaLib.GetTblSchema(fileInfo.FullName, true);
_dataSetTblSchema.Tables.Add(dsSchema.Tables[0].Copy());
}
}
}
I want at another class to get the _dataSetTblSchema value,who can tell me how to resolve this .
thanks!
jiangyh
I have a C# class like following .
public class CommGlaVariantIO : BCCBase
{
private DataSet _dataSetTblSchema = new DataSet();
public void InitAllSchema()
{
DirectoryInfo directoryInfo;
directoryInfo = new DirectoryInfo(WebConfiguration.GetSchemaFilePath);
foreach(FileInfo fileInfo in directoryInfo.GetFiles("*Schema.xsd"))
{
DataSet dsSchema = TblSchemaLib.GetTblSchema(fileInfo.FullName, true);
_dataSetTblSchema.Tables.Add(dsSchema.Tables[0].Copy());
}
}
}
I want at another class to get the _dataSetTblSchema value,who can tell me how to resolve this .
thanks!
jiangyh