示例#1
0
        GetInitialCase(this cCaseStaticLinear obj, string Name)
        {
            string InitialCase;

            InitialCase = default(string);
            var res = obj.GetInitialCase(Name, ref InitialCase);

            return(InitialCase);
        }
示例#2
0
        GetLoads(this cCaseStaticLinear obj, string Name)
        {
            int NumberLoads;

            NumberLoads = default(int);
            string[] LoadType, LoadName;
            LoadType = LoadName = default(string[]);
            double[] SF;
            SF = default(double[]);
            var res = obj.GetLoads(Name, ref NumberLoads, ref LoadType, ref LoadName, ref SF);

            return(NumberLoads, LoadType, LoadName, SF);
        }