ошибка ссылка на объект требуется для нестатического поля, метода или свойства
i learn c++ and i begin learn c#, i dont understand method help me error
using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace text1 { class Program { public int pt(int l, int r) { return l + r; } static void Main(string[] args) { float i; var c = 10; Console.WriteLine("Hello World"); Console.ReadLine(); for (i = 1; i <= 10; i++) { Console.WriteLine("Hello World"); Console.WriteLine(c); }; string a, b; a = "vu anh"; b = "dep trai"; Console.WriteLine(a + " " + b); int j; j = pt(3, 4); Console.WriteLine(i); Console.Beep(); Console.ReadLine(); } } }
i get error "An object reference is required for the non-static field, method, or property 'text1.Program.method(int, int)'" thank
ZurdoDev
Где код, который вызывает эту ошибку?