S
Shapper
Hello,
I have a List<Device> where each Device is:
public class Device {
public String Model { get; set; }
public String Serial { get; set; }
}
I need to create a Stream, to export to a CSV file as follows:
Model1,Serial1;
Model2,Serial2;
Model3,Serial3;
And should I use "," as a value limiter? Is there an alternative?
I am afraid that one model might have a "," in it.
Thank You,
Miguel
I have a List<Device> where each Device is:
public class Device {
public String Model { get; set; }
public String Serial { get; set; }
}
I need to create a Stream, to export to a CSV file as follows:
Model1,Serial1;
Model2,Serial2;
Model3,Serial3;
And should I use "," as a value limiter? Is there an alternative?
I am afraid that one model might have a "," in it.
Thank You,
Miguel