I am creating a Dll called Terminal. I have about 100+ Methods / Functions in my Dll. Terminal contains some of the basic functions of the System, System.IO, System.Net, and System.Math namespaces / classes, as well as others that are not in any.
My main focus has been the mathematics class. I have 38 functions for my Math class, 4 of which are graphing. I hope to add more to the graphing, but it is very hard to come up with ideas for me, so if you could suggest some graphing ideas.
I have methods that are not offered in the Library. The methods are Conversions. My Conversions consist of Temperature, Length, Time, and Weight. For Temperature you can convert Fahrenheit, Celsius, Kelvin, and Rankine. For Length you can convert Millimeters, Centimeters, Decimeters, Meters, Decameters, Hectometers, and Kilometers. Also for Length you can convert Inches, Feet, and Yards. For Time you can convert Seconds, Minutes, and Hours. For Weight you can convert Ounces and Pounds.
I also have some Processing methods. These include Starting / Stopping a Process and Starting / Stopping a Group of Processes.
Then I have some String Functions. In the StringFunctions class you can Join Strings together, Count [Characters, Lines, Words], Convert between Upper and Lower case, Encrypt / Decrypt, Reverse(a String), and Get the Far Left / Right Character.
I have File / Directory Functions. These functions include Counting Lines, Encrypting / Decrypting, Delete, Exists(Check if it exists), Search(for Text in a File), Reading / Writing a File, and Compression(for .zip files).
Here is my project on SourceForge.net
http://sourceforge.net/projects/terminaldll/Here is what I currently have:
Terminal Dll.
Hope you like it!
Please Give Feedback!