Posted on: 1/2/2015 6:45:25 AM | Views : 564

In my code i am getting two string like 50' FRAME CABLE 3W(16X) and 50' FRAME CABLE 4W(12X) i want to make these two strings as one string like
50' FRAME CABLE 3W(16X),4W(12X)
private static StringBuilder GetFrameCableSensorCableSummary(List<SageControlBase> igus_Sensors) { var frameCables2WCount = igus_Sensors.Where(x => ((x as IGUs) != null && (x as IGUs).BusBars == SageConstants.BusBarsTypes.Two)); var frameCables3WCount = igus_Sensors.Where(x => ((x as IGUs) != null && (x as IGUs).BusBars == SageConstants.BusBarsTypes.Three)); var frameCables4WCount = igus_Sensors.Where(x => ((x as IGUs) != null && (x as IGUs).BusBars == SageConstants.BusBarsTypes.Four)); var sensorcables2WCount = igus_Sensors.Where(x => ((x as Sensors) != null && (x as Sensors).BusBars == SageConstants.BusBarsTypes.Two)); var sensorcabl ...

Go to the complete details ...