PGFunction 0.0.4

The owner has unlisted this package. This could mean that the package is deprecated, has security vulnerabilities or shouldn't be used anymore.
dotnet add package PGFunction --version 0.0.4
                    
NuGet\Install-Package PGFunction -Version 0.0.4
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="PGFunction" Version="0.0.4" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="PGFunction" Version="0.0.4" />
                    
Directory.Packages.props
<PackageReference Include="PGFunction" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add PGFunction --version 0.0.4
                    
#r "nuget: PGFunction, 0.0.4"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package PGFunction@0.0.4
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=PGFunction&version=0.0.4
                    
Install as a Cake Addin
#tool nuget:?package=PGFunction&version=0.0.4
                    
Install as a Cake Tool

Some EX Class with static function.

if has bug, please e-mail to me, i'll fix them as soon as i can.

a15752468@gmail.com

Product Compatible and additional computed target framework versions.
.NET Framework net is compatible. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

This package has no dependencies.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated

2016/03/14 : Add Xml Serialization and DataContract Serialization.

2015/12/27 : Add MathEX and update MessageBoxEX

2015/12/27 : Record what ClassEX in here.
Now ClassEX : MathEX, MessageBoxEX, SerializationEX, ThreadEX, TryCatchEX

What's in MathEX :
Stdandard : Calculate Standard value of value list.

What's in MessageBoxEX : Simple call of MessageBox.Show( ... )
Show : use ENum MessageBoxEXType to simple the icon and button enum.
EX: MessageBoxEX.Show( "message", MessageBoxEXType.Warn_YN ); // it's mean show a message box with Warning icon and YesNo button.


What's in SerializationEX :
BinarySerialize : serialize object to path.
BinaryDeSerialize : deserialize object from path.


What's in ThreadEX :
StartNewThread : create a thread and start it.( templete with no para Action to 16 para Action )


What's in TryCatchEX :
Try : package try-catch block to a method and return exception if it has or return null if it hasn't.  Best use with one line expression.
Try<Result> : package try-catch block to a method and return defaultValue if it has or return Result if it hasn't.  Best use where u don't care what exception occur.
Try<Result>( ..., out Exception, ... ) : same with Try<Result> but this will set exception object if it has, or set null to it.