摘要:
using System;using System.Collections.Generic;using System.Text;namespace Bit{ /*class methods for bits operation*/ public class BitOperation { public Byte setBit(Byte targetByte, int targetPos, int value) { if ((value == 0 || value == 1) && (targetPos >= 0 && targetPos < 8)) { 阅读全文
posted @ 2011-07-29 17:30
静默虚空
阅读(393)
评论(0)
推荐(0)
摘要:
using System;using System.Collections.Generic;using System.Text;using Bit;namespace Packet{ class Packet_TS { BitOperation bitOperarion = new BitOperation(); public Packet_TS(Byte[] bytes) { _TSBytes = bytes; _list_data_bytes = new List<byte>(); for (int i = 5; i < bytes.Length ; i++) //把da 阅读全文
posted @ 2011-07-29 17:28
静默虚空
阅读(433)
评论(0)
推荐(0)
摘要:
using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Text;using System.Windows.Forms;using System.IO;using System.Drawing.Imaging;using Packet;namespace TSProducer{ public partial class PictureForm : Form { private string gPicF 阅读全文
posted @ 2011-07-29 12:08
静默虚空
阅读(339)
评论(0)
推荐(0)
摘要:
using System;using System.Collections.Generic;using System.Text;using System.Runtime.InteropServices;using System.Net;using Bit;namespace Packet{ public class TSPacket { BitOperation bitOperarion = new BitOperation(); public TSPacket(Byte[] bytes) { TSBytes = bytes; _data = new Byte[183]; for (int i 阅读全文
posted @ 2011-07-29 12:08
静默虚空
阅读(344)
评论(0)
推荐(0)
摘要:
using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Text;using System.Windows.Forms;namespace TSProducer{ public partial class ReplaceForm : Form { ////////////////////////////////事务句柄//////////////////////////////////////// p 阅读全文
posted @ 2011-07-29 12:07
静默虚空
阅读(294)
评论(0)
推荐(0)
摘要:
using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Text;using System.Windows.Forms;using System.IO;using System.Text.RegularExpressions;using Packet;namespace TSProducer{ public partial class ParseForm : WeifenLuo.WinFormsUI. 阅读全文
posted @ 2011-07-29 12:07
静默虚空
阅读(415)
评论(0)
推荐(0)

浙公网安备 33010602011771号