• Home
  • API Documentation
  • API Documentation
  • Mozzarella
  • ByteArrayExtensions
Show / Hide Table of Contents
  • Mozzarella
    • ByteArrayExtensions
      • AsString
      • ToHexString
    • CoalesceOptions
      • None
      • WhiteSpaceAsEmpty
    • EnumerableOfStringExtensions
      • Coalesce
    • ErasableString
      • Clear
      • Dispose
      • ErasableString
      • IsCleared
      • IsDisposed
      • Value
    • StringBuilderExtensions
      • Append
      • AppendIf
      • AppendJoin
      • Contains
      • IndexOf
      • LastIndexOf
      • ToLower
      • ToUpper
      • Trim
      • TrimEnd
      • TrimStart
    • StringExtensions
      • AddPrefix
      • AddSuffix
      • AfterFirst
      • AfterLast
      • BeforeFirst
      • BeforeLast
      • CICompare
      • CIContains
      • CIEquals
      • CIReplace
      • Coalesce
      • Contains
      • ContainsOnly
      • IndexOfFirstDifference
      • IsAllDigits
      • IsAlphanumeric
      • IsNullOrEmpty
      • IsNullOrWhiteSpace
      • IsOnlyAlphas
      • IsOnlyDigits
      • LevenshteinDistanceTo
      • Like
      • NullIfEmpty
      • OCICompare
      • OCIContains
      • OCIEquals
      • OCIReplace
      • OEquals
      • PascalCaseToWords
      • RemoveAllExcept
      • RemoveAllWhiteSpace
      • RemoveNonAlphanumerics
      • RemoveNonAlphas
      • Replace
      • StripNonDigits
      • StripPrefix
      • StripSuffix
      • Truncate
  • Mozzarella.Tests
    • RemoveNonAlphanumerics
      • RemoveNonAlphanumerics_DoesNotRemoveNumerics
      • RemoveNonAlphanumerics_RemovesNonAlphanumerics
      • RemoveNonAlphanumerics_ReturnsEmptyForEmpty
      • RemoveNonAlphanumerics_ReturnsNullForNull
      • RemoveNonAlphanumerics_ReturnsOriginalStringWhenNoCharactersRemoved
    • RemoveNonAlphas
      • RemoveNonAlphas_RemovesNonNumericNonAlphas
      • RemoveNonAlphas_RemovesNumerics
      • RemoveNonAlphas_ReturnsEmptyForEmpty
      • RemoveNonAlphas_ReturnsNullForNull
      • RemoveNonAlphas_ReturnsOriginalStringWhenNoCharactersRemoved

Class Byte​Array​Extensions

Extensions for byte arrays.

Inheritance
System.​Object
Byte​Array​Extensions
Inherited Members
System.​Object.​To​String()
System.​Object.​Equals(System.​Object)
System.​Object.​Equals(System.​Object, System.​Object)
System.​Object.​Reference​Equals(System.​Object, System.​Object)
System.​Object.​Get​Hash​Code()
System.​Object.​Get​Type()
System.​Object.​Memberwise​Clone()
Namespace: Mozzarella
Assembly: cs.temp.dll.dll
Syntax
public static class ByteArrayExtensions

Methods

Name Description
As​String(Byte[])

Returns a string created by converting buffer to UTF8 characters.

As​String(Byte[], Encoding)

Returns a string created by converting buffer to a string using the specified encoding.

To​Hex​String(Byte[])

Converts a byte array into a string containing it's hexadecimal representation.

In This Article
  • Methods
Back to top Copyright (c) 2017 Troy Willmot