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!
- Host: GitHub
- URL: https://github.com/meatyite/asciiartletters
- Owner: meatyite
- License: wtfpl
- Created: 2018-09-24T15:48:54.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2018-09-26T17:37:56.000Z (almost 8 years ago)
- Last Synced: 2025-04-09T12:11:12.279Z (over 1 year ago)
- Topics: csharp, library
- Language: C#
- Homepage:
- Size: 25.4 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
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)