mirror of
https://github.com/Stone-Red-Code/Stone_Red-C-Sharp-Utilities.git
synced 2026-09-08 01:15:59 +02:00
- Add FluentMath methods
- Fix spelling mistakes - Minor code improvements
This commit is contained in:
+18
@@ -14,7 +14,18 @@
|
||||
"Stone_Red-C-Sharp-Utilities-Test.dll": {}
|
||||
}
|
||||
},
|
||||
"System.Text.Json/5.0.2": {
|
||||
"runtime": {
|
||||
"lib/netcoreapp3.0/System.Text.Json.dll": {
|
||||
"assemblyVersion": "5.0.0.0",
|
||||
"fileVersion": "5.0.521.16609"
|
||||
}
|
||||
}
|
||||
},
|
||||
"Stone_Red-C-Sharp-Utilities/1.0.3.1": {
|
||||
"dependencies": {
|
||||
"System.Text.Json": "5.0.2"
|
||||
},
|
||||
"runtime": {
|
||||
"Stone_Red-C-Sharp-Utilities.dll": {}
|
||||
}
|
||||
@@ -27,6 +38,13 @@
|
||||
"serviceable": false,
|
||||
"sha512": ""
|
||||
},
|
||||
"System.Text.Json/5.0.2": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-I47dVIGiV6SfAyppphxqupertT/5oZkYLDCX6vC3HpOI4ZLjyoKAreUoem2ie6G0RbRuFrlqz/PcTQjfb2DOfQ==",
|
||||
"path": "system.text.json/5.0.2",
|
||||
"hashPath": "system.text.json.5.0.2.nupkg.sha512"
|
||||
},
|
||||
"Stone_Red-C-Sharp-Utilities/1.0.3.1": {
|
||||
"type": "project",
|
||||
"serviceable": false,
|
||||
|
||||
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
Binary file not shown.
Binary file not shown.
+28
-22
@@ -6,7 +6,7 @@
|
||||
<members>
|
||||
<member name="T:Stone_Red_Utilities.BoolExtentions.BoolExt">
|
||||
<summary>
|
||||
<see cref="T:System.Boolean"/> Extentions
|
||||
<see cref="T:System.Boolean"/> Extensions
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Stone_Red_Utilities.BoolExtentions.BoolExt.OneWayTrue(System.Boolean@,System.Boolean)">
|
||||
@@ -44,7 +44,7 @@
|
||||
</member>
|
||||
<member name="F:Stone_Red_Utilities.CollectionExtentions.TableStyle.Default">
|
||||
<summary>
|
||||
The default representaion of the table
|
||||
The default representation of the table
|
||||
</summary>
|
||||
</member>
|
||||
<member name="F:Stone_Red_Utilities.CollectionExtentions.TableStyle.Minimum">
|
||||
@@ -54,17 +54,17 @@
|
||||
</member>
|
||||
<member name="F:Stone_Red_Utilities.CollectionExtentions.TableStyle.Alternative">
|
||||
<summary>
|
||||
The alternative representaion of the table
|
||||
The alternative representation of the table
|
||||
</summary>
|
||||
</member>
|
||||
<member name="F:Stone_Red_Utilities.CollectionExtentions.TableStyle.List">
|
||||
<summary>
|
||||
The list representaion of the table
|
||||
The list representation 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
|
||||
<see cref="T:System.Collections.Generic.IEnumerable`1"/> and <see cref="T:System.Array"/> Extensions
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Stone_Red_Utilities.CollectionExtentions.CollectionExt.Print``1(System.Collections.Generic.IEnumerable{``0},System.Char,System.Boolean)">
|
||||
@@ -85,7 +85,7 @@
|
||||
</member>
|
||||
<member name="T:Stone_Red_Utilities.ConsoleExtentions.ConsoleExt">
|
||||
<summary>
|
||||
<see cref="T:System.Console"/> Extentions
|
||||
<see cref="T:System.Console"/> Extensions
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Stone_Red_Utilities.ConsoleExtentions.ConsoleExt.Write(System.Object,System.ConsoleColor)">
|
||||
@@ -102,12 +102,18 @@
|
||||
<param name="value"></param>
|
||||
<param name="color"></param>
|
||||
</member>
|
||||
<member name="M:Stone_Red_Utilities.ConsoleExtentions.ConsoleExt.Pause(System.Boolean,System.String)">
|
||||
<member name="M:Stone_Red_Utilities.ConsoleExtentions.ConsoleExt.Pause(System.ConsoleKey,System.String)">
|
||||
<summary>
|
||||
Suspends execution of the current method until the user presses a key
|
||||
</summary>
|
||||
<param name="enterKeyOnly"></param>
|
||||
<param name="customMessage"></param>
|
||||
<param name="key">The key that has to be pressed</param>
|
||||
<param name="message">The message that will be displayed</param>
|
||||
</member>
|
||||
<member name="M:Stone_Red_Utilities.ConsoleExtentions.ConsoleExt.Pause(System.String)">
|
||||
<summary>
|
||||
Suspends execution of the current method until the user presses a key
|
||||
</summary>
|
||||
<param name="message">The message that will be displayed</param>
|
||||
</member>
|
||||
<member name="T:Stone_Red_Utilities.FluentMath.Shapes.Rectangle">
|
||||
<summary>
|
||||
@@ -143,8 +149,8 @@
|
||||
<summary>
|
||||
Creates a new rectangle instance
|
||||
</summary>
|
||||
<param name="length"></param>
|
||||
<param name="width"></param>
|
||||
<param name="length">The length of the rectangle</param>
|
||||
<param name="width">The width of the rectangle</param>
|
||||
</member>
|
||||
<member name="T:Stone_Red_Utilities.FluentMath.DecimalFluent">
|
||||
<summary>
|
||||
@@ -204,7 +210,7 @@
|
||||
</member>
|
||||
<member name="M:Stone_Red_Utilities.FluentMath.DecimalFluent.Multiply(System.Decimal,System.Decimal)">
|
||||
<summary>
|
||||
Multiplys the two nums
|
||||
Multiples the two nums
|
||||
</summary>
|
||||
<param name="num"></param>
|
||||
<param name="value"></param>
|
||||
@@ -306,7 +312,7 @@
|
||||
</member>
|
||||
<member name="M:Stone_Red_Utilities.FluentMath.DoubleFluent.Multiply(System.Double,System.Double)">
|
||||
<summary>
|
||||
Multiplys the two nums
|
||||
Multiples the two nums
|
||||
</summary>
|
||||
<param name="num"></param>
|
||||
<param name="value"></param>
|
||||
@@ -471,7 +477,7 @@
|
||||
</member>
|
||||
<member name="M:Stone_Red_Utilities.FluentMath.Int16Fluent.Multiply(System.Int16,System.Int16)">
|
||||
<summary>
|
||||
Multiplys the two nums
|
||||
Multiples the two nums
|
||||
</summary>
|
||||
<param name="num"></param>
|
||||
<param name="value"></param>
|
||||
@@ -552,7 +558,7 @@
|
||||
</member>
|
||||
<member name="M:Stone_Red_Utilities.FluentMath.Int32Fluent.Multiply(System.Int32,System.Int32)">
|
||||
<summary>
|
||||
Multiplys the two nums
|
||||
Multiples the two nums
|
||||
</summary>
|
||||
<param name="num"></param>
|
||||
<param name="value"></param>
|
||||
@@ -633,7 +639,7 @@
|
||||
</member>
|
||||
<member name="M:Stone_Red_Utilities.FluentMath.Int64Fluent.Multiply(System.Int64,System.Int64)">
|
||||
<summary>
|
||||
Multiplys the two nums
|
||||
Multiples the two nums
|
||||
</summary>
|
||||
<param name="num"></param>
|
||||
<param name="value"></param>
|
||||
@@ -714,7 +720,7 @@
|
||||
</member>
|
||||
<member name="M:Stone_Red_Utilities.FluentMath.SingleFluent.Multiply(System.Single,System.Single)">
|
||||
<summary>
|
||||
Multiplys the two nums
|
||||
Multiples the two nums
|
||||
</summary>
|
||||
<param name="num"></param>
|
||||
<param name="value"></param>
|
||||
@@ -863,7 +869,7 @@
|
||||
</member>
|
||||
<member name="P:Stone_Red_Utilities.Logging.OutputConfig.Color">
|
||||
<summary>
|
||||
The onsole color of the log message.
|
||||
The console color of the log message.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Stone_Red_Utilities.Logging.OutputConfig.LogTarget">
|
||||
@@ -878,7 +884,7 @@
|
||||
</member>
|
||||
<member name="T:Stone_Red_Utilities.Logging.FormatConfig">
|
||||
<summary>
|
||||
Foramt configuration.
|
||||
Format configuration.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Stone_Red_Utilities.Logging.FormatConfig.DebugConsoleFormat">
|
||||
@@ -1047,7 +1053,7 @@
|
||||
</member>
|
||||
<member name="T:Stone_Red_Utilities.RandomExtentions.RandomExt">
|
||||
<summary>
|
||||
<see cref="T:System.Random"/> Extentions
|
||||
<see cref="T:System.Random"/> Extensions
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Stone_Red_Utilities.RandomExtentions.RandomExt.NextItem``1(System.Random,System.Collections.Generic.IEnumerable{``0})">
|
||||
@@ -1100,7 +1106,7 @@
|
||||
</member>
|
||||
<member name="T:Stone_Red_Utilities.StringExtentions.StringExt">
|
||||
<summary>
|
||||
<see cref="T:System.String"/> Extentions
|
||||
<see cref="T:System.String"/> Extensions
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Stone_Red_Utilities.StringExtentions.StringExt.EqualsIgnoreCase(System.String,System.String)">
|
||||
@@ -1169,7 +1175,7 @@
|
||||
</member>
|
||||
<member name="M:Stone_Red_Utilities.StringExtentions.StringExt.RemoveWhitespaces(System.String)">
|
||||
<summary>
|
||||
Revoves all whitespaces from the specified <see cref="T:System.String"/>
|
||||
Removes all white spaces from the specified <see cref="T:System.String"/>
|
||||
</summary>
|
||||
<param name="str"></param>
|
||||
<returns></returns>
|
||||
|
||||
BIN
Binary file not shown.
Reference in New Issue
Block a user