An open API service indexing awesome lists of open source software.

https://github.com/meatyite/asciiartletters

write ascii art letters in .NET!
https://github.com/meatyite/asciiartletters

csharp library

Last synced: 12 months ago
JSON representation

write ascii art letters in .NET!

Awesome Lists containing this project

README

          

# AsciiArtLetters
Cool ascii letters
# How to add to your project
## In C#
Download and unzip the zip file from this github page

add an external dll reference in your IDE

### Test the library
make a Console project named "testasciilib" (without quotation marks) and type in the following

```
using System;
using AsciiArtLetters;

namespace testasciilib
{
class MainClass
{
public static void Main(string[] args)
{
string lowerA = GraffitiL.a();
Console.WriteLine(lowerA);
}
}
}
```
now run the program.
## In other programming languages
### Python
Download and unzip the zip file from this github page

add the dll to your project's folder (from AsciiArtLetters-master/AsciiArtLetters/bin/Release)
#### Test the library
you can test and use the library using the "python for .NET" library http://pythonnet.github.io/
```
import clr

clr.AddReference('AsciiArtLetters')
import AsciiArtLetters

print AsciiArtLetters.GraffitiL.a()

```
(open an issue on this github repo and tell me if this works)