GeometryGym.Ifc.IfcFixedReferenceSweptAreaSolid.Parse C# (CSharp) Méthode

Parse() static private méthode

static private Parse ( string str ) : IfcFixedReferenceSweptAreaSolid
str string
Résultat IfcFixedReferenceSweptAreaSolid
        internal static IfcFixedReferenceSweptAreaSolid Parse(string str)
        {
            IfcFixedReferenceSweptAreaSolid s = new IfcFixedReferenceSweptAreaSolid();
            int pos = 0;
            s.Parse(str, ref pos, str.Length);
            return s;
        }

Same methods

IfcFixedReferenceSweptAreaSolid::Parse ( string str, int &pos, int len ) : void

Usage Example

Exemple #1
0
 internal static IfcFixedReferenceSweptAreaSolid Parse(string str)
 {
     IfcFixedReferenceSweptAreaSolid s = new IfcFixedReferenceSweptAreaSolid();
     int pos = 0;
     s.Parse(str, ref pos, str.Length);
     return s;
 }