N
nicol
Hi
Plz help me to sole it error
Error 1 The name 'person' does not exist in the current context
using System;
namespace ConsoleApplication120
{
class Program
{
static void Main(string[] args)
{
person(10); // ******** error ******
}
}
class student
{
public int person(int d)
{
return (1);
}
}
}
Plz help me to sole it error
Error 1 The name 'person' does not exist in the current context
using System;
namespace ConsoleApplication120
{
class Program
{
static void Main(string[] args)
{
person(10); // ******** error ******
}
}
class student
{
public int person(int d)
{
return (1);
}
}
}