美文网首页
2018-06-03

2018-06-03

作者: 涟漪之湖 | 来源:发表于2018-06-03 10:07 被阅读0次

    发现在简书上经常能搜索的到优质的技术文档,也来试用一下。
    我这老家伙实在不习惯Markdown ,看下开源中国的博客再决定吧


    public static byte[] HexStringToBinary(string hexstring)
    {
          string[] tmpary = hexstring.Trim().Split(' ');
          byte[] buff = new byte[tmpary.Length];
          for (int i = 0; i < buff.Length; i++)
                buff[i] = Convert.ToByte(tmpary[i], 16);
          return buff;
     }
    

    Use the printf() function.
    There is a literal backtick (`) here.
    A single backtick in a code span: `

    A backtick-delimited string in a code span: `foo`
    Please don't use any <blink> tags.
    &#8212; is the decimal-encoded equivalent of &mdash;.

    id name score
    001 Mark 90
    002 Ford 80
    003 Alan 95
    Alice->Bob: Hello Bob, how are you?
    Note right of Bob: Bob thinks
    Bob-->Alice: I am good thanks!
    

    相关文章

      网友评论

          本文标题:2018-06-03

          本文链接:https://www.haomeiwen.com/subject/zatjsftx.html