BuildingCoder.ElementData.ElementData C# (CSharp) Метод

ElementData() публичный Метод

public ElementData ( string path, string elementName, int id, double x, double y, double z, string uniqueId ) : System
path string
elementName string
id int
x double
y double
z double
uniqueId string
Результат System
        public ElementData(
            string path,
            string elementName,
            int id,
            double x,
            double y,
            double z,
            string uniqueId)
        {
            int i = path.LastIndexOf( "\\" );
              _document = path.Substring( i + 1 );
              _elementName = elementName;
              _id = id;
              _x = x;
              _y = y;
              _z = z;
              _uniqueId = uniqueId;
              _folder = path.Substring( 0, i );
        }
ElementData