-
Notifications
You must be signed in to change notification settings - Fork 3
Home
Welcome to the Wiki! The following articles should teach you most of the important things that this library offers.
To use the code from the library, you need to access the namespace from your class:
using KeepCodingAndNobodyExplodes;
Read about the various features by selecting the respective category on the table of contents from the right.
Before diving in, note that ArrayHelper
, Helper
, and StructHelper
are classes for extension methods, and the documentation for them is within the XML documentation.
-
ArrayHelper
takes everything from theArray
data type and turns its static methods into extension methods, and replacing void methods with returning the original array, which also means that you can nest multiple actions into one. -
Helper
has extension methods that offer common things done in modules, such as base conversion, and expanding the functionality ofIEnumerable
s. -
StructHelper
has extension methods that allow you to modify and returnColor
andVector
structs, replacing only the values you put in.
You can access it by typing either class name and then CTRL+LEFT CLICK
on the class file to go to its metadata. You can click on the plus icon to view more information about each method.