主题:C#初学者发问
public Graphics Graphics
{
get
{
return _graphics;
}
set
{
_graphics = value;
}
}
请问public Graphics Graphics这样子定义有什么用啊 ?
{
get
{
return _graphics;
}
set
{
_graphics = value;
}
}
请问public Graphics Graphics这样子定义有什么用啊 ?