开发者

ConvertCsvToXml does not exist in the current context

开发者 https://www.devze.com 2023-02-17 22:18 出处:网络
private void button2_Click(object sender, EventArgs e) { //read in file data and calculate record number
private void button2_Click(object sender, EventArgs e)
    {

        //read in file data and calculate record number
        string csv = File.ReadAllText("File-Path");
        int testing = 1;

        XDocument doc = ConvertCsvToXml(csv, new[] { "\t" });

        //create array of record number
        WebService.Function[] xxx = new WebService.Function[1];

        recordAmount = 0;

Hi there for some reason in the above code the ConvertCsvToXml line is bringing back an exception saying it does not exist, and the intelisense brings up n开发者_StackOverflowothing after typing XDocument.

What can I do to resolve this? There are no errors in my code other than this!

Thanks for your time.


You'll have to define the ConvertCsvToXml method in the same class as the button2_Click method.

0

精彩评论

暂无评论...
验证码 换一张
取 消