Skip to content

LeeVox/sdk

Repository files navigation

LeeVox.Sdk

SDK for .Net Core

Purpose

This is collection of useful functions for lazy developers (like me).

Status

Build

Windows Ubuntu macOS
Build Status Build Status Build Status

Code Coverage

codecov

Table of Content

  • Text extensions

    • Common extensions for System.String

      • SafeTrim() safely trim a System.String, returns string.Empty in case of null.

      • IsEqual() IsEqualIgnoreCase() IsOrdinalEqual() IsOrdinalEqualIgnoreCase() determines whether a System.String has same value to another System.String.

      • Contains() OrdinalContains() determines whether a System.String contains another System.String.

    • Parsing extensions for System.String

      • ParseTo<TResult>() try to convert the specified System.String to Nullable<TResult> type using Convert.ChangeType function.

      • ParseToBoolean() ParseToInt() ParseToDateTime() ... try to convert the specified System.String to primitive data types.

  • Threading extensions