Ошибка: An object reference is required for the nonstatic field, method or property - C#

Узнай цену своей работы

Формулировка задачи:

using System;
using System.Collections.Generic;
using System.Text;
 
namespace ConsoleApplication5
{
    class Butterfly
    {
        public string wings;
         
        public void Fly()
        {
                wings = Console.ReadLine();
                for (int i = 1; i < 101; i++)
                {
                   Console.Write(i + " " + wings + " ");
                }
            
        }
        static void Main(string[] args)
        {
            Butterfly mahaon = new Butterfly();
            do
            {
                mahaon.Fly();
            } while (wings != "exit");
                System.Console.ReadLine();
            
                  }
    }
}
выдает ошибку:An object reference is required for the nonstatic field, method or property "ConsoleApplication5.Butterfly.wing"

Решение задачи: «Ошибка: An object reference is required for the nonstatic field, method or property»

textual
Листинг программы
/*line 26:*/} while (mahaon.wings != "exit"); // FIXED

ИИ поможет Вам:


  • решить любую задачу по программированию
  • объяснить код
  • расставить комментарии в коде
  • и т.д
Попробуйте бесплатно

Оцени полезность:

5   голосов , оценка 3.8 из 5
Похожие ответы