Producing ascii art via C#

前端 未结 3 1582
渐次进展
渐次进展 2021-01-05 19:13

I once did a programming test for a job, which involved producing ASCii art in C#. I didn\'t really do well at this, as I had little idea or experience of doing this in C# (

3条回答
  •  粉色の甜心
    2021-01-05 19:31

    To understand the full ASCII "spectrum" one should know about the ASCII Chart, also known as the ASCII Table.

    http://www.asciitable.com/

    Knowing that, one could take code found in the codeproject link and make something "unique" with it. :-)

    If you think about it, it's just a "look-up" table and you can pull a value out of it and do anything you want.

提交回复
热议问题