Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
I think you are comparing apples and oranges. The API you use to export may be 1 LOC, but that doesn't mean the logic is located within that single member, it could be spaced out over an entire object graph.Current the C# app gets the data and writes it as all one line.
new PipelineExectutor().Execute(new MyExportProcess());
Sounds like I'll have to add a bunch of new code to identify each .csv column as an object from left to right across
public class Foo
{
public int I {get;set;}
public string S {get;set;}
...
}