摘要:
byte[] byteArray = System.Text.Encoding.Default.GetBytes( str ); 反过来也是一样,把byte[]转成string: string str = System.Text.Encoding.Default.GetString( byteArray ); 其实,在System.Text.Encoding class中,还有很多其它有... 阅读全文
摘要:
可以用以下方法,已经测试: public class CustomListView : ListView { public CustomListView() { SetStyle(ControlStyles.DoubleBuffer ... 阅读全文