C# sbyte[]转byte[]

http://stackoverflow.com/questions/2995639/sbyte-vs-byte-using-methods
sbyte[] orig = ... byte[] arr = new byte[orig.Length]; Buffer.BlockCopy(orig, 0, arr, 0, orig.Length);

posted on 2015-11-06 18:00  lpx15312  阅读(4309)  评论(0)    收藏  举报

导航