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

Parse() static private méthode

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

Same methods

IfcWall::Parse ( string str, int &pos, int len, ReleaseVersion schema ) : void

Usage Example

Exemple #1
0
 internal static IfcWall Parse(string str, ReleaseVersion schema)
 {
     IfcWall w = new IfcWall(); int pos = 0; w.Parse(str, ref pos, str.Length, schema); return(w);
 }
All Usage Examples Of GeometryGym.Ifc.IfcWall::Parse