PGExtension_x86 0.2.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 PGExtension_x86 --version 0.2.4
                    
NuGet\Install-Package PGExtension_x86 -Version 0.2.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="PGExtension_x86" Version="0.2.4" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="PGExtension_x86" Version="0.2.4" />
                    
Directory.Packages.props
<PackageReference Include="PGExtension_x86" />
                    
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 PGExtension_x86 --version 0.2.4
                    
#r "nuget: PGExtension_x86, 0.2.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 PGExtension_x86@0.2.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=PGExtension_x86&version=0.2.4
                    
Install as a Cake Addin
#tool nuget:?package=PGExtension_x86&version=0.2.4
                    
Install as a Cake Tool

Some Extension Class to use.

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 net40 is compatible.  net403 was computed.  net45 was computed.  net451 was computed.  net452 was computed.  net46 was computed.  net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
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/10/24
* Fix bugs and Add methods.

2016/06/23
* Fix Substring bug.
* Remove InitailWhenUse class ( .Net has System.Lazy<T> to instead it )
* Add IEnumrable Extension : WithIndex() - Add index to each item in list. So u can get index in foreach loop.

2016/03/14
* Remove ToInt32(), ToDouble()...
* Add ToType<T> instead
* Add many..

2015/12/27 - Add Enum extension method
Description : Get Attribute [Description( "Des" )] with enum, if no description, return ToString().

2015/12/27 - Add Char extension method
IsIn : Check the char is in the list of char, this just call linq's extension method => .Contains( ... ).
Copy some Char static method to extension method : IsControl, IsDigit, IsLetter, IsLetterOrDigit, IsLower, IsNumber, IsPunctuation, IsSeparator, IsSymbol, IsUpper, IsWhiteSpace, ToLower, ToUpper


2015/12/26 - Add DateTime extension method
SetTime : replace datetime's year, month, day to new value.
GetTime : get time part of datetime.
SetDate : replace datetime's year, month, day to new value.



2015/10/25 - Add String.IsIn and String.StartWith Function
String.IsIn : Check the string is in list or not.
String.StartWith : Check is the string start with another string.( with multiple string to compare )


2015/10/07 - Remove PGFunction, PGExControl, PGExObject ( independent they each )

2015/07/16 - Add DateTime Extension method
NextDay - get next day of week base on this day.
PreDay - get pre day of week base on this day.



2015/07/08 - Add TryCatchEX in PGFunction
Add Try method in TryCatchEX - this method proviod you to omit not enter key word try-catch.



2015/07/08 - Add PGFunction
PGFunction package static method of some general use method.
ThreadEX - now have StartNewThread method, use to run a method with thread and return the thread.
SerializationEX - now have BinarySerialize and BinaryDeSerialize to save/load any object that can be serialize to file.



2015/06/12 - Add Extension
ToDouble, ToFloat


2015/05/31 - Fix Item PGExObject - ClipboardWatcher
   now can use static method to add watch event or create an ClipboardWatcher Control to handle ClipboardChangedEvent.


2015/05/29 - Release PGExControl, PGExObject, PGExtension


What's in PGExControl?
ExTextBox : TextBox with TextHint and Suffix property.


What's in PGExObject?
Clipboard Watcher - to Watcher with Windows API.


What's in PGExtension?
Extension of String : IsInt32(), ToInt32().