ArcGISCompare.GeoDbProcs.GetTable C# (CSharp) Method

GetTable() static private method

static private GetTable ( IWorkspace TheWrkspc, String TheTName ) : ITable
TheWrkspc IWorkspace
TheTName String
return ITable
    internal static ITable GetTable(IWorkspace TheWrkspc, String TheTName)
    {
      IFeatureWorkspace theFWorkSpace = (IFeatureWorkspace)TheWrkspc;

      return theFWorkSpace.OpenTable(TheTName);
    }