ArcGISCompare.FeatureData.FeatureData C# (CSharp) Method

FeatureData() private method

private FeatureData ( String theName, IFeatureClass theFClass ) : System
theName String
theFClass IFeatureClass
return System
    internal FeatureData(String theName, IFeatureClass theFClass)
    {
      this.Name = theName;
      this.theGType = theFClass.ShapeType;
      this.theAlias = theFClass.AliasName;
      this.OIDName = theFClass.OIDFieldName;
      this.ShapeName = theFClass.ShapeFieldName;
      this.theDS = theFClass.FeatureDataset;
      this.theST = (ISubtypes)theFClass;
      this.theFlds = theFClass.Fields;
      this.isIdentical = 0;
    }