Skip to content

The 'TryToExecute' represents an implementation of the try/catch/finally block. It can execute code without worrying about exceptions; it only specifies what to do in this case and delegate it.

License

Notifications You must be signed in to change notification settings

I-RzR-I/TryToExecute

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

16 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Note This repository is developed from the beginning using .netstandard1.0.

Name Details
TryToExecute NuGet Version Nuget Downloads

The repository represents an implementation of the try/catch/finally block. It can execute code without worrying about exceptions; it only specifies what to do in this case and delegate it in sync or async flow.

In the following flow on trying to implement try execution (TryToExecute, TryToExecuteAsync), you delegate:

  • the base execution code try { };
  • code for the catch block catch { };
  • code for finally block finally { }.

To understand more efficiently how you can use available functionalities please consult the using documentation/file.

In case you wish to use it in your project, u can install the package from nuget.org or specify what version you want:

Install-Package TryToExecute -Version x.x.x.x

Content

  1. USING
  2. CHANGELOG
  3. BRANCH-GUIDE

About

The 'TryToExecute' represents an implementation of the try/catch/finally block. It can execute code without worrying about exceptions; it only specifies what to do in this case and delegate it.

Topics

Resources

License

Stars

Watchers

Forks

Packages

No packages published