mirror of
https://github.com/Stone-Red-Code/Stone_Red-C-Sharp-Utilities.git
synced 2026-09-08 09:25:59 +02:00
Added random class
Added random class, new string extension methods and updated the XAML documentation.
This commit is contained in:
+36
@@ -0,0 +1,36 @@
|
||||
{
|
||||
"runtimeTarget": {
|
||||
"name": ".NETCoreApp,Version=v5.0",
|
||||
"signature": ""
|
||||
},
|
||||
"compilationOptions": {},
|
||||
"targets": {
|
||||
".NETCoreApp,Version=v5.0": {
|
||||
"Stone_Red-C-Sharp-Utilities-Test/1.0.0": {
|
||||
"dependencies": {
|
||||
"Stone_Red-C-Sharp-Utilities": "1.0.2"
|
||||
},
|
||||
"runtime": {
|
||||
"Stone_Red-C-Sharp-Utilities-Test.dll": {}
|
||||
}
|
||||
},
|
||||
"Stone_Red-C-Sharp-Utilities/1.0.2": {
|
||||
"runtime": {
|
||||
"Stone_Red-C-Sharp-Utilities.dll": {}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"libraries": {
|
||||
"Stone_Red-C-Sharp-Utilities-Test/1.0.0": {
|
||||
"type": "project",
|
||||
"serviceable": false,
|
||||
"sha512": ""
|
||||
},
|
||||
"Stone_Red-C-Sharp-Utilities/1.0.2": {
|
||||
"type": "project",
|
||||
"serviceable": false,
|
||||
"sha512": ""
|
||||
}
|
||||
}
|
||||
}
|
||||
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
+10
@@ -0,0 +1,10 @@
|
||||
{
|
||||
"runtimeOptions": {
|
||||
"additionalProbingPaths": [
|
||||
"C:\\Users\\David\\.dotnet\\store\\|arch|\\|tfm|",
|
||||
"C:\\Users\\David\\.nuget\\packages",
|
||||
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages",
|
||||
"C:\\Program Files (x86)\\Microsoft\\Xamarin\\NuGet"
|
||||
]
|
||||
}
|
||||
}
|
||||
+9
@@ -0,0 +1,9 @@
|
||||
{
|
||||
"runtimeOptions": {
|
||||
"tfm": "net5.0",
|
||||
"framework": {
|
||||
"name": "Microsoft.NETCore.App",
|
||||
"version": "5.0.0"
|
||||
}
|
||||
}
|
||||
}
|
||||
Binary file not shown.
Binary file not shown.
@@ -0,0 +1,339 @@
|
||||
<?xml version="1.0"?>
|
||||
<doc>
|
||||
<assembly>
|
||||
<name>Stone_Red-C-Sharp-Utilities</name>
|
||||
</assembly>
|
||||
<members>
|
||||
<member name="T:Stone_Red_Utilities.BoolExtentions.BoolExt">
|
||||
<summary>
|
||||
<see cref="T:System.Boolean"/> Extentions
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Stone_Red_Utilities.BoolExtentions.BoolExt.OneWayTrue(System.Boolean@,System.Boolean)">
|
||||
<summary>
|
||||
Sets value to true if input is true. If input is false the value will not change.
|
||||
</summary>
|
||||
<param name="bol"></param>
|
||||
<param name="input"></param>
|
||||
</member>
|
||||
<member name="M:Stone_Red_Utilities.BoolExtentions.BoolExt.OneWayFalse(System.Boolean@,System.Boolean)">
|
||||
<summary>
|
||||
Sets value to false if input is false. If input is true the value will not change.
|
||||
</summary>
|
||||
<param name="bol"></param>
|
||||
<param name="input"></param>
|
||||
</member>
|
||||
<member name="M:Stone_Red_Utilities.BoolExtentions.BoolExt.ToInt(System.Boolean)">
|
||||
<summary>
|
||||
Converts bool to int.
|
||||
</summary>
|
||||
<param name="input"></param>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:Stone_Red_Utilities.BoolExtentions.BoolExt.FromInt(System.Boolean@,System.Int32)">
|
||||
<summary>
|
||||
Converts int to bool.
|
||||
</summary>
|
||||
<param name="bol"></param>
|
||||
<param name="input"></param>
|
||||
</member>
|
||||
<member name="T:Stone_Red_Utilities.CollectionExtentions.TableStyle">
|
||||
<summary>
|
||||
Table Style
|
||||
</summary>
|
||||
</member>
|
||||
<member name="F:Stone_Red_Utilities.CollectionExtentions.TableStyle.Default">
|
||||
<summary>
|
||||
The default representaion of the table
|
||||
</summary>
|
||||
</member>
|
||||
<member name="F:Stone_Red_Utilities.CollectionExtentions.TableStyle.Minimum">
|
||||
<summary>
|
||||
The minimal representation of the table
|
||||
</summary>
|
||||
</member>
|
||||
<member name="F:Stone_Red_Utilities.CollectionExtentions.TableStyle.Alternative">
|
||||
<summary>
|
||||
The alternative representaion of the table
|
||||
</summary>
|
||||
</member>
|
||||
<member name="F:Stone_Red_Utilities.CollectionExtentions.TableStyle.List">
|
||||
<summary>
|
||||
The list representaion of the table
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:Stone_Red_Utilities.CollectionExtentions.CollectionExt">
|
||||
<summary>
|
||||
<see cref="T:System.Collections.Generic.IEnumerable`1"/> and <see cref="T:System.Array"/> Extentions
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Stone_Red_Utilities.CollectionExtentions.CollectionExt.Print``1(System.Collections.Generic.IEnumerable{``0},System.Char,System.Boolean)">
|
||||
<summary>
|
||||
Prints all items of an <see cref="T:System.Collections.Generic.IEnumerable`1"/>
|
||||
</summary>
|
||||
<param name="list"></param>
|
||||
<param name="delimiter"></param>
|
||||
<param name="printToDebugConsole"></param>
|
||||
</member>
|
||||
<member name="M:Stone_Red_Utilities.CollectionExtentions.CollectionExt.PrintTable``1(``0[0:,0:],Stone_Red_Utilities.CollectionExtentions.TableStyle)">
|
||||
<summary>
|
||||
Creates and prints table from 2D array
|
||||
</summary>
|
||||
<typeparam name="T"></typeparam>
|
||||
<param name="array"></param>
|
||||
<param name="tableStyle"></param>
|
||||
</member>
|
||||
<member name="T:Stone_Red_Utilities.ConsoleExtentions.ConsoleExt">
|
||||
<summary>
|
||||
<see cref="T:System.Console"/> Extentions
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Stone_Red_Utilities.ConsoleExtentions.ConsoleExt.Write(System.Object,System.ConsoleColor)">
|
||||
<summary>
|
||||
Writes the text representation of the specified object to the standard output stream.
|
||||
</summary>
|
||||
<param name="value"></param>
|
||||
<param name="color"></param>
|
||||
</member>
|
||||
<member name="M:Stone_Red_Utilities.ConsoleExtentions.ConsoleExt.WriteLine(System.Object,System.ConsoleColor)">
|
||||
<summary>
|
||||
Writes the text representation of the specified object, followed by the current line terminator, to the standard output stream.
|
||||
</summary>
|
||||
<param name="value"></param>
|
||||
<param name="color"></param>
|
||||
</member>
|
||||
<member name="M:Stone_Red_Utilities.ConsoleExtentions.ConsoleExt.Pause(System.Boolean,System.String)">
|
||||
<summary>
|
||||
Suspends execution of the current method until the user presses a key
|
||||
</summary>
|
||||
<param name="enterKeyOnly"></param>
|
||||
<param name="customMessage"></param>
|
||||
</member>
|
||||
<member name="T:Stone_Red_Utilities.Logging.LogTarget">
|
||||
<summary>
|
||||
Specifies the severity of the log target.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="F:Stone_Red_Utilities.Logging.LogTarget.Console">
|
||||
<summary>
|
||||
Writes log to console
|
||||
</summary>
|
||||
</member>
|
||||
<member name="F:Stone_Red_Utilities.Logging.LogTarget.DebugConsole">
|
||||
<summary>
|
||||
Writes log to debug console
|
||||
</summary>
|
||||
</member>
|
||||
<member name="F:Stone_Red_Utilities.Logging.LogTarget.File">
|
||||
<summary>
|
||||
Writes log to file
|
||||
</summary>
|
||||
</member>
|
||||
<member name="F:Stone_Red_Utilities.Logging.LogTarget.All">
|
||||
<summary>
|
||||
Writes log to console debug console and file
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:Stone_Red_Utilities.Logging.LogSeverity">
|
||||
<summary>
|
||||
Specifies the severity of the log message.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="F:Stone_Red_Utilities.Logging.LogSeverity.Debug">
|
||||
<summary>
|
||||
Logs that contain the most detailed messages.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="F:Stone_Red_Utilities.Logging.LogSeverity.Info">
|
||||
<summary>
|
||||
Logs that track the general flow of the application.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="F:Stone_Red_Utilities.Logging.LogSeverity.Warning">
|
||||
<summary>
|
||||
Logs that highlight an abnormal activity in the flow of execution.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="F:Stone_Red_Utilities.Logging.LogSeverity.Error">
|
||||
<summary>
|
||||
Logs that highlight when the flow of execution is stopped due to a failure.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="F:Stone_Red_Utilities.Logging.LogSeverity.Fatal">
|
||||
<summary>
|
||||
Logs that contain the most severe level of error. This type of error indicate that immediate attention may be required.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:Stone_Red_Utilities.Logging.Logger">
|
||||
<summary>
|
||||
Class used for logging
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Stone_Red_Utilities.Logging.Logger.ConsoleLogFormat">
|
||||
<summary>
|
||||
Format that is used when logging to the console
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Stone_Red_Utilities.Logging.Logger.DebugConsoleLogFormat">
|
||||
<summary>
|
||||
Format that is used when logging to the debug console
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Stone_Red_Utilities.Logging.Logger.FileLogFormat">
|
||||
<summary>
|
||||
Format that is used when logging to a file
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Stone_Red_Utilities.Logging.Logger.#ctor(Stone_Red_Utilities.Logging.LogTarget,System.String,System.String)">
|
||||
<summary>
|
||||
Initializes the logger with the default format and a file path
|
||||
</summary>
|
||||
<param name="defaultFormat"></param>
|
||||
<param name="logTarg"></param>
|
||||
<param name="file"></param>
|
||||
</member>
|
||||
<member name="M:Stone_Red_Utilities.Logging.Logger.Log(System.String,System.String,Stone_Red_Utilities.Logging.LogSeverity,System.String,System.String,System.Int32)">
|
||||
<summary>
|
||||
Log the message to the specified output
|
||||
</summary>
|
||||
<param name="message"></param>
|
||||
<param name="source"></param>
|
||||
<param name="logSeverity"></param>
|
||||
<param name="memberName"></param>
|
||||
<param name="sourceFilePath"></param>
|
||||
<param name="sourceLineNumber"></param>
|
||||
</member>
|
||||
<member name="M:Stone_Red_Utilities.Logging.Logger.LogIf(System.Boolean,System.String,System.String,Stone_Red_Utilities.Logging.LogSeverity,System.String,System.String,System.Int32)">
|
||||
<summary>
|
||||
Log the message to the specified output if the condition is met
|
||||
</summary>
|
||||
<param name="condition"></param>
|
||||
<param name="message"></param>
|
||||
<param name="source"></param>
|
||||
<param name="logSeverity"></param>
|
||||
<param name="memberName"></param>
|
||||
<param name="sourceFilePath"></param>
|
||||
<param name="sourceLineNumber"></param>
|
||||
</member>
|
||||
<member name="M:Stone_Red_Utilities.Logging.Logger.ClearLogFile">
|
||||
<summary>
|
||||
Clears the log file
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:Stone_Red_Utilities.RandomExtentions.RandomExt">
|
||||
<summary>
|
||||
<see cref="T:System.Random"/> Extentions
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Stone_Red_Utilities.RandomExtentions.RandomExt.NextItem``1(System.Random,System.Collections.Generic.IEnumerable{``0})">
|
||||
<summary>
|
||||
Returns an random item from the specified <paramref name="collection"/> using the <see cref="T:System.Random"/> class
|
||||
</summary>
|
||||
<typeparam name="T"></typeparam>
|
||||
<param name="random"></param>
|
||||
<param name="collection"></param>
|
||||
<returns>Returns a random item from the specified <paramref name="collection"/></returns>
|
||||
<exception cref="T:System.ArgumentNullException"><paramref name="collection" /> is <see langword="null" /></exception>
|
||||
</member>
|
||||
<member name="M:Stone_Red_Utilities.RandomExtentions.RandomExt.NextBool(System.Random)">
|
||||
<summary>
|
||||
Returns a random <see cref="T:System.Boolean"/> using the <see cref="T:System.Random" /> class
|
||||
</summary>
|
||||
<param name="random"></param>
|
||||
<returns>Returns <see langword="true" /> or <see langword="false"/></returns>
|
||||
<exception cref="T:System.ArgumentNullException"><paramref name="random" /> is <see langword="null" /></exception>
|
||||
</member>
|
||||
<member name="M:Stone_Red_Utilities.RandomExtentions.RandomExt.NextEnum``1(System.Random,``0)">
|
||||
<summary>
|
||||
Returns a random item from the specified <see cref="T:System.Enum"/> using the <see cref="T:System.Random" /> class
|
||||
</summary>
|
||||
<typeparam name="T"></typeparam>
|
||||
<param name="random"></param>
|
||||
<param name="_"></param>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="T:Stone_Red_Utilities.StringExtentions.StringExt">
|
||||
<summary>
|
||||
<see cref="T:System.String"/> Extentions
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Stone_Red_Utilities.StringExtentions.StringExt.EqualsIgnoreCase(System.String,System.String)">
|
||||
<summary>
|
||||
Determines whether this instance and another specified <see cref="T:System.String"/> object have the same value regardless of upper and lower case.
|
||||
</summary>
|
||||
<param name="value"></param>
|
||||
<param name="str"></param>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:Stone_Red_Utilities.StringExtentions.StringExt.EqualsIgnoreSpaces(System.String,System.String)">
|
||||
<summary>
|
||||
Determines whether this instance and another specified <see cref="T:System.String"/> object have the same value regardless of spaces.
|
||||
</summary>
|
||||
<param name="value"></param>
|
||||
<param name="str"></param>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:Stone_Red_Utilities.StringExtentions.StringExt.EqualsIgnoreSpacesAndCase(System.String,System.String)">
|
||||
<summary>
|
||||
Determines whether this instance and another specified <see cref="T:System.String"/> object have the same value regardless of upper and lower case and spaces.
|
||||
</summary>
|
||||
<param name="value"></param>
|
||||
<param name="str"></param>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:Stone_Red_Utilities.StringExtentions.StringExt.ToFileName(System.String,System.Boolean)">
|
||||
<summary>
|
||||
Removes all invalid chars from the specified <see cref="T:System.String"/>
|
||||
</summary>
|
||||
<param name="str"></param>
|
||||
<param name="allowSpaces"></param>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:Stone_Red_Utilities.StringExtentions.StringExt.ToPath(System.String,System.Boolean)">
|
||||
<summary>
|
||||
Removes all invalid chars from the specified <see cref="T:System.String"/>
|
||||
</summary>
|
||||
<param name="str"></param>
|
||||
<param name="allowSpaces"></param>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:Stone_Red_Utilities.StringExtentions.StringExt.Truncate(System.String,System.Int32)">
|
||||
<summary>
|
||||
Truncates a <see cref="T:System.String"/> to the specified length.
|
||||
</summary>
|
||||
<param name="str"></param>
|
||||
<param name="length"></param>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:Stone_Red_Utilities.StringExtentions.StringExt.Truncate(System.String,System.Int32,System.Boolean)">
|
||||
<summary>
|
||||
Truncates a <see cref="T:System.String"/> to the specified length.
|
||||
</summary>
|
||||
<param name="str"></param>
|
||||
<param name="length"></param>
|
||||
<param name="ellipsis"></param>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:Stone_Red_Utilities.StringExtentions.StringExt.CorrectNewLine(System.String)">
|
||||
<summary>
|
||||
Uses the correct newline <see cref="T:System.String"/> defined for this environment.
|
||||
</summary>
|
||||
<param name="str"></param>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:Stone_Red_Utilities.StringExtentions.StringExt.RemoveWhitespaces(System.String)">
|
||||
<summary>
|
||||
Revoves all whitespaces from the specified <see cref="T:System.String"/>
|
||||
</summary>
|
||||
<param name="str"></param>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:Stone_Red_Utilities.StringExtentions.StringExt.Reverse(System.String)">
|
||||
<summary>
|
||||
Reverses the specified <see cref="T:System.String"/>
|
||||
</summary>
|
||||
<param name="str"></param>
|
||||
<returns></returns>
|
||||
</member>
|
||||
</members>
|
||||
</doc>
|
||||
BIN
Binary file not shown.
Reference in New Issue
Block a user