GetInitialCase(this cCaseStaticLinear obj, string Name) { string InitialCase; InitialCase = default(string); var res = obj.GetInitialCase(Name, ref InitialCase); return(InitialCase); }
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); }