PGExtension_x86 0.2.4
dotnet add package PGExtension_x86 --version 0.2.4
NuGet\Install-Package PGExtension_x86 -Version 0.2.4
<PackageReference Include="PGExtension_x86" Version="0.2.4" />
<PackageVersion Include="PGExtension_x86" Version="0.2.4" />
<PackageReference Include="PGExtension_x86" />
paket add PGExtension_x86 --version 0.2.4
#r "nuget: PGExtension_x86, 0.2.4"
#:package PGExtension_x86@0.2.4
#addin nuget:?package=PGExtension_x86&version=0.2.4
#tool nuget:?package=PGExtension_x86&version=0.2.4
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 | Versions 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. |
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().