Мой вопрос прост: если свойство объявлено как частное - как его вызвать?
В java мы используем getter & setter, в котором переменная является приватной, а в C# свойство public; если я сделаю его приватным, то в основном классе его нельзя будет назвать.
Это мой код:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace staticProperty
{
class Class1
{
private string name
{
get { return name; }
set { name = value; }
}
}
}
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace staticProperty
{
class Program
{
static void Main(string[] args)
{
Class1 c1 = new Class1();
c1.????
}
}
}