Skip to content

ayushkumarsinha/AndcultureCode.CSharp.Extensions

This branch is 102 commits ahead of zball/AndcultureCode.CSharp.Extensions:master.

Folders and files

NameName
Last commit message
Last commit date

Latest commit

author
Brandon Scott
Sep 22, 2020
dd8fdfd · Sep 22, 2020
Aug 24, 2020
Aug 24, 2020
Sep 22, 2020
Sep 22, 2020
Jun 22, 2020
Aug 24, 2020
Oct 8, 2019
Aug 20, 2019
Aug 20, 2019
Aug 20, 2019
Aug 21, 2019
Jul 7, 2020
Jul 7, 2020
Aug 24, 2020
Aug 24, 2020

Repository files navigation

AndcultureCode.CSharp.Extensions Build Status codecov code style: prettier

Commonly used CSharp extension methods used at andculture.

Getting Started

This package is installed via NuGet

dotnet add [<PROJECT>] package AndcultureCode.CSharp.Extensions

After installation, simply import the extensions namespace to gain access to all of the available extension methods

using System;
using System.Collection.Generic;
using AndcultureCode.CSharp.Extensions;

public class Program
{
    public static int Main(string[] args)
    {
        new List<string>().IsEmpty(); // returns true
    }
}

Documentation

Full API Documentation

Development Setup

Below are a few basics to get you started, but there are many more commands and options for managing this and other projects found in the and-cli.

Building project

  • Run the build command
    and-cli dotnet --build
    

Running tests along with code coverage

  • Run the test command
    and-cli dotnet-test
    
  • Open the coverage/index.htm file in your browser

Publishing a new version

Contributing

Information on contributing to this repo is in the Contributing Guide

About

Commonly used CSharp extension methods used at Andculture

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • C# 99.7%
  • Shell 0.3%