🖌️
FC.Extension
  • FC.Extension
  • How to Use?
  • Release Note
  • FC.Extension.List
    • ToDataTable
  • FC.Extension.Date
    • Age
  • FC.Extension.String
    • Encrypt
    • Decrypt
    • Truncate a String
  • SQL
    • SQL Extension
    • PostgreSQL Extension
Powered by GitBook
On this page

Was this helpful?

How to Use?

How to use the Sample?

  • All the below sample may uses the CliFx /xUnit Test based command to use and run as it is.

The full sample on how it uses the extension is given below

using System;
using System.Threading.Tasks;
using CliFx;
using CliFx.Attributes;
using CliFx.Infrastructure;

namespace FC.Extension.ExecutionSample
{
    public static class Program
    {
        public static async Task<int> Main() =>
            await new CliApplicationBuilder()
                .AddCommandsFromThisAssembly()
                .Build()
                .RunAsync();
    }    
}

PreviousFC.ExtensionNextRelease Note

Last updated 3 years ago

Was this helpful?