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

Parse() static private méthode

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

Same methods

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

Usage Example

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