Extensions.cs 4.3.700

Suggested Alternatives

GCCHigh.Extensions

There is a newer version of this package available.
See the version list below for details.
The owner has unlisted this package. This could mean that the package is deprecated, has security vulnerabilities or shouldn't be used anymore.
dotnet add package Extensions.cs --version 4.3.700
NuGet\Install-Package Extensions.cs -Version 4.3.700
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Extensions.cs" Version="4.3.700" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Extensions.cs --version 4.3.700
#r "nuget: Extensions.cs, 4.3.700"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install Extensions.cs as a Cake Addin
#addin nuget:?package=Extensions.cs&version=4.3.700

// Install Extensions.cs as a Cake Tool
#tool nuget:?package=Extensions.cs&version=4.3.700

Extensions.cs contains extension methods that enhance existing C# classes thus making life easier for developers.

icon GIF GIF License Maintained GitHub Release NuGet Badge Repo Size Closed Issues Open Issues Contributors Languages Gitter Discord Twitter

The following classes have been extended:

- System.Array
- System.Collections.Generic.Dictionary
- System.Collections.Generic.List
- System.DateTime
- System.Diagnostics.Process
- System.Double
- System.Int16
- System.Int32
- System.Int64
- System.Logging (added)
- System.Long
- System.Net.WebException
- System.Object
- System.String
- System.Text.StringBuilder
- System.Timer
- System.TimeZoneInfo
- System.UInt16
- System.UInt32
- System.UInt64
- System.ULong

with these methods:

  • BeginsWith()

    Reduces checking if a given string starts with another given string<br> from this:<br> (str.ToLower().Substring(0, target.Length) == target.ToLower())<br> to this:<br> str.BeginsWith(target, true)

  • Bigest()

    Return the bigest of two given values.<br> For example:<br> Bigest(23, 31)<br> will return<br> 31

  • CompoundInterest()

    _Calculate compounded interest end value given an amount, percent<br> interest per year and number of years.<br> For example:<br> double val = 100.00;<br> val.CompoundInterest(5,<br> 10,<br> Constants.CompoundFrequency.Yearly);<br> will return 162.889462677744 _

  • ContainsAny()

    Checks if the given string contains any of a list of characters or<br> strings provided.<br> For example:<br> "abcdef1234567890".ContainsAny(Constants.HexChars)<br> will return True.

  • ContainsOnly()

    Checks if the given string contains only characters or strings<br> in the list provided.<br> For example:<br> "abcdef1234567890".ContainsOnly(Constants.HexChars)<br> will return True while<br> "abcdefg1234567890".ContainsOnly(Constants.HexChars)<br> will return False because of the "g".

  • CopyTo()

    Copies a given length of bytes from a byte[] starting at a definable<br> offset.<br> For example:<br> byte[] b1 = System.Text.Encoding.UTF8.GetBytes("blog.cjvandyk.com rocks!");<br> byte[] b2 = b1.CopyTo(10);<br> byte[] b3 = b1.CopyTo(10, 5);<br> will result in the following arrays:<br> 98 108 111 103 46 99 106 118 97 110 100 121 107 46 99 111 109 32 114 111 99 107 115 33<br> 98 108 111 103 46 99 106 118 97 110<br> 99 106 118 97 110 100 121 107 46 99

  • DoubleQuote()

    Return the given string encased in double quotes.<br> For example:<br> printf("https://blog.cjvandyk.com/sites/Rocks");<br> printf("https://blog.cjvandyk.com/sites/Rocks".DoubleQuote());<br> will return<br> https://blog.cjvandyk.com/sites/Rocks<br> "https://blog.cjvandyk.com/sites/Rocks"

  • Elevate()

    Restarts the current process with elevated permissions.<br> For example:<br> System.Diagnostics.Process.GetCurrentProcess().Elevate(args)<br> will restart the current console app in admin mode.

  • Err()

    Write an Error message to active channels (console, event log, file)<br> using the System.Logging class.

  • ExceedsLength()

    Checks if a referenced offset exceeds the length of the string.<br> Optionally increments the offset as well.<br> For example:<br> "https://blog.cjvandyk.com Rocks!".ExceedsLength(30)<br> will return False while<br> "https://blog.cjvandyk.com Rocks!".ExceedsLength(31, false)<br> will also return False and<br> "https://blog.cjvandyk.com Rocks!".ExceedsLength(31)<br> will return True.

  • Get()

    Language extension for properties. Use to set the value of the<br> extension property in question.<br> For example:<br> Microsoft.SharePoint.Client client = new Microsoft.SharePoint.Client("https://blog.cjvandyk.com");<br> client.ExecutingWebRequest += ClientContext_ExecutingWebRequest;<br> client.Set("HeaderDecoration", "NONISV|Crayveon|MyApp/1.0");<br> This allows the creation of the extension property "HeaderDecoration"<br> which can be changed as needed. Later in the delegate method we<br> refer back to the extension property value thus:<br> private void ClientContext_ExecutingWebRequest(object sender, WebRequestEventArgs e)<br> {<br> e.WebRequestExecutor.WebRequest.UserAgent = (string)e.Get("HeaderDecoration");<br> }<br> NOTE: We did not have to access the ClientContext class in order to<br> retrieve the "HeaderDecoration" value since the extension was<br> done against the System.Object class. As such, any object can<br> be used to retrieve the extension property value, as long as<br> you know the key value under which the property was stored and<br> you know the type to which the returned value needs to be cast.<br> A derived override method for Get() and Set() can be defined<br> using specific class objects if finer controls is needed.<br>

  • GetExecutingAssembly()

    Gets the current Entry or Executing assembly through reflection.

  • GetExecutingAssemblyName()

    Gets the name of the current assembly, optionally escaped.

  • GetExecutingAssemblyFolder()

    Gets the folder location of the current assembly, optionally escaped.

  • GetExecutingAssemblyFullPath()

    Gets the full path and file name of the current assembly, optionally<br> escaped.

  • GetFQDN()

    Get the current computer Fully Qualified Domain Name.

  • GetNthPrime()

    Get the Nth prime number. It will serialize the list of discovered<br> prime numbers to file in order to eliminate duplicate calculation<br> of prime numbers. Use Universal.PrimeStatePath to override the<br> path where the discovered list of prime numbers is saved.<br> For example:<br> Extensions.Universal.GetNthPrime(1000)<br> will return the 1000th prime number - 7919.

  • GetNthPrimeAsync()

    Get the Nth prime number using multi threading and asynchronous<br> processing. It will serialize the list of discovered<br> prime numbers to file in order to eliminate duplicate calculation<br> of prime numbers. Use Universal.PrimeStatePath to override the<br> path where the discovered list of prime numbers is saved.<br> For example:<br> Extensions.Universal.GetNthPrime(1000)<br> will return the 1000th prime number - 7919.

  • GetSiteUrl()

    Given a full SharePoint Online object URL, this method will return<br> the site collection part of the URL.<br> For example:<br> "https://crayveon.sharepoint.com/sites/TheSite/lists/TheList".GetTenantUrl()<br> would return https://crayveon.sharepoint.com/sites/TheSite

  • GetTenantUrl()

    Given a full SharePoint Online object URL, this method will return<br> only the tenant part of the URL.<br> For example:<br> "https://crayveon.sharepoint.com/sites/TheSite/lists/TheList".GetTenantUrl()<br> would return https://crayveon.sharepoint.com

  • GetTimeZoneString()

    Get the registry ID string that can be used with<br> TimeZoneInfo.FindSystemTimeZoneById() for time zone convertions.<br> For example:<br> System.TimeZoneInfo.FindSystemTimeZoneById(<br> Extensions.TimeZoneInfo.GetTimeZoneString(<br> Constants.TimeZone myZone))<br> will return the proper string to use in the call.

  • GetUrlRoot()

    Get the URL root for the given string object containing a URL.<br> For example:<br> "https://blog.cjvandyk.com".GetUrlRoot()<br> will return "https://blog.cjvandyk.com" whereas<br> "https://blog.cjvandyk.com/sites/Approval".GetUrlRoot()<br> will also return "https://blog.cjvandyk.com".

  • HasLower()

    Validates that the given string object contains a lower case character.<br> For example:<br> "abc".HasLower()<br> will return True whereas<br> "ABC".HasLower()<br> will return False and<br> "AbC".HasLower()<br> will return True.

  • HasNumeric()

    Validates that the given string object contains a number character.<br> For example:<br> "abc".HasNumeric()<br> will return False whereas<br> "ABC123".HasNumeric()<br> will return True and<br> "A2C".HasNumeric()<br> will return True.

  • HasSymbol()

    Validates that the given string object contains a symbol or special<br> character.<br> For example:<br> "abc".HasSymbol()<br> will return False whereas<br> "ABC$".HasSymbol()<br> will return True and<br> "A@C".HasSymbol()<br> will return True.

  • HasUpper()

    Validates that the given string object contains a lower case character.<br> For example:<br> "abc".HasUpper()<br> will return False whereas<br> "ABC".HasUpper()<br> will return True and<br> "AbC".HasUpper()<br> will return True.

  • HtmlDecode()

    Decode the HTML escaped components in a given string returning the<br> given source string without HTML escaped components.<br> For example:<br> "https://blog.cjvandyk.com/sites/Rocks &lt;&amp;&gt; Rolls!".HtmlDecode()<br> will return<br> https://blog.cjvandyk.com/sites/Rocks <&> Rolls!

  • HtmlEncode()

    Encode the given string to be HTML safe.<br> For example:<br> "https://blog.cjvandyk.com/sites/Rocks <&> Rolls!".HtmlEncode()<br> will return<br> https://blog.cjvandyk.com/sites/Rocks &lt;&amp;&gt; Rolls!

  • Inf()

    Write an Information message to active channels (console, event log, file)<br> using the System.Logging class.

  • IsAlphabetic()

    Validates that the given string object contains all alphabetic<br> characters (a-z and A-Z) returning True if it does and False if<br> it doesn't.<br> For example:<br> "abcXYZ".IsAlphabetic()<br> will return True whereas<br> "abc123".IsAlphabetic()<br> will return False.

  • IsAlphaNumeric()

    Validates that the given string object contains all alphabetic<br> and/or numeric characters (a-z and A-Z and 0-9) returning True if it<br> does and False if it doesn't.<br> For example:<br> "abc123".IsAlphaNumeric()<br> will return True whereas<br> "abcxyz".IsAlphaNumeric()<br> will also return True and<br> "123456".IsAlphaNumeric()<br> will also return True but<br> "abc!@#".IsAlphaNumeric()<br> will return False.

  • IsChar()

    This method takes a char[] as one of its arguments against which the<br> given string object is validated. If the given string object contains<br> only characters found in the char[] it will return True, otherwise it<br> will return False.<br> For example:<br> "aacc".IsChar(new char[] {'a', 'c'})<br> will return True whereas<br> "abc123".IsChar(new char[] {'a', 'c'})<br> will return False.

  • IsEmail()

    Validates that the given string object contains a valid email address.<br> For example:<br> "noreply@crayveon.com".IsEmail()<br> will return True whereas<br> "noreplay-at-crayveon.com".IsEmail()<br> will return False.

  • IsEven()

    Checks if the given number is even.<br> For example:<br> 234.IsEven()<br> will return True whereas<br> 339.IsEven()<br> will return False.

  • IsLower()

    Validates that the given string object contains only lower case letters.<br> For example:<br> "IsLower test".IsLower()<br> will return False while<br> "islower test".IsLower()<br> will return True and<br> "islower test".IsLower(false)<br> will return False.

  • IsNumeric()

    Validates that the given string object contains all numeric<br> characters (0-9) returning True if it does and False if it<br> doesn't.<br> For example:<br> "123456".IsNumeric()<br> will return True whereas<br> "abc123".IsNumeric()<br> will return False.

  • IsOdd()

    Checks if the given number is odd.<br> For example:<br> 234.IsOdd()<br> will return False whereas<br> 339.IsOdd()<br> will return True.

  • IsPrime()

    Checks if the given number is a prime number.<br> For example:<br> 27.IsPrime()<br> will return False whereas<br> 29.IsPrime()<br> will return True.

  • IsStrong()

    Validates that the given string object contains a strong password string.<br> For example:<br> "abc123XYZ!@#".IsStrong()<br> will return True whereas<br> "abc123XYZ".IsStrong()<br> will return False and<br> "abc123XYZ".IsStrong(3)<br> will return True and<br> "abc123XYZ".IsStrong(2)<br> will return True.<br> The number parameter for IsStrong() indicates the number of criteria<br> that has to be true before the string is considered strong. Valid<br> values are 1 through 4 with the default value being 4.

  • IsUpper()

    Validates that the given string object contains only upper case letters.<br> For example:<br> "IsUpper test".IsUpper()<br> will return False while<br> "ISUPPER TEST".IsUpper()<br> will return True and<br> "ISUPPER TEST".IsUpper(false)<br> will return False.

  • IsUrlRoot()

    Check if the given string object containing a URL, is that of the<br> URL root only. Returns True if so, False if not.<br> For example:<br> "https://blog.cjvandyk.com".IsUrlRootOnly()<br> will return True whereas<br> "https://blog.cjvandyk.com/sites/Approval".IsUrlRootOnly()<br> will return False.

  • IsVowel()

    Checks if the given char/string is an English vowel.<br> This allows the developer the ability to check a string without<br> having to first convert to a char e.g. as a substring return.<br> For example:<br> "test".Substring(2, 1).IsVowel()<br> will return False since the "s" is checked whereas<br> "test".Substring(1, 1).IsVowel()<br> will return True since the "e" is checked.

  • IsZipCode()

    Checks if the given string object is in the valid format<br> of a United States zip code i.e. nnnnn-nnnn or just nnnnn.<br> For example:<br> "12345-6789".IsZipCode()<br> will return True whereas<br> "1234-56789".IsZipCode()<br> will return False.<br> "12345".IsZipCode()<br> will return True.<br>
    "123456".IsZipCode()<br> will return False.<br> "1234".IsZipCode()<br> will return False.

  • Left()

    This method returns text to the left of the index string. Use negative values for occurrence if the occurrence count should start from the end instead of its default from the beginning of the string.

  • Lines()

    This method returns the number of lines/sentences in the given string<br> object.

  • Load()

    Language extension providing a universal method to all objects<br> that allows them to be deserialized from disk.<br> Does NOT require the [Serializable] property on object.<br> For example:<br> ComplexClass myClass = new ComplexClass();<br> myClass = myClass.Load("My file path");<br> Use .Save() to save objects to disk.

  • LoremIpsum()

    Poplates the given string with a given number of paragraphs of dummy<br> text in the lorem ipsum style. For example:<br> "".LoremIpsum(2)<br> would yield<br> "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer<br> aliquam arcu rhoncus erat consectetur, quis rutrum augue tincidunt.<br> Suspendisse elit ipsum, lobortis lobortis tellus eu, vulputate<br> fringilla lorem. Cras molestie nibh sed turpis dapibus sollicitudin<br> ut a nulla. Suspendisse blandit suscipit egestas. Nunc et ante mattis<br> nulla vehicula rhoncus. Vivamus commodo nunc id ultricies accumsan.<br> Mauris vitae ante ut justo venenatis tempus.<br> <br> Nunc posuere, nisi eu convallis convallis, quam urna sagittis ipsum,<br> et tempor ante libero ac ex. Aenean lacus mi, blandit non eros luctus,<br> ultrices consectetur nunc. Vivamus suscipit justo odio, a porta massa<br> posuere ac. Aenean varius leo non ipsum porttitor eleifend. Phasellus<br> accumsan ultrices massa et finibus. Nunc vestibulum augue ut bibendum<br> facilisis. Donec est massa, lobortis quis molestie at, placerat a<br> neque. Donec quis bibendum leo. Pellentesque ultricies ac odio id<br> pharetra. Nulla enim massa, lacinia nec nunc nec, egestas pulvinar<br> odio. Sed pulvinar molestie justo, eu hendrerit nunc blandit eu.<br> Suspendisse et sapien quis ipsum scelerisque rutrum."<br>

  • Match()

    Checks if the current string matches a given search mask.<br> It ignores duplicate '' in the mask. '' is matched against<br> 0 or more characters. Duplicate '?' is treated as requiring<br> the number of characters. '?' is matched against 1 or more<br> characters.<br> For example:<br> "abcdefgh".Match("***a?c*")<br> will return True while<br> "abcdefgh".Match("***ac*")<br> will return False but<br> "abcdefgh".Match("?a?c*")<br> will also return False because the first '?' requires a character<br> before 'a'.

  • MorseCodeBeep()

    Takes a given System.String representing Morse code and audiblize<br> it according to standards.<br> https://www.infoplease.com/encyclopedia/science/engineering/electrical/morse-code<br> Assumes the input value to be in Morse code format already.<br> Use .ToMorseCode() to pre-convert text if needed.

  • NewCustomGuid()

    Returns a custom GUID starting with a custom string.<br> For example:<br> Extensions.NewCustomGuid("012")<br> will return a new GUID that starts with "012".

  • Print()

    Print the byte[] to console, separated by spaces and space padded<br> on the right to allow proper alignment for debug/testing output.<br> For example:<br> byte[] bytes = System.Text.Encoding.UTF8.GetBytes("blog.cjvandyk.com rocks!");<br> bytes.Print();

  • printf()

    Simple printf method for console output with color control. Both<br> text color and background color is returned to previous state<br> after the string has been written to console.<br> For example:<br> printf("Hello World!", ConsoleColor.Red, ConsoleColor.White);<br> will output the string to console in red text on a white background.

  • Quote()

    Return the given string encased in requested quotes.<br> Default is Constants.QuoteType.Double.<br> For example:<br> printf("https://blog.cjvandyk.com/sites/Rocks");<br> printf("https://blog.cjvandyk.com/sites/Rocks").Quote();<br> printf("https://blog.cjvandyk.com/sites/Rocks".Quote(<br> Constants.QuoteType.Single));<br> printf("https://blog.cjvandyk.com/sites/Rocks".Quote(<br> Constants.QuoteType.Double));<br> will return<br> https://blog.cjvandyk.com/sites/Rocks<br> "https://blog.cjvandyk.com/sites/Rocks"<br> 'https://blog.cjvandyk.com/sites/Rocks'<br> "https://blog.cjvandyk.com/sites/Rocks"

  • RemoveExtraSpace()

    Trims leading and trailing white space and then removes all extra<br> white space in the given string returning a single spaced result.<br> For example:<br> " blog.cjvandyk.com rocks ! ".RemoveExtraSpace()<br> will return<br> "blog.cjvandyk.com rocks !"

  • ReplaceTokens()

    Takes a given string object and replaces 1 to n tokens in the string<br> with replacement tokens as defined in the given Dictionary of strings.

  • Retry()

    Checks if a System.Net.WebException contains a "Retry-After" header.<br> If it does, it sleeps the thread for that period (+ 60 seconds)<br> before reattempting the HTTP call that caused the exception in the<br> first place. If no "Retry-After" header exist, the exception is<br> simply rethrown.<br> For example:<br> System.Net.HttpWebRequest request ...<br> Try<br> {<br> request.GetResponse();<br> }<br> Catch (System.Net.WebException ex)<br> {<br> ex.Retry(request);<br> }<br>

  • Save()

    Language extension providing a universal method to all objects<br> that allows them to be serialized to disk.<br> Does NOT require the [Serializable] property on object.<br> For example:<br> ComplexClass myClass = new ComplexClass(...<constructor parms>...);<br> myClass.Save("My file path");<br> Use .Load() to reload objects back from disk.

  • Set()

    _Language extension for properties. Use to set the value of the<br> extension property in question.<br> For example:<br> Microsoft.SharePoint.Client client = new Microsoft.SharePoint.Client("https://blog.cjvandyk.com");<br> client.ExecutingWebRequest += ClientContext_ExecutingWebRequest;<br> client.Set("HeaderDecoration", "NONISV|Crayveon|MyApp/1.0");<br> This allows the creation of the extension property "HeaderDecoration"<br> which can be changed as needed. Later in the delegate method we<br> refer back to the extension property value thus:<br> private void ClientContext_ExecutingWebRequest(object sender, WebRequestEventArgs e)<br> {<br> e.WebRequestExecutor.WebRequest.UserAgent = (string)e.Get("HeaderDecoration");<br> }<br> NOTE: We did not have to access the ClientContext class in order to<br> retrieve the "HeaderDecoration" value since the extension was<br> done against the System.Object class. As such, any object can<br> be used to retrieve the extension property value, as long as<br> you know the key value under which the property was stored and<br> you know the type to which the returned value needs to be cast.<br> A derived override method for Get() and Set() can be defined<br> using specific class objects if finer controls is needed.<br>

  • SingleQuote()

    Return the given string encased in single quotes.<br> For example:<br> printf("https://blog.cjvandyk.com/sites/Rocks");<br> printf("https://blog.cjvandyk.com/sites/Rocks".SingleQuote());<br> will return<br> https://blog.cjvandyk.com/sites/Rocks<br> 'https://blog.cjvandyk.com/sites/Rocks'

  • Singularize()

    Parses the given string removing multiples of a given character.<br> For example:<br> string searchMask = "***??abc*";<br> searchMask.Singularize('*')<br> will return<br> "*??abc*"

  • Smallest()

    Return the smallest of two given values.<br> For example:<br> Smallest(23, 31)<br> will return<br> 23

  • Substring()

    Extends the .Substring(startIndex) and .Substring(startIndex, length)<br> methods to the System.Text.StringBuilder class.<br> For example:<br> System.Text.StringBuilder sb = new System.Text.StringBuilder();<br> sb.Append("abc1abc2abc3abc4");<br> sb.Substring(5);<br> will return bc2abc3abc4<br> sb.Substring(5, 3);<br> will return bc2<br> Adds the FromHead/FromTail overloaded methods.<br> FromHead returns the "length" of characters from the head of the given<br> string.<br> For example:<br> sb.Substring(3, Constants.SubstringType.FromHead);<br> sb.Substring(5, Constants.SubstringType.FromHead);<br> sb.Substring(8, Constants.SubstringType.FromHead);<br> will return<br> abc<br> abc1a<br> abc1abc2<br> FromTail returns the "length" of characters from the tail of the given<br> string.<br> For example:<br> sb.Substring(3, Constants.SubstringType.FromTail);<br> sb.Substring(5, Constants.SubstringType.FromTail);<br> sb.Substring(8, Constants.SubstringType.FromTail);<br> will return<br> bc4<br> 3abc4<br> abc3abc4<br> Adds the LeftOfIndex/RightOfIndex overloaded methods.<br> LeftOfIndex returns the "length" of characters to the LEFT of the<br> located index representing the "occurence"th match of the "index"<br> string.<br> For example:<br> sb.Substring(5, "abc", Constants.SubstringType.LeftOfIndex, 0);<br> sb.Substring(5, "abc", Constants.SubstringType.LeftOfIndex, 1);<br> sb.Substring(5, "abc", Constants.SubstringType.LeftOfIndex, 2);<br> sb.Substring(5, "abc", Constants.SubstringType.LeftOfIndex, 3);<br> sb.Substring(5, "abc", Constants.SubstringType.LeftOfIndex, 4);<br> will return<br> <br> <br> abc1<br> 1abc2<br> 2abc3<br> RightOfIndex returns the "length" of characters to the RIGHT of the<br> located index representing the "occurence"th match of the "index"<br> string.<br> For example:<br> sb.Substring(5, "abc", Constants.SubstringType.RigthOfIndex, 0);<br> sb.Substring(5, "abc", Constants.SubstringType.RigthOfIndex, 1);<br> sb.Substring(5, "abc", Constants.SubstringType.RigthOfIndex, 2);<br> sb.Substring(5, "abc", Constants.SubstringType.RigthOfIndex, 3);<br> sb.Substring(5, "abc", Constants.SubstringType.RigthOfIndex, 4);<br> will return<br> ``<br> 1abc2<br> 2abc3<br> 3abc4<br> 4

  • System.Timer class

    This class provides and easy way to time things like a stopwatch.<br> .Start() starts the timer.<br> .Stop() stops the timer.<br> .Pause() pauses the timer.<br> .Resume() resumes the timer.<br> .Reset() resets the timer.<br> For example:<br> System.Timer timer = new System.Timer();<br> timer.Start();<br> <DO STUFF><br> System.TimeSpan howlong = timer.Stop();

  • TimeStamp()

    Returns a string representing the current local date time stamp to<br> either just the day or down to the millisecond. Used for creating<br> unique log file names.<br> For example:<br> TimeStamp()<br> will return<br> 2021-03-01@06.01.02.003<br> whereas<br> TimeStamp(true)<br> will return<br> 2021-03-01

  • ToBinary()

    This method returns the given string represented in 1s and 0s as<br> a binary result.<br> For example:<br> "This test".ToBinary()<br> will return <br> 1010100 1101000 1101001 1110011 100000 1110100 1100101 1110011 1110100

  • ToEnum()

    This method matches a given string to the given enum set and returns<br> the matched enum.<br> For example:<br> enum testEnum { first, second, third };<br> var testEnumResult = "first".ToEnum<testEnum>();<br> Console.WriteLine(testEnumResult == testEnum.first);<br> will return<br> True

  • ToMorseCode()

    Convert given string to its Morse code representation.<br> Undefined characters will return in the format:<br> Undefined:[char=""]<br> For example:<br> "sos@".ToMorseCode()<br> will return<br> "...---...<Undefined:[@]>"

  • ToQueryString()

    Convert given Dictionary<string, string> into a querystring.<br> For example:<br> Dictionary<string, string> dic1 = new Dictionary<string, string>();<br> dic1.Add("Parm1", "Val1");<br> dic1.Add("Parm2", "Val2");<br> dic1.Add("Parm3", "Val3");<br> Console.WriteLine(dic1.ToQueryString());<br> will return<br> "?Parm1=Val1&Parm2=Val2&Parm3=Val3"

  • Binary Data Size Convertions<br>

    • System.Double.ToNumberBytes() >>> Returns the given number expressed as Bytes.<br>
    • System.Double.ToKB() >>> Returns the given number expressed as Kilobytes (2^10).<br>
    • System.Double.ToMB() >>> Returns the given number expressed as Megabytes (2^20).<br>
    • System.Double.ToGB() >>> Returns the given number expressed as Gigabytes (2^30).<br>
    • System.Double.ToTB() >>> Returns the given number expressed as Terrabytes (2^40).<br>
    • System.Double.ToPB() >>> Returns the given number expressed as Petabytes (2^50).<br>
    • System.Double.ToEB() >>> Returns the given number expressed as Exabytes (2^60).<br>
    • System.Double.ToZB() >>> Returns the given number expressed as Zettabytes (2^70).<br>
    • System.Double.ToYB() >>> Returns the given number expressed as Yottabytes (2^80).<br>
    • System.Double.ToBB() >>> Returns the given number expressed as Brontobytes (2^90).<br>
    • System.Double.ToGpB() >>> Returns the given number expressed as Geopbytes (2^100).<br>
    • System.Double.ToSB() >>> Returns the given number expressed as Saganbytes (2^110).<br>
    • System.Double.ToPaB() >>> Returns the given number expressed as Pijabytes (2^120).<br>
    • System.Double.ToAB() >>> Returns the given number expressed as Alphabytes (2^130).<br>
    • System.Double.ToPlB() >>> Returns the given number expressed as Pectrolbytes (2^140).<br>
    • System.Double.ToBrB() >>> Returns the given number expressed as Bolgerbytes (2^150).<br>
    • System.Double.ToSoB() >>> Returns the given number expressed as Sambobytes (2^160).<br>
    • System.Double.ToQB() >>> Returns the given number expressed as Quesabytes (2^170).<br>
    • System.Double.ToKaB() >>> Returns the given number expressed as Kinsabytes (2^180).<br>
    • System.Double.ToRB() >>> Returns the given number expressed as Rutherbytes (2^190).<br>
    • System.Double.ToDB() >>> Returns the given number expressed as Dubnibytes (2^200).<br>
    • System.Double.ToHB() >>> Returns the given number expressed as Hassiubytes (2^210).<br>
    • System.Double.ToMrB() >>> Returns the given number expressed as Meitnerbytes (2^220).<br>
    • System.Double.ToDdB() >>> Returns the given number expressed as Darmstadbytes (2^230).<br>
    • System.Double.ToRtB() >>> Returns the given number expressed as Roentbytes (2^240).<br>
    • System.Double.ToShB() >>> Returns the given number expressed as Sophobytes (2^250).<br>
    • System.Double.ToCB() >>> Returns the given number expressed as Coperbytes (2^260).<br>
    • System.Double.ToKkB() >>> Returns the given number expressed as Koentekbytes (2^270).<br>

    For example:<br> double dbl = 1;<br> Console.WriteLine(dbl.ToKB(Constants.NumberType.TB));<br> Console.WriteLine(dbl.ToKB(Constants.NumberType.GB));<br> Console.WriteLine(dbl.ToKB(Constants.NumberType.ZB));<br> will return<br> 1073741824<br> 1048576<br> 1.15292150460685E+18

  • ToTimeZone()

    Convert given DateTime between different time zones with ease.<br> For example:<br> System.DateTime now = System.DateTime.UtcNow;<br> now.ToTimeZone(<br> Constants.TimeZone.UTC,<br> Constants.TimeZone.EasternStandardTime));<br> will return the current UTC time as Eastern time.

  • TrimLength()

    Returns part of the given System.Text.StringBuilder object<br> tuncated to the requested length minus the length of the<br> suffix.<br> If the string is null or empty, it returns said value.<br> If the string is shorter than the requested length, it returns<br> the whole string.<br> For example:<br> "The Extensions.cs NuGet package rocks!".TrimLength(20)<br> will return "The Extensions.cs..." while<br> "The Extensions.cs NuGet package rocks!".TrimLength(20, "")<br> will return "The Extensions.cs Nu" and<br> "The Extensions.cs NuGet package rocks!".TrimLength(20, ">>")<br> will return "The Extensions.cs >>"<br>

  • TrimStart()

    Trims a given string rather than just a character, from the start of<br> the target string. The traditional Trim() only allowed char values<br> to be trimmed. TrimStart() solves that limitation in an easier to<br> fashion that using Substring().<br> For example:<br> "https://blog.cjvandyk.com".TrimStart("https://")<br> will return<br> "blog.cjvandyk.com"

  • Validate()

    Makes quick work of conducting multiple types of validations on all<br> parameters. It takes a parameter array of ErrorType and conducts<br> the appropriate validation such as null checking, non-zero checking<br> etc. against the parameter array passed.<br> For example:<br> Validate(Constants.ErrorTypeAll, amount, percent, years, frequency);<br> will perform all defined error checks against the amount, percent,<br> years and frequency parameters.

    • Add Logging.ConstructMessage().<br>
    • Add Logging.ConsoleMessage().<br>
    • Add Logging.EventLogMessage().<br>
    • Add Logging.FileMessage().<br>
  • ValidateNoNulls()

    Makes quick work of null validating all parameters you pass to it.<br> This method takes a variable number of parameters and validates that<br> all parameters are not null. If a parameter is found to be null, a<br> ArgumentNullException is thrown.<br> For example:<br> void MyMethod(string str, double dbl, MyClass cls)<br> {<br> Universal.ValidateNoNulls(str, dbl, cls);<br> ...Your code here...<br> }<br> You do not have to pass all parameters, but can instead do this:<br> void MyMethod(string str, double dbl, MyClass cls)<br> {<br> Universal.ValidateNoNulls(str, cls);<br> ...Your code here...<br> }<br> where we chose NOT to validate the double dbl in this case.

  • Words()

    This method returns the number of words used in the given string<br> object. For example:<br> "This is my test".Words()<br> will return 4 whereas<br> "ThisIsMyTest".Words()<br> will return 1.

  • Wrn()

    Write a Warning message to active channels (console, event log, file)<br> using the System.Logging class.

Product Compatible and additional computed target framework versions.
.NET net5.0 is compatible.  net5.0-windows was computed.  net6.0 is compatible.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 is compatible.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 is compatible. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 is compatible. 
.NET Framework net461 is compatible.  net462 is compatible.  net463 was computed.  net47 is compatible.  net471 is compatible.  net472 is compatible.  net48 is compatible.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
6.0.800 172 2/22/2024

- Updated to support .NET 7.0
- Fixed bug #19