简介
错误 6702 SA1201: All methods must be placed after all properties.
错误例子
/// <summary>
/// 测试委托
/// </summary>
private delegate void testDelegate();
/// <summary>
/// 测试字段
/// </summary>
private bool test = false;
解决方法:字段必须定义在委托之前
/// <summary>
/// 测试字段
/// </summary>
private bool test = false;
/// <summary>
/// 测试委托
/// </summary>
private delegate void testDelegate();
网友评论