示例#1
0
        GetNameList(this cPropTendon obj)
        {
            int NumberNames;

            NumberNames = default(int);
            string[] MyName;
            MyName = default(string[]);
            var res = obj.GetNameList(ref NumberNames, ref MyName);

            return(NumberNames, MyName);
        }
示例#2
0
        GetProp(this cPropTendon obj, string Name)
        {
            string MatProp, Notes, GUID;

            MatProp = Notes = GUID = default(string);
            int ModelingOption, Color;

            ModelingOption = Color = default(int);
            double Area;

            Area = default(double);
            var res = obj.GetProp(Name, ref MatProp, ref ModelingOption, ref Area, ref Color, ref Notes, ref GUID);

            return(MatProp, ModelingOption, Area, Color, Notes, GUID);
        }