Print()名称在当前上下文中不存在

时间:2018-12-21 02:10:49

标签: c# printing syntax-error

c#的新手需要以下错误的帮助。 在Grybai类中,当前情况下不存在Print case'svoris'错误。 Print(A,ref n,Svoris); 第三个参数'Svoris'给出错误。

 using System;
 using System.Collections.Generic;
 using System.Linq;
 using System.Text;
 using System.Threading.Tasks;
 using System.IO;

 namespace C
{


class Grybai
{
    public string name;
    private int Svoris;
    public void Tipas(string nameType, int Weight) { name = nameType; Svoris = Weight; }

    public string GetName() { return name; }
    public int GetWeight() { return Svoris; }

试图与GetWeight方法有关,仍然没有...

}

class Program
{
    const string CFd = "..//..//Duom.txt";
    const string CFr = "..//..//Rez.txt";

    //Duomenu nuskaitymas is failo i masyva
    static void Main(string[] args)
    {
        Grybai[] A = new Grybai[10];    //Sukuriam strukturu masyva
        int n = 0;
        Read(A, ref n);
        Print(A, ref n, Svoris);

Svoris名称在当前上下文中不存在,如何解决?

    }

    static void Read(Grybai[] tarp, ref int n)
    {
        using (StreamReader reader = new StreamReader(CFd))
        {
            string line;
            string[] parts;
            if (File.Exists(CFr)) File.Delete(CFr);
            while ((line = reader.ReadLine()) != null)
            {
                parts = line.Split(' ');
                tarp[n] = new Grybai();
                tarp[n].Tipas(parts[0], int.Parse(parts[1]));
                n++;
            }
        }
    }

    static void Sort(Grybai[] tarpA, int n)
    {
        Grybai tarpB;

        for (int j = 0; j < n; j++)
        {
            for (int i = 0; i < n - 1; i++)
            {
                if (tarpA[i].GetName()[0] > tarpA[i + 1].GetName()[0])
                {
                    tarpB = tarpA[i];
                    tarpA[i] = tarpA[i + 1];
                    tarpA[i + 1] = tarpB;
                }
            }
        }
    }

    static void Print(Grybai[] tarp, int n, int svoris)
    {
        string top = "|-----------------------------------------------------------|\r\n" +
                     "|                     Surusiuoti duomenys                   |\r\n" +
                     "|-----------------------------------------------------------|\r\n" +
                     "|Pavadinimas         |Tipas            |Svoris        |\r\n" +
                     "|-----------------------------------------------------------|";

2 个答案:

答案 0 :(得分:1)

为了解决“ Svoris”上的参数错误,您可以替换下面的代码行。

  Old Code :  Print(A, ref n, Svoris);
  New Code :  Print(A, ref n, A.GetWeight());

根据您的代码,GetWeight()返回Svoris的值。它达到了预期的目的。

答案 1 :(得分:0)

 private int Svoris;

您“ Svoris”是可在“ Grybai”课程中通过的私人课程。您不能只在“程序”类中像这样访问它。