日期:2014-05-17 浏览次数:20773 次
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Diagnostics;
namespace Csharp
{
class People
{
private int myInt;
public int MyIntProp//这是什么玩意
{
get
{
return myInt;
}
set
{
myInt = value;
}
}
}
class Program
{
static void Main(string[] args)
{
People p = new People();
p.MyIntProp = 1;
Console.ReadKey();
}
}
}
private int myInt;
public int MyIntProp
{
get
{
return myInt;
}
set
{