62,272
社区成员
发帖
与我相关
我的任务
分享
//消除锯齿
System.Drawing.Drawing2D.SmoothingMode.AntiAlias; //图像平滑抗锯齿
System.Drawing.Text.TextRenderingHint.AntiAlias; //文字(矢量图形)搞锯齿
protected int f(int n)
{
if (n > 2)
return f(n - 2) + f(n - 1);
else
return 1;
}
select top 15 * from tb where id > (select max(id) from (select top 30 id from tb) t)