LLCRYPTOLIB VISUAL C# TUTORIAL
Here is a brief Visual C# Express tutorial. (You can easily adapt these instructions for Visual Studio 2005/2008 or other IDEs)
1) If you have not installed yet you can obtain Visual C# Express from MSDN site:
2) Open Visual C# Express
3) Select "File/New Project..."
4) Select "Console Application", click OK.
5) In the right pane called Solution Explorer, right click "ConsoleApplication1" (it may also be named ConsoleApplicationX where x can be any number)
6) Select "Add reference..."
7) Click the "Browse" tab and navigate to where your LLCryptoLib.dll is installed (ie: Library/DotNet/ directory)
In the original installation tree the DLL can be found in Library folder. If the library is correctly loaded, by pressing CTRL+W+J in the Object Browser you will find a node named LLCryptoLib.
8) Copy the following source code:
using System; using System.Collections.Generic; using System.Text; using LLCryptoLib.Utils; namespace ConsoleApplication1 { class Program { static void Main(string[] args) { Console.WriteLine(RandomString.Get()); Console.WriteLine("--- Press any key ---"); Console.ReadKey(); } } }
9) Press 'F5' to run the application: a random string should appear.
10) If you have problems, please contact our support at http://www.littlelite.net/support.html