├── .gitattributes ├── .github ├── FUNDING.yml └── ISSUE_TEMPLATE.md ├── .gitignore ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── Z.ExtensionMethods.Generated.sln ├── Z.ExtensionMethods.Lab2 ├── App.config ├── Program.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── Z.ExtensionMethods.Lab2.csproj └── packages.config ├── Z.ExtensionMethods.sln ├── cheat-sheet └── cheat-sheet.pdf ├── dapper-plus-sponsor.png ├── entity-framework-extensions-sponsor.png ├── lab ├── Z.ExtensionMethods.Lab │ ├── Form1.Designer.cs │ ├── Form1.cs │ ├── Program.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── Z.ExtensionMethods.Lab.csproj │ ├── _Model │ │ └── Entity.cs │ └── app.config └── empty.txt ├── src (VB.NET) ├── Z.ExtensionMethods.VB │ ├── My Project │ │ ├── Application.Designer.vb │ │ ├── Application.myapp │ │ ├── AssemblyInfo.vb │ │ ├── Resources.Designer.vb │ │ ├── Resources.resx │ │ ├── Settings.Designer.vb │ │ └── Settings.settings │ ├── Z.Caching │ │ ├── System.Object │ │ │ └── Object.FromCache.vb │ │ └── System.Runtime.Caching.MemoryCache │ │ │ └── MemoryCache.AddOrGetExisting.vb │ ├── Z.Collections │ │ ├── System.Collections.Generic.ICollection[T] │ │ │ ├── ICollection[T].AddIf.vb │ │ │ ├── ICollection[T].AddIfNotContains.vb │ │ │ ├── ICollection[T].AddRange.vb │ │ │ ├── ICollection[T].AddRangeIf.vb │ │ │ ├── ICollection[T].AddRangeIfNotContains.vb │ │ │ ├── ICollection[T].ContainsAll.vb │ │ │ ├── ICollection[T].ContainsAny.vb │ │ │ ├── ICollection[T].IsEmpty.vb │ │ │ ├── ICollection[T].IsNotEmpty.vb │ │ │ ├── ICollection[T].IsNotNullOrEmpty.vb │ │ │ ├── ICollection[T].IsNullOrEmpty.vb │ │ │ ├── ICollection[T].RemoveIf.vb │ │ │ ├── ICollection[T].RemoveIfContains.vb │ │ │ ├── ICollection[T].RemoveRange.vb │ │ │ ├── ICollection[T].RemoveRangeIf.vb │ │ │ ├── ICollection[T].RemoveRangeIfContains.vb │ │ │ └── ICollection[T].RemoveWhere.vb │ │ ├── System.Collections.Generic.IDictionary[TKey, TValue] │ │ │ ├── IDictionary[Tkey, TValue].AddIfNotContainsKey.vb │ │ │ ├── IDictionary[Tkey, TValue].AddOrUpdate.vb │ │ │ ├── IDictionary[Tkey, TValue].ContainsAllKey.vb │ │ │ ├── IDictionary[Tkey, TValue].ContainsAnyKey.vb │ │ │ ├── IDictionary[Tkey, TValue].GetOrAdd.vb │ │ │ ├── IDictionary[Tkey, TValue].RemoveIfContainsKey.vb │ │ │ └── IDictionary[Tkey, TValue].ToSortedDictionary.vb │ │ ├── System.Collections.Generic.IDictionary[string, object] │ │ │ └── IDictionary[string, object].ToExpando.vb │ │ ├── System.Collections.Generic.IDictionary[string, string] │ │ │ └── IDictionary[string, string].ToNameValueCollection.vb │ │ ├── System.Collections.Generic.IEnumerable[T] │ │ │ ├── IEnumerable[T].ContainsAll.vb │ │ │ ├── IEnumerable[T].ContainsAny.vb │ │ │ ├── IEnumerable[T].ForEach.vb │ │ │ ├── IEnumerable[T].IsEmpty.vb │ │ │ ├── IEnumerable[T].IsNotEmpty.vb │ │ │ ├── IEnumerable[T].IsNotNullOrEmpty.vb │ │ │ ├── IEnumerable[T].IsNullOrEmpty.vb │ │ │ └── IEnumerable[T].StringJoin.vb │ │ ├── System.Collections.IDictionary │ │ │ └── IDictionary.ToHashtable.vb │ │ └── System.Collections.Specialized.NameValueCollection │ │ │ └── NameValueCollection.ToDictionary.vb │ ├── Z.Compression │ │ ├── GZip │ │ │ ├── System.ByteArray │ │ │ │ └── ByteArray.DecompressGZip.vb │ │ │ ├── System.IO.FileInfo │ │ │ │ ├── FileInfo.CreateGZip.vb │ │ │ │ └── FileInfo.ExtractGZipToDirectory.vb │ │ │ └── System.String │ │ │ │ └── String.CompressGZip.vb │ │ └── ZipFile │ │ │ ├── System.IO.DirectoryInfo │ │ │ └── DirectoryInfo.CreateZipFile.vb │ │ │ └── System.IO.FileInfo │ │ │ ├── FileInfo.ExtractZipFileToDirectory.vb │ │ │ ├── FileInfo.OpenReadZipFile.vb │ │ │ └── FileInfo.OpenZipFile.vb │ ├── Z.Core │ │ ├── System.Array │ │ │ ├── Array.ClearAll.vb │ │ │ ├── Array.WithinIndex.vb │ │ │ ├── System.Array │ │ │ │ ├── Array.BinarySearch.vb │ │ │ │ ├── Array.Clear.vb │ │ │ │ ├── Array.ConstrainedCopy.vb │ │ │ │ ├── Array.Copy.vb │ │ │ │ ├── Array.IndexOf.vb │ │ │ │ ├── Array.LastIndexOf.vb │ │ │ │ ├── Array.Reverse.vb │ │ │ │ └── Array.Sort.vb │ │ │ └── System.Buffer │ │ │ │ ├── Array.BlockCopy.vb │ │ │ │ ├── Array.ByteLength.vb │ │ │ │ ├── Array.GetByte.vb │ │ │ │ └── Array.SetByte.vb │ │ ├── System.Boolean │ │ │ ├── Boolean.IfFalse.vb │ │ │ ├── Boolean.IfTrue.vb │ │ │ ├── Boolean.ToBinary.vb │ │ │ └── Boolean.ToString.vb │ │ ├── System.Byte │ │ │ └── System.Math │ │ │ │ ├── Byte.Max.vb │ │ │ │ └── Byte.Min.vb │ │ ├── System.ByteArray │ │ │ ├── ByteArray.Resize.vb │ │ │ ├── ByteArray.ToImage.vb │ │ │ ├── ByteArray.ToMemoryStream.vb │ │ │ ├── System.Convert │ │ │ │ ├── ByteArray.ToBase64CharArray.vb │ │ │ │ └── ByteArray.ToBase64String.vb │ │ │ ├── System.Web.HttpServerUtility │ │ │ │ └── ByteArray.UrlTokenEncode.vb │ │ │ └── System.Web.HttpUtility │ │ │ │ ├── ByteArray.UrlDecode.vb │ │ │ │ ├── ByteArray.UrlDecodeToBytes.vb │ │ │ │ ├── ByteArray.UrlEncode.vb │ │ │ │ └── ByteArray.UrlEncodeToBytes.vb │ │ ├── System.Char │ │ │ ├── Char.Repeat.vb │ │ │ ├── Char.To.vb │ │ │ ├── System.Char │ │ │ │ ├── Char.ConvertToUtf32.vb │ │ │ │ ├── Char.GetNumericValue.vb │ │ │ │ ├── Char.GetUnicodeCategory.vb │ │ │ │ ├── Char.IsControl.vb │ │ │ │ ├── Char.IsDigit.vb │ │ │ │ ├── Char.IsHighSurrogate.vb │ │ │ │ ├── Char.IsLetter.vb │ │ │ │ ├── Char.IsLetterOrDigit.vb │ │ │ │ ├── Char.IsLowSurrogate.vb │ │ │ │ ├── Char.IsLower.vb │ │ │ │ ├── Char.IsNumber.vb │ │ │ │ ├── Char.IsPunctuation.vb │ │ │ │ ├── Char.IsSeparator.vb │ │ │ │ ├── Char.IsSurrogate.vb │ │ │ │ ├── Char.IsSurrogatePair.vb │ │ │ │ ├── Char.IsSymbol.vb │ │ │ │ ├── Char.IsUpper.vb │ │ │ │ ├── Char.IsWhiteSpace.vb │ │ │ │ ├── Char.ToLower.vb │ │ │ │ ├── Char.ToLowerInvariant.vb │ │ │ │ ├── Char.ToString.vb │ │ │ │ ├── Char.ToUpper.vb │ │ │ │ └── Char.ToUpperInvariant.vb │ │ │ └── _CoreObject │ │ │ │ ├── Char.In.vb │ │ │ │ └── Char.NotIn.vb │ │ ├── System.DateTime │ │ │ ├── DateTime.Age.vb │ │ │ ├── DateTime.Elapsed.vb │ │ │ ├── DateTime.EndOfDay.vb │ │ │ ├── DateTime.EndOfMonth.vb │ │ │ ├── DateTime.EndOfWeek.vb │ │ │ ├── DateTime.EndOfYear.vb │ │ │ ├── DateTime.FirstDayOfWeek.vb │ │ │ ├── DateTime.IsAfternoon.vb │ │ │ ├── DateTime.IsDateEqual.vb │ │ │ ├── DateTime.IsFuture.vb │ │ │ ├── DateTime.IsMorning.vb │ │ │ ├── DateTime.IsNow.vb │ │ │ ├── DateTime.IsPast.vb │ │ │ ├── DateTime.IsTimeEqual.vb │ │ │ ├── DateTime.IsToday.vb │ │ │ ├── DateTime.IsWeekDay.vb │ │ │ ├── DateTime.IsWeekendDay.vb │ │ │ ├── DateTime.LastDayOfWeek.vb │ │ │ ├── DateTime.SetTime.vb │ │ │ ├── DateTime.StartOfDay.vb │ │ │ ├── DateTime.StartOfMonth.vb │ │ │ ├── DateTime.StartOfWeek.vb │ │ │ ├── DateTime.StartOfYear.vb │ │ │ ├── DateTime.ToEpochTimeSpan.vb │ │ │ ├── DateTime.Tomorrow.vb │ │ │ ├── DateTime.Yesterday.vb │ │ │ ├── System.TimeZone │ │ │ │ └── DateTime.IsDaylightSavingTime.vb │ │ │ ├── System.TimeZoneInfo │ │ │ │ ├── DateTime.ConvertTime.vb │ │ │ │ ├── DateTime.ConvertTimeBySystemTimeZoneId.vb │ │ │ │ ├── DateTime.ConvertTimeFromUtc.vb │ │ │ │ └── DateTime.ConvertTimeToUtc.vb │ │ │ ├── ToDateTimeFormat │ │ │ │ ├── DateTime.ToFullDateTimeString.vb │ │ │ │ ├── DateTime.ToLongDateShortTimeString.vb │ │ │ │ ├── DateTime.ToLongDateString.vb │ │ │ │ ├── DateTime.ToLongDateTimeString.vb │ │ │ │ ├── DateTime.ToLongTimeString.vb │ │ │ │ ├── DateTime.ToMonthDayString.vb │ │ │ │ ├── DateTime.ToRFC1123String.vb │ │ │ │ ├── DateTime.ToShortDateLongTimeString.vb │ │ │ │ ├── DateTime.ToShortDateString.vb │ │ │ │ ├── DateTime.ToShortDateTimeString.vb │ │ │ │ ├── DateTime.ToShortTimeString.vb │ │ │ │ ├── DateTime.ToSortableDateTimeString.vb │ │ │ │ ├── DateTime.ToUniversalSortableDateTimeString.vb │ │ │ │ ├── DateTime.ToUniversalSortableLongDateTimeString.vb │ │ │ │ └── DateTime.ToYearMonthString.vb │ │ │ └── _CoreObject │ │ │ │ ├── DateTime.Between.vb │ │ │ │ ├── DateTime.In.vb │ │ │ │ ├── DateTime.InRange.vb │ │ │ │ └── DateTime.NotIn.vb │ │ ├── System.DateTimeOffset │ │ │ ├── DateTimeOffset.SetTime.vb │ │ │ ├── System.TimeZoneInfo │ │ │ │ ├── DateTimeOffset.ConvertTime.vb │ │ │ │ └── DateTimeOffset.ConvertTimeBySystemTimeZoneId.vb │ │ │ └── _CoreObject │ │ │ │ ├── DateTimeOffset.Between.vb │ │ │ │ ├── DateTimeOffset.In.vb │ │ │ │ ├── DateTimeOffset.InRange.vb │ │ │ │ └── DateTimeOffset.NotIn.vb │ │ ├── System.Decimal │ │ │ ├── Decimal.ToMoney.vb │ │ │ ├── System.Decimal │ │ │ │ ├── Decimal.Divide.vb │ │ │ │ ├── Decimal.GetBits.vb │ │ │ │ ├── Decimal.Multiply.vb │ │ │ │ ├── Decimal.Negate.vb │ │ │ │ ├── Decimal.Remainder.vb │ │ │ │ ├── Decimal.Subtract.vb │ │ │ │ ├── Decimal.ToByte.vb │ │ │ │ ├── Decimal.ToDouble.vb │ │ │ │ ├── Decimal.ToInt16.vb │ │ │ │ ├── Decimal.ToInt32.vb │ │ │ │ ├── Decimal.ToInt64.vb │ │ │ │ ├── Decimal.ToOACurrency.vb │ │ │ │ ├── Decimal.ToSByte.vb │ │ │ │ ├── Decimal.ToSingle.vb │ │ │ │ ├── Decimal.ToUInt16.vb │ │ │ │ ├── Decimal.ToUInt32.vb │ │ │ │ └── Decimal.ToUInt64.vb │ │ │ ├── System.Math │ │ │ │ ├── Decimal.Abs.vb │ │ │ │ ├── Decimal.Ceiling.vb │ │ │ │ ├── Decimal.Floor.vb │ │ │ │ ├── Decimal.Max.vb │ │ │ │ ├── Decimal.Min.vb │ │ │ │ ├── Decimal.Round.vb │ │ │ │ ├── Decimal.Sign.vb │ │ │ │ └── Decimal.Truncate.vb │ │ │ └── _CoreObject │ │ │ │ ├── Decimal.Between.vb │ │ │ │ ├── Decimal.In.vb │ │ │ │ ├── Decimal.InRange.vb │ │ │ │ └── Decimal.NotIn.vb │ │ ├── System.Delegate │ │ │ └── System.Delegate │ │ │ │ ├── Delegate.Combine.vb │ │ │ │ ├── Delegate.Remove.vb │ │ │ │ └── Delegate.RemoveAll.vb │ │ ├── System.Double │ │ │ ├── Double.ToMoney.vb │ │ │ ├── System.DateTime │ │ │ │ └── Double.FromOADate.vb │ │ │ ├── System.Double │ │ │ │ ├── Double.IsInfinity.vb │ │ │ │ ├── Double.IsNaN.vb │ │ │ │ ├── Double.IsNegativeInfinity.vb │ │ │ │ └── Double.IsPositiveInfinity.vb │ │ │ ├── System.Math │ │ │ │ ├── Double.Abs.vb │ │ │ │ ├── Double.Acos.vb │ │ │ │ ├── Double.Asin.vb │ │ │ │ ├── Double.Atan.vb │ │ │ │ ├── Double.Atan2.vb │ │ │ │ ├── Double.Ceiling.vb │ │ │ │ ├── Double.Cos.vb │ │ │ │ ├── Double.Cosh.vb │ │ │ │ ├── Double.Exp.vb │ │ │ │ ├── Double.Floor.vb │ │ │ │ ├── Double.IEEERemainder.vb │ │ │ │ ├── Double.Log.vb │ │ │ │ ├── Double.Log10.vb │ │ │ │ ├── Double.Max.vb │ │ │ │ ├── Double.Min.vb │ │ │ │ ├── Double.Pow.vb │ │ │ │ ├── Double.Round.vb │ │ │ │ ├── Double.Sign.vb │ │ │ │ ├── Double.Sin.vb │ │ │ │ ├── Double.Sinh.vb │ │ │ │ ├── Double.Sqrt.vb │ │ │ │ ├── Double.Tan.vb │ │ │ │ ├── Double.Tanh.vb │ │ │ │ └── Double.Truncate.vb │ │ │ ├── System.TimeSpan │ │ │ │ ├── Double.FromDays.vb │ │ │ │ ├── Double.FromHours.vb │ │ │ │ ├── Double.FromMilliseconds.vb │ │ │ │ ├── Double.FromMinutes.vb │ │ │ │ └── Double.FromSeconds.vb │ │ │ └── _CoreObject │ │ │ │ ├── Double.Between.vb │ │ │ │ ├── Double.In.vb │ │ │ │ ├── Double.InRange.vb │ │ │ │ └── Double.NotIn.vb │ │ ├── System.Enum │ │ │ ├── Enum.GetCustomAttributeDescription.vb │ │ │ ├── Enum.In.vb │ │ │ └── Enum.NotIn.vb │ │ ├── System.Environment │ │ │ └── SpecialFolder.GetFolderPath.vb │ │ ├── System.EventHandler │ │ │ └── EventHandler.RaiseEvent.vb │ │ ├── System.Guid │ │ │ ├── Guid.IsEmpty.vb │ │ │ ├── Guid.IsNotEmpty.vb │ │ │ └── _CoreObject │ │ │ │ ├── Guid.In.vb │ │ │ │ └── Guid.NotIn.vb │ │ ├── System.Int16 │ │ │ ├── GenericInt │ │ │ │ ├── Int16.Days.vb │ │ │ │ ├── Int16.FactorOf.vb │ │ │ │ ├── Int16.Hours.vb │ │ │ │ ├── Int16.IsEven.vb │ │ │ │ ├── Int16.IsMultipleOf.vb │ │ │ │ ├── Int16.IsOdd.vb │ │ │ │ ├── Int16.IsPrime.vb │ │ │ │ ├── Int16.Milliseconds.vb │ │ │ │ ├── Int16.Minutes.vb │ │ │ │ ├── Int16.Seconds.vb │ │ │ │ └── Int16.Weeks.vb │ │ │ ├── System.BitConverter │ │ │ │ └── Int16.GetBytes.vb │ │ │ ├── System.Math │ │ │ │ ├── Int16.Abs.vb │ │ │ │ ├── Int16.Max.vb │ │ │ │ ├── Int16.Min.vb │ │ │ │ └── Int16.Sign.vb │ │ │ ├── System.Net.IPAddress │ │ │ │ ├── Int16.HostToNetworkOrder.vb │ │ │ │ └── Int16.NetworkToHostOrder.vb │ │ │ └── _CoreObject │ │ │ │ ├── Int16.Between.vb │ │ │ │ ├── Int16.In.vb │ │ │ │ ├── Int16.InRange.vb │ │ │ │ └── Int16.NotIn.vb │ │ ├── System.Int32 │ │ │ ├── GenericInt │ │ │ │ ├── Int32.Days.vb │ │ │ │ ├── Int32.FactorOf.vb │ │ │ │ ├── Int32.Hours.vb │ │ │ │ ├── Int32.IsEven.vb │ │ │ │ ├── Int32.IsMultipleOf.vb │ │ │ │ ├── Int32.IsOdd.vb │ │ │ │ ├── Int32.IsPrime.vb │ │ │ │ ├── Int32.Milliseconds.vb │ │ │ │ ├── Int32.Minutes.vb │ │ │ │ ├── Int32.Seconds.vb │ │ │ │ └── Int32.Weeks.vb │ │ │ ├── System.BitConverter │ │ │ │ └── Int32.GetBytes.vb │ │ │ ├── System.Char │ │ │ │ └── Int32.ConvertFromUtf32.vb │ │ │ ├── System.DateTime │ │ │ │ ├── Int32.DaysInMonth.vb │ │ │ │ └── Int32.IsLeapYear.vb │ │ │ ├── System.Drawing.Color │ │ │ │ └── Int32.FromArgb.vb │ │ │ ├── System.Drawing.ColorTranslator │ │ │ │ ├── Int32.FromOle.vb │ │ │ │ └── Int32.FromWin32.vb │ │ │ ├── System.Math │ │ │ │ ├── Int32.Abs.vb │ │ │ │ ├── Int32.BigMul.vb │ │ │ │ ├── Int32.DivRem.vb │ │ │ │ ├── Int32.Max.vb │ │ │ │ ├── Int32.Min.vb │ │ │ │ └── Int32.Sign.vb │ │ │ ├── System.Net.IPAddress │ │ │ │ ├── Int32.HostToNetworkOrder.vb │ │ │ │ └── Int32.NetworkToHostOrder.vb │ │ │ └── _CoreObject │ │ │ │ ├── Int32.Between.vb │ │ │ │ ├── Int32.In.vb │ │ │ │ ├── Int32.InRange.vb │ │ │ │ └── Int32.NotIn.vb │ │ ├── System.Int64 │ │ │ ├── GenericInt │ │ │ │ ├── Int64.Days.vb │ │ │ │ ├── Int64.FactorOf.vb │ │ │ │ ├── Int64.Hours.vb │ │ │ │ ├── Int64.IsEven.vb │ │ │ │ ├── Int64.IsMultipleOf.vb │ │ │ │ ├── Int64.IsOdd.vb │ │ │ │ ├── Int64.IsPrime.vb │ │ │ │ ├── Int64.Milliseconds.vb │ │ │ │ ├── Int64.Minutes.vb │ │ │ │ ├── Int64.Seconds.vb │ │ │ │ └── Int64.Weeks.vb │ │ │ ├── System.BitConverter │ │ │ │ ├── Int64.GetBytes.vb │ │ │ │ └── Int64.Int64BitsToDouble.vb │ │ │ ├── System.DateTime │ │ │ │ ├── Int64.FromBinary.vb │ │ │ │ ├── Int64.FromFileTime.vb │ │ │ │ └── Int64.FromFileTimeUtc.vb │ │ │ ├── System.Decimal │ │ │ │ └── Int64.FromOACurrency.vb │ │ │ ├── System.Math │ │ │ │ ├── Int64.Abs.vb │ │ │ │ ├── Int64.DivRem.vb │ │ │ │ ├── Int64.Max.vb │ │ │ │ ├── Int64.Min.vb │ │ │ │ └── Int64.Sign.vb │ │ │ ├── System.Net.IPAddress │ │ │ │ ├── Int64.HostToNetworkOrder.vb │ │ │ │ └── Int64.NetworkToHostOrder.vb │ │ │ ├── System.TimeSpan │ │ │ │ └── Int64.FromTicks.vb │ │ │ └── _CoreObject │ │ │ │ ├── Int64.Between.vb │ │ │ │ ├── Int64.In.vb │ │ │ │ ├── Int64.InRange.vb │ │ │ │ └── Int64.NotIn.vb │ │ ├── System.Object │ │ │ ├── Casting │ │ │ │ ├── Object.As.vb │ │ │ │ ├── Object.AsOrDefault.vb │ │ │ │ └── Object.IsAssignableFrom.vb │ │ │ ├── Chaining │ │ │ │ └── Object.Chain.vb │ │ │ ├── Cloning │ │ │ │ ├── Object.DeepClone.vb │ │ │ │ └── Object.ShallowCopy.vb │ │ │ ├── Convert │ │ │ │ ├── IsValidValueType │ │ │ │ │ ├── Object.IsValidBoolean.vb │ │ │ │ │ ├── Object.IsValidByte.vb │ │ │ │ │ ├── Object.IsValidChar.vb │ │ │ │ │ ├── Object.IsValidDateTime.vb │ │ │ │ │ ├── Object.IsValidDateTimeOffSet.vb │ │ │ │ │ ├── Object.IsValidDecimal.vb │ │ │ │ │ ├── Object.IsValidDouble.vb │ │ │ │ │ ├── Object.IsValidFloat.vb │ │ │ │ │ ├── Object.IsValidGuid.vb │ │ │ │ │ ├── Object.IsValidInt16.vb │ │ │ │ │ ├── Object.IsValidInt32.vb │ │ │ │ │ ├── Object.IsValidInt64.vb │ │ │ │ │ ├── Object.IsValidLong.vb │ │ │ │ │ ├── Object.IsValidSByte.vb │ │ │ │ │ ├── Object.IsValidShort.vb │ │ │ │ │ ├── Object.IsValidSingle.vb │ │ │ │ │ ├── Object.IsValidString.vb │ │ │ │ │ ├── Object.IsValidUInt16.vb │ │ │ │ │ ├── Object.IsValidUInt32.vb │ │ │ │ │ ├── Object.IsValidUInt64.vb │ │ │ │ │ ├── Object.IsValidULong.vb │ │ │ │ │ └── Object.IsValidUShort.vb │ │ │ │ ├── Object.ChangeType.vb │ │ │ │ ├── Object.GetTypeCode.vb │ │ │ │ ├── Object.To.vb │ │ │ │ ├── Object.ToOrDefault.vb │ │ │ │ └── ToValueType │ │ │ │ │ ├── Object.ToBoolean.vb │ │ │ │ │ ├── Object.ToBooleanOrDefault.vb │ │ │ │ │ ├── Object.ToByte.vb │ │ │ │ │ ├── Object.ToByteOrDefault.vb │ │ │ │ │ ├── Object.ToChar.vb │ │ │ │ │ ├── Object.ToCharOrDefault.vb │ │ │ │ │ ├── Object.ToDateTime.vb │ │ │ │ │ ├── Object.ToDateTimeOffSet.vb │ │ │ │ │ ├── Object.ToDateTimeOffSetOrDefault.vb │ │ │ │ │ ├── Object.ToDateTimeOrDefault.vb │ │ │ │ │ ├── Object.ToDecimal.vb │ │ │ │ │ ├── Object.ToDecimalOrDefault.vb │ │ │ │ │ ├── Object.ToDouble.vb │ │ │ │ │ ├── Object.ToDoubleOrDefault.vb │ │ │ │ │ ├── Object.ToFloat.vb │ │ │ │ │ ├── Object.ToFloatOrDefault.vb │ │ │ │ │ ├── Object.ToGuid.vb │ │ │ │ │ ├── Object.ToGuidOrDefault.vb │ │ │ │ │ ├── Object.ToInt16.vb │ │ │ │ │ ├── Object.ToInt16OrDefault.vb │ │ │ │ │ ├── Object.ToInt32.vb │ │ │ │ │ ├── Object.ToInt32OrDefault.vb │ │ │ │ │ ├── Object.ToInt64.vb │ │ │ │ │ ├── Object.ToInt64OrDefault.vb │ │ │ │ │ ├── Object.ToLong.vb │ │ │ │ │ ├── Object.ToLongOrDefault.vb │ │ │ │ │ ├── Object.ToNullableBoolean.vb │ │ │ │ │ ├── Object.ToNullableBooleanOrDefault.vb │ │ │ │ │ ├── Object.ToNullableByte.vb │ │ │ │ │ ├── Object.ToNullableByteOrDefault.vb │ │ │ │ │ ├── Object.ToNullableChar.vb │ │ │ │ │ ├── Object.ToNullableCharOrDefault.vb │ │ │ │ │ ├── Object.ToNullableDateTime.vb │ │ │ │ │ ├── Object.ToNullableDateTimeOffSet.vb │ │ │ │ │ ├── Object.ToNullableDateTimeOffSetOrDefault.vb │ │ │ │ │ ├── Object.ToNullableDateTimeOrDefault.vb │ │ │ │ │ ├── Object.ToNullableDecimal.vb │ │ │ │ │ ├── Object.ToNullableDecimalOrDefault.vb │ │ │ │ │ ├── Object.ToNullableDouble.vb │ │ │ │ │ ├── Object.ToNullableDoubleOrDefault.vb │ │ │ │ │ ├── Object.ToNullableFloat.vb │ │ │ │ │ ├── Object.ToNullableFloatOrDefault.vb │ │ │ │ │ ├── Object.ToNullableGuid.vb │ │ │ │ │ ├── Object.ToNullableGuidOrDefault.vb │ │ │ │ │ ├── Object.ToNullableInt16.vb │ │ │ │ │ ├── Object.ToNullableInt16OrDefault.vb │ │ │ │ │ ├── Object.ToNullableInt32.vb │ │ │ │ │ ├── Object.ToNullableInt32OrDefault.vb │ │ │ │ │ ├── Object.ToNullableInt64.vb │ │ │ │ │ ├── Object.ToNullableInt64OrDefault.vb │ │ │ │ │ ├── Object.ToNullableLong.vb │ │ │ │ │ ├── Object.ToNullableLongOrDefault.vb │ │ │ │ │ ├── Object.ToNullableSByte.vb │ │ │ │ │ ├── Object.ToNullableSByteOrDefault.vb │ │ │ │ │ ├── Object.ToNullableShort.vb │ │ │ │ │ ├── Object.ToNullableShortOrDefault.vb │ │ │ │ │ ├── Object.ToNullableSingle.vb │ │ │ │ │ ├── Object.ToNullableSingleOrDefault.vb │ │ │ │ │ ├── Object.ToNullableUInt16.vb │ │ │ │ │ ├── Object.ToNullableUInt16OrDefault.vb │ │ │ │ │ ├── Object.ToNullableUInt32.vb │ │ │ │ │ ├── Object.ToNullableUInt32OrDefault.vb │ │ │ │ │ ├── Object.ToNullableUInt64.vb │ │ │ │ │ ├── Object.ToNullableUInt64OrDefault.vb │ │ │ │ │ ├── Object.ToNullableULong.vb │ │ │ │ │ ├── Object.ToNullableULongOrDefault.vb │ │ │ │ │ ├── Object.ToNullableUShort.vb │ │ │ │ │ ├── Object.ToNullableUShortOrDefault.vb │ │ │ │ │ ├── Object.ToSByte.vb │ │ │ │ │ ├── Object.ToSByteOrDefault.vb │ │ │ │ │ ├── Object.ToShort.vb │ │ │ │ │ ├── Object.ToShortOrDefault.vb │ │ │ │ │ ├── Object.ToSingle.vb │ │ │ │ │ ├── Object.ToSingleOrDefault.vb │ │ │ │ │ ├── Object.ToString.vb │ │ │ │ │ ├── Object.ToStringOrDefault.vb │ │ │ │ │ ├── Object.ToUInt16.vb │ │ │ │ │ ├── Object.ToUInt16OrDefault.vb │ │ │ │ │ ├── Object.ToUInt32.vb │ │ │ │ │ ├── Object.ToUInt32OrDefault.vb │ │ │ │ │ ├── Object.ToUInt64.vb │ │ │ │ │ ├── Object.ToUInt64OrDefault.vb │ │ │ │ │ ├── Object.ToULong.vb │ │ │ │ │ ├── Object.ToULongOrDefault.vb │ │ │ │ │ ├── Object.ToUShort.vb │ │ │ │ │ └── Object.ToUShortOrDefault.vb │ │ │ ├── Utility │ │ │ │ ├── Object.Coalesce.vb │ │ │ │ ├── Object.CoalesceOrDefault.vb │ │ │ │ ├── Object.GetValueOrDefault.vb │ │ │ │ ├── Object.IfNotNull.vb │ │ │ │ ├── Object.NullIf.vb │ │ │ │ ├── Object.NullIfEquals.vb │ │ │ │ ├── Object.NullIfEqualsAny.vb │ │ │ │ └── Object.ToStringSafe.vb │ │ │ └── ValueComparison │ │ │ │ ├── Object.Between.vb │ │ │ │ ├── Object.In.vb │ │ │ │ ├── Object.InRange.vb │ │ │ │ ├── Object.IsDBNull.vb │ │ │ │ ├── Object.IsDefault.vb │ │ │ │ ├── Object.IsNotNull.vb │ │ │ │ ├── Object.IsNull.vb │ │ │ │ ├── Object.NotIn.vb │ │ │ │ └── Object.ReferenceEquals.vb │ │ ├── System.Object[] │ │ │ └── System.Type │ │ │ │ └── Object[].GetTypeArray.vb │ │ ├── System.Random │ │ │ ├── Random.CoinToss.vb │ │ │ └── Random.OneOf.vb │ │ ├── System.SByte │ │ │ ├── System.Math │ │ │ │ ├── SByte.Abs.vb │ │ │ │ ├── SByte.Max.vb │ │ │ │ ├── SByte.Min.vb │ │ │ │ └── SByte.Sign.vb │ │ │ └── _CoreObject │ │ │ │ ├── SByte.In.vb │ │ │ │ └── SByte.NotIn.vb │ │ ├── System.Single │ │ │ ├── System.Math │ │ │ │ ├── Single.Abs.vb │ │ │ │ ├── Single.Max.vb │ │ │ │ ├── Single.Min.vb │ │ │ │ └── Single.Sign.vb │ │ │ ├── System.Single │ │ │ │ ├── Single.IsInfinity.vb │ │ │ │ ├── Single.IsNaN.vb │ │ │ │ ├── Single.IsNegativeInfinity.vb │ │ │ │ └── Single.IsPositiveInfinity.vb │ │ │ └── _CoreObject │ │ │ │ ├── Single.Between.vb │ │ │ │ ├── Single.In.vb │ │ │ │ ├── Single.InRange.vb │ │ │ │ └── Single.NotIn.vb │ │ ├── System.String │ │ │ ├── String.Br2Nl.vb │ │ │ ├── String.ConcatWith.vb │ │ │ ├── String.Contains.vb │ │ │ ├── String.ContainsAll.vb │ │ │ ├── String.ContainsAny.vb │ │ │ ├── String.DecodeBase64.vb │ │ │ ├── String.DecryptRSA.vb │ │ │ ├── String.EncodeBase64.vb │ │ │ ├── String.EncryptRSA.vb │ │ │ ├── String.EscapeXml.vb │ │ │ ├── String.Extract.vb │ │ │ ├── String.ExtractLetter.vb │ │ │ ├── String.ExtractNumber.vb │ │ │ ├── String.FormatWith.vb │ │ │ ├── String.GetAfter.vb │ │ │ ├── String.GetBefore.vb │ │ │ ├── String.GetBetween.vb │ │ │ ├── String.IfEmpty.vb │ │ │ ├── String.IsAlpha.vb │ │ │ ├── String.IsAlphaNumeric.vb │ │ │ ├── String.IsEmpty.vb │ │ │ ├── String.IsLike.vb │ │ │ ├── String.IsNotEmpty.vb │ │ │ ├── String.IsNotNullOrEmpty.vb │ │ │ ├── String.IsNotNullOrWhiteSpace.vb │ │ │ ├── String.IsNullOrEmpty.vb │ │ │ ├── String.IsNumeric.vb │ │ │ ├── String.Left.vb │ │ │ ├── String.LeftSafe.vb │ │ │ ├── String.Nl2Br.vb │ │ │ ├── String.NullIfEmpty.vb │ │ │ ├── String.PathCombine.vb │ │ │ ├── String.RemoveDiacritics.vb │ │ │ ├── String.RemoveLetter.vb │ │ │ ├── String.RemoveNumber.vb │ │ │ ├── String.RemoveWhere.vb │ │ │ ├── String.Repeat.vb │ │ │ ├── String.Replace.vb │ │ │ ├── String.ReplaceByEmpty.vb │ │ │ ├── String.ReplaceFirst.vb │ │ │ ├── String.ReplaceLast.vb │ │ │ ├── String.ReplaceWhenEquals.vb │ │ │ ├── String.Reverse.vb │ │ │ ├── String.Right.vb │ │ │ ├── String.RightSafe.vb │ │ │ ├── String.SaveAs.vb │ │ │ ├── String.Split.vb │ │ │ ├── String.ToByteArray.vb │ │ │ ├── String.ToDirectoryInfo.vb │ │ │ ├── String.ToEnum.vb │ │ │ ├── String.ToFileInfo.vb │ │ │ ├── String.ToMemoryStream.vb │ │ │ ├── String.ToPlural.vb │ │ │ ├── String.ToSecureString.vb │ │ │ ├── String.ToTitleCase.vb │ │ │ ├── String.ToXDocument.vb │ │ │ ├── String.ToXmlDocument.vb │ │ │ ├── String.Truncate.vb │ │ │ ├── System.Char │ │ │ │ ├── String.ConvertToUtf32.vb │ │ │ │ ├── String.GetNumericValue.vb │ │ │ │ ├── String.GetUnicodeCategory.vb │ │ │ │ ├── String.IsControl.vb │ │ │ │ ├── String.IsDigit.vb │ │ │ │ ├── String.IsHighSurrogate.vb │ │ │ │ ├── String.IsLetter.vb │ │ │ │ ├── String.IsLetterOrDigit.vb │ │ │ │ ├── String.IsLowSurrogate.vb │ │ │ │ ├── String.IsLower.vb │ │ │ │ ├── String.IsNumber.vb │ │ │ │ ├── String.IsPunctuation.vb │ │ │ │ ├── String.IsSeparator.vb │ │ │ │ ├── String.IsSurrogate.vb │ │ │ │ ├── String.IsSurrogatePair.vb │ │ │ │ ├── String.IsSymbol.vb │ │ │ │ ├── String.IsUpper.vb │ │ │ │ └── String.IsWhiteSpace.vb │ │ │ ├── System.String │ │ │ │ ├── String.CompareOrdinal.vb │ │ │ │ ├── String.Concat.vb │ │ │ │ ├── String.Copy.vb │ │ │ │ ├── String.Format.vb │ │ │ │ ├── String.Intern.vb │ │ │ │ ├── String.IsInterned.vb │ │ │ │ ├── String.IsNullOrWhiteSpace.vb │ │ │ │ └── String.Join.vb │ │ │ ├── System.Text.RegularExpressions.Regex │ │ │ │ ├── String.IsMatch.vb │ │ │ │ ├── String.Match.vb │ │ │ │ └── String.Matches.vb │ │ │ ├── System.Web.HttpUtility │ │ │ │ ├── String.HtmlAttributeEncode.vb │ │ │ │ ├── String.HtmlDecode.vb │ │ │ │ ├── String.HtmlEncode.vb │ │ │ │ ├── String.JavaScriptStringEncode.vb │ │ │ │ ├── String.ParseQueryString.vb │ │ │ │ ├── String.UrlDecode.vb │ │ │ │ ├── String.UrlDecodeToBytes.vb │ │ │ │ ├── String.UrlEncode.vb │ │ │ │ ├── String.UrlEncodeToBytes.vb │ │ │ │ └── String.UrlPathEncode.vb │ │ │ ├── _CoreObject │ │ │ │ ├── String.In.vb │ │ │ │ ├── String.IsNotNull.vb │ │ │ │ ├── String.IsNull.vb │ │ │ │ └── String.NotIn.vb │ │ │ ├── _ExtractValueType │ │ │ │ ├── String.ExtractDecimal.vb │ │ │ │ ├── String.ExtractDouble.vb │ │ │ │ ├── String.ExtractInt16.vb │ │ │ │ ├── String.ExtractInt32.vb │ │ │ │ ├── String.ExtractInt64.vb │ │ │ │ ├── String.ExtractManyDecimal.vb │ │ │ │ ├── String.ExtractManyDouble.vb │ │ │ │ ├── String.ExtractManyInt16.vb │ │ │ │ ├── String.ExtractManyInt32.vb │ │ │ │ ├── String.ExtractManyInt64.vb │ │ │ │ ├── String.ExtractManyUInt16.vb │ │ │ │ ├── String.ExtractManyUInt32.vb │ │ │ │ ├── String.ExtractManyUInt64.vb │ │ │ │ ├── String.ExtractUInt16.vb │ │ │ │ ├── String.ExtractUInt32.vb │ │ │ │ └── String.ExtractUInt64.vb │ │ │ └── zzzRegexPattern │ │ │ │ ├── String.IsValidEmail.vb │ │ │ │ └── String.IsValidIP.vb │ │ ├── System.Text.StringBuilder │ │ │ ├── StringBuilder.AppendJoin.vb │ │ │ ├── StringBuilder.AppendLineFormat.vb │ │ │ └── StringBuilder.AppendLineJoin.vb │ │ ├── System.TimeSpan │ │ │ ├── TimeSpan.Ago.vb │ │ │ ├── TimeSpan.FromNow.vb │ │ │ ├── TimeSpan.UtcAgo.vb │ │ │ └── TimeSpan.UtcFromNow.vb │ │ ├── System.Type │ │ │ ├── System.Activator │ │ │ │ ├── Type.CreateInstance.vb │ │ │ │ └── Type.GetObject.vb │ │ │ └── Type.CreateInstance.vb │ │ ├── System.UInt16 │ │ │ ├── System.Math │ │ │ │ ├── UInt16.Max.vb │ │ │ │ └── UInt16.Min.vb │ │ │ └── _CoreObject │ │ │ │ ├── UInt16.Between.vb │ │ │ │ ├── UInt16.In.vb │ │ │ │ ├── UInt16.InRange.vb │ │ │ │ └── UInt16.NotIn.vb │ │ ├── System.UInt32 │ │ │ ├── System.Math │ │ │ │ ├── UInt32.Max.vb │ │ │ │ └── UInt32.Min.vb │ │ │ └── _CoreObject │ │ │ │ ├── UInt32.Between.vb │ │ │ │ ├── UInt32.In.vb │ │ │ │ ├── UInt32.InRange.vb │ │ │ │ └── UInt32.NotIn.vb │ │ ├── System.UInt64 │ │ │ ├── System.Math │ │ │ │ ├── UInt64.Max.vb │ │ │ │ └── UInt64.Min.vb │ │ │ └── _CoreObject │ │ │ │ ├── UInt64.Between.vb │ │ │ │ ├── UInt64.In.vb │ │ │ │ ├── UInt64.InRange.vb │ │ │ │ └── UInt64.NotIn.vb │ │ ├── System.UIntPtr │ │ │ └── System.UIntPtr │ │ │ │ ├── UIntPtr.Add.vb │ │ │ │ └── UIntPtr.Subtract.vb │ │ └── TArray │ │ │ ├── Array.ClearAll.vb │ │ │ ├── Array.ClearAt.vb │ │ │ ├── Array.ToDataTable.vb │ │ │ └── System.Array │ │ │ ├── TArray.AsReadOnly.vb │ │ │ ├── TArray.Exists.vb │ │ │ ├── TArray.Find.vb │ │ │ ├── TArray.FindAll.vb │ │ │ ├── TArray.FindIndex.vb │ │ │ ├── TArray.FindLast.vb │ │ │ ├── TArray.FindLastIndex.vb │ │ │ ├── TArray.ForEach.vb │ │ │ └── TArray.TrueForAll.vb │ ├── Z.Data │ │ ├── System.Collections.Generic.IDictionary[string, object] │ │ │ ├── IDictionary[string, object].ToDbParameters.vb │ │ │ └── IDictionary[string, object].ToSqlParameters.vb │ │ ├── System.Data.Common.DbCommand │ │ │ ├── DbCommand.ExecuteEntities.vb │ │ │ ├── DbCommand.ExecuteEntity.vb │ │ │ ├── DbCommand.ExecuteExpandoObject.vb │ │ │ ├── DbCommand.ExecuteExpandoObjects.vb │ │ │ ├── DbCommand.ExecuteScalarAs.vb │ │ │ ├── DbCommand.ExecuteScalarAsOrDefault.vb │ │ │ ├── DbCommand.ExecuteScalarTo.vb │ │ │ └── DbCommand.ExecuteScalarToOrDefault.vb │ │ ├── System.Data.Common.DbConnection │ │ │ ├── DbConnection.ExecuteEntities.vb │ │ │ ├── DbConnection.ExecuteEntity.vb │ │ │ ├── DbConnection.ExecuteExpandoObject.vb │ │ │ ├── DbConnection.ExecuteExpandoObjects.vb │ │ │ ├── DbConnection.ExecuteNonQuery.vb │ │ │ ├── DbConnection.ExecuteReader.vb │ │ │ └── DbConnection.ExecuteScalar.vb │ │ ├── System.Data.ConnectionState │ │ │ ├── ConnectionState.In.vb │ │ │ └── ConnectionState.NotIn.vb │ │ ├── System.Data.DataColumnCollection │ │ │ └── DataColumnCollection.AddRange.vb │ │ ├── System.Data.DataRow │ │ │ ├── DataRow.ToEntity.vb │ │ │ └── DataRow.ToExpandoObject.vb │ │ ├── System.Data.DataTable │ │ │ ├── DataTable.FirstRow.vb │ │ │ ├── DataTable.LastRow.vb │ │ │ ├── DataTable.ToEntities.vb │ │ │ └── DataTable.ToExpandoObjects.vb │ │ ├── System.Data.IDataReader │ │ │ ├── IDataReader.ContainsColumn.vb │ │ │ ├── IDataReader.ForEach.vb │ │ │ ├── IDataReader.GetColumnNames.vb │ │ │ ├── IDataReader.GetValueAs.vb │ │ │ ├── IDataReader.GetValueAsOrDefault.vb │ │ │ ├── IDataReader.GetValueTo.vb │ │ │ ├── IDataReader.GetValueToOrDefault.vb │ │ │ ├── IDataReader.IsDBNull.vb │ │ │ ├── IDataReader.ToDataTable.vb │ │ │ ├── IDataReader.ToEntities.vb │ │ │ ├── IDataReader.ToEntity.vb │ │ │ ├── IDataReader.ToExpandoObject.vb │ │ │ └── IDataReader.ToExpandoObjects.vb │ │ ├── System.Data.IDbConnection │ │ │ ├── IDbConnection.EnsureOpen.vb │ │ │ ├── IDbConnection.IsConnectionOpen.vb │ │ │ └── IDbConnection.IsNotConnectionOpen.vb │ │ ├── System.Data.SqlClient.SqlBulkCopy │ │ │ ├── SqlBulkCopy.GetConnection.vb │ │ │ └── SqlBulkCopy.GetTransaction.vb │ │ ├── System.Data.SqlClient.SqlCommand │ │ │ ├── SqlCommand.ExecuteDataSet.vb │ │ │ └── SqlCommand.ExecuteDataTable.vb │ │ ├── System.Data.SqlClient.SqlConnection │ │ │ ├── SqlConnection.ExecuteDataSet.vb │ │ │ ├── SqlConnection.ExecuteDataTable.vb │ │ │ ├── SqlConnection.ExecuteEntities.vb │ │ │ ├── SqlConnection.ExecuteEntity.vb │ │ │ ├── SqlConnection.ExecuteExpandoObject.vb │ │ │ ├── SqlConnection.ExecuteExpandoObjects.vb │ │ │ ├── SqlConnection.ExecuteNonQuery.vb │ │ │ ├── SqlConnection.ExecuteReader.vb │ │ │ ├── SqlConnection.ExecuteScalar.vb │ │ │ ├── SqlConnection.ExecuteScalarAs.vb │ │ │ ├── SqlConnection.ExecuteScalarTo.vb │ │ │ └── SqlConnection.ExecuteXmlReader.vb │ │ └── System.Data.SqlClient.SqlParameterCollection │ │ │ └── SqlParameterCollection.AddRangeWithValue.vb │ ├── Z.Drawing │ │ ├── System.Drawing.Color │ │ │ └── System.Drawing.ColorTranslator │ │ │ │ ├── Color.ToHtml.vb │ │ │ │ ├── Color.ToOle.vb │ │ │ │ └── Color.ToWin32.vb │ │ └── System.Drawing.Image │ │ │ ├── Image.Cut.vb │ │ │ └── Image.Scale.vb │ ├── Z.ExtensionMethods.VB.vbproj │ ├── Z.IO │ │ ├── System.Collections.Generic.IEnumerable[DirectoryInfo] │ │ │ ├── IEnumerable[DirectoryInfo].Delete.vb │ │ │ └── IEnumerable[DirectoryInfo].ForEach.vb │ │ ├── System.Collections.Generic.IEnumerable[FileInfo] │ │ │ ├── IEnumerable[FileInfo].Delete.vb │ │ │ └── IEnumerable[FileInfo].ForEach.vb │ │ ├── System.Collections.Generic.IEnumerable[string] │ │ │ └── IEnumerable[string].PathCombine.vb │ │ ├── System.IO.DirectoryInfo │ │ │ ├── DirectoryInfo.Clear.vb │ │ │ ├── DirectoryInfo.CreateAllDirectories.vb │ │ │ ├── DirectoryInfo.DeleteDirectoriesWhere.vb │ │ │ ├── DirectoryInfo.DeleteFilesWhere.vb │ │ │ ├── DirectoryInfo.DeleteOlderThan.vb │ │ │ ├── DirectoryInfo.EnsureDirectoryExists.vb │ │ │ ├── DirectoryInfo.EnumerateDirectories.vb │ │ │ ├── DirectoryInfo.EnumerateFileSystemEntries.vb │ │ │ ├── DirectoryInfo.EnumerateFiles.vb │ │ │ ├── DirectoryInfo.GetDirectories.vb │ │ │ ├── DirectoryInfo.GetDirectoriesWhere.vb │ │ │ ├── DirectoryInfo.GetFileSystemEntries.vb │ │ │ ├── DirectoryInfo.GetFileSystemEntriesWhere.vb │ │ │ ├── DirectoryInfo.GetFiles.vb │ │ │ ├── DirectoryInfo.GetFilesWhere.vb │ │ │ ├── DirectoryInfo.GetSize.vb │ │ │ ├── DirectoryInfo.PathCombine.vb │ │ │ ├── DirectoryInfo.PathCombineDirectory.vb │ │ │ └── DirectoryInfo.PathCombineFile.vb │ │ ├── System.IO.FileInfo │ │ │ ├── FileInfo.AppendAllLines.vb │ │ │ ├── FileInfo.AppendAllText.vb │ │ │ ├── FileInfo.ChangeExtension.vb │ │ │ ├── FileInfo.CreateDirectory.vb │ │ │ ├── FileInfo.EnsureDirectoryExists.vb │ │ │ ├── FileInfo.GetDirectoryFullName.vb │ │ │ ├── FileInfo.GetDirectoryName.vb │ │ │ ├── FileInfo.GetFileNameWithoutExtension.vb │ │ │ ├── FileInfo.GetPathRoot.vb │ │ │ ├── FileInfo.HasExtension.vb │ │ │ ├── FileInfo.IsPathRooted.vb │ │ │ ├── FileInfo.ReadAllBytes.vb │ │ │ ├── FileInfo.ReadAllLines.vb │ │ │ ├── FileInfo.ReadAllText.vb │ │ │ ├── FileInfo.ReadLines.vb │ │ │ ├── FileInfo.ReadToEnd.vb │ │ │ ├── FileInfo.Rename.vb │ │ │ ├── FileInfo.RenameExtension.vb │ │ │ ├── FileInfo.RenameFileWithoutExtension.vb │ │ │ ├── FileInfo.WriteAllBytes.vb │ │ │ ├── FileInfo.WriteAllLines.vb │ │ │ └── FileInfo.WriteAllText.vb │ │ └── System.IO.Stream │ │ │ ├── Stream.ReadToEnd.vb │ │ │ ├── Stream.ToByteArray.vb │ │ │ └── Stream.ToMD5Hash.vb │ ├── Z.Net │ │ ├── System.Net.Mail.MailMessage │ │ │ ├── MailMessage.Send.vb │ │ │ └── MailMessage.SendAsync.vb │ │ ├── System.Net.WebRequest │ │ │ └── WebRequest.GetResponseSafe.vb │ │ └── System.Net.WebResponse │ │ │ ├── WebResponse.ReadToEnd.vb │ │ │ └── WebResponse.ReadToEndAndDispose.vb │ ├── Z.Reflection │ │ ├── GetDeclaration │ │ │ ├── ConstructorInfo.GetDeclaration.vb │ │ │ ├── EvenInfo.GetDeclaration.vb │ │ │ ├── FieldInfo.GetDeclaration.vb │ │ │ ├── MemberInfo.GetDeclaration.vb │ │ │ ├── MethodInfo.GetDeclaration.vb │ │ │ ├── ParameterInfo.GetDeclaration.vb │ │ │ ├── PropertyInfo.GetDeclaration.vb │ │ │ ├── TypeInfo.GetDeclaration.vb │ │ │ └── TypeInfo.GetShortDeclaraction.vb │ │ ├── System.Object │ │ │ ├── Object.GetCustomAttribute.vb │ │ │ ├── Object.GetCustomAttributeDescription.vb │ │ │ ├── Object.GetCustomAttributes.vb │ │ │ ├── Object.GetField.vb │ │ │ ├── Object.GetFieldValue.vb │ │ │ ├── Object.GetFields.vb │ │ │ ├── Object.GetMemberPaths.vb │ │ │ ├── Object.GetMethod.vb │ │ │ ├── Object.GetMethods.vb │ │ │ ├── Object.GetProperties.vb │ │ │ ├── Object.GetProperty.vb │ │ │ ├── Object.GetPropertyOrField.vb │ │ │ ├── Object.GetPropertyValue.vb │ │ │ ├── Object.InvokeMethod.vb │ │ │ ├── Object.IsAttributeDefined.vb │ │ │ ├── Object.SetFieldValue.vb │ │ │ ├── Object.SetPropertyValue.vb │ │ │ └── TypeComparison │ │ │ │ ├── Object.IsArray.vb │ │ │ │ ├── Object.IsClass.vb │ │ │ │ ├── Object.IsEnum.vb │ │ │ │ ├── Object.IsSubclassOf.vb │ │ │ │ ├── Object.IsTypeOf.vb │ │ │ │ └── Object.IsTypeOrInheritsOf.vb │ │ ├── System.Reflection.Assembly │ │ │ ├── Assembly.GetAttribute.vb │ │ │ └── System.Attribute │ │ │ │ ├── Assembly.GetCustomAttribute.vb │ │ │ │ ├── Assembly.GetCustomAttributes.vb │ │ │ │ └── Assembly.IsDefined.vb │ │ ├── System.Reflection.MemberInfo │ │ │ └── System.Attribute │ │ │ │ ├── MemberInfo.GetCustomAttribute.vb │ │ │ │ ├── MemberInfo.GetCustomAttributes.vb │ │ │ │ └── MemberInfo.IsDefined.vb │ │ ├── System.Reflection.Module │ │ │ └── System.Attribute │ │ │ │ ├── Module.GetCustomAttribute.vb │ │ │ │ ├── Module.GetCustomAttributes.vb │ │ │ │ └── Module.IsDefined.vb │ │ └── System.Reflection.ParameterInfo │ │ │ └── System.Attribute │ │ │ ├── ParameterInfo.GetCustomAttribute.vb │ │ │ ├── ParameterInfo.GetCustomAttributes.vb │ │ │ └── ParameterInfo.IsDefined.vb │ ├── Z.Serialization │ │ ├── System.Object │ │ │ ├── Object.SerializeBinary.vb │ │ │ ├── Object.SerializeJavaScript.vb │ │ │ ├── Object.SerializeJson.vb │ │ │ └── Object.SerializeXml.vb │ │ └── System.String │ │ │ ├── String.DeserializeBinary.vb │ │ │ ├── String.DeserializeJavaScript.vb │ │ │ ├── String.DeserializeJson.vb │ │ │ └── String.DeserializeXml.vb │ ├── Z.Web │ │ ├── System.Web.HttpResponse │ │ │ ├── HttpResponse.Redirect.vb │ │ │ ├── HttpResponse.Reload.vb │ │ │ ├── HttpResponse.SendAttachment.vb │ │ │ ├── HttpResponse.SetStatus.vb │ │ │ └── _generated │ │ │ │ ├── HttpResponse.SetStatusAccepted.vb │ │ │ │ ├── HttpResponse.SetStatusClientBrowserDoesNotAcceptMimeType.vb │ │ │ │ ├── HttpResponse.SetStatusContinue.vb │ │ │ │ ├── HttpResponse.SetStatusCreated.vb │ │ │ │ ├── HttpResponse.SetStatusInternalServerError.vb │ │ │ │ ├── HttpResponse.SetStatusInvalidHeaderValueConfiguration.vb │ │ │ │ ├── HttpResponse.SetStatusInvalidResponseWhileGatewayOrProxy.vb │ │ │ │ ├── HttpResponse.SetStatusMethodNotAllowed.vb │ │ │ │ ├── HttpResponse.SetStatusMovedPermanently.vb │ │ │ │ ├── HttpResponse.SetStatusNoContent.vb │ │ │ │ ├── HttpResponse.SetStatusNonauthoritativeInformation.vb │ │ │ │ ├── HttpResponse.SetStatusNotFound.vb │ │ │ │ ├── HttpResponse.SetStatusNotModified.vb │ │ │ │ ├── HttpResponse.SetStatusObjectMoved.vb │ │ │ │ ├── HttpResponse.SetStatusPartialContent.vb │ │ │ │ ├── HttpResponse.SetStatusPreconditionFailed.vb │ │ │ │ ├── HttpResponse.SetStatusRequestTimedOut.vb │ │ │ │ ├── HttpResponse.SetStatusResetContent.vb │ │ │ │ ├── HttpResponse.SetStatusServiceUnavailable.vb │ │ │ │ ├── HttpResponse.SetStatusSwitchingProtocols.vb │ │ │ │ └── HttpResponse.SetStatusTemporaryRedirect.vb │ │ └── System.Web.UI.Control │ │ │ ├── Control.FindControl.vb │ │ │ └── Control.FindControlRecursive.vb │ ├── Z.Window.Forms │ │ ├── Extensions.vb │ │ └── System.Windows.Forms.Form │ │ │ └── Form.ToFullScreen.vb │ └── Z.Xml.Linq │ │ ├── Extensions.vb │ │ └── System.Xml.Linq.XElement │ │ └── XElement.RemoveAllNamespaces.vb └── empty.txt ├── src ├── Z.Caching │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── System.Object │ │ └── Object.FromCache.cs │ ├── System.Runtime.Caching.MemoryCache │ │ └── MemoryCache.AddOrGetExisting.cs │ └── Z.Caching.csproj ├── Z.Collections │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── System.Collections.Generic.ICollection[T] │ │ ├── ICollection[T].AddIf.cs │ │ ├── ICollection[T].AddIfNotContains.cs │ │ ├── ICollection[T].AddRange.cs │ │ ├── ICollection[T].AddRangeIf.cs │ │ ├── ICollection[T].AddRangeIfNotContains.cs │ │ ├── ICollection[T].ContainsAll.cs │ │ ├── ICollection[T].ContainsAny.cs │ │ ├── ICollection[T].IsEmpty.cs │ │ ├── ICollection[T].IsNotEmpty.cs │ │ ├── ICollection[T].IsNotNullOrEmpty.cs │ │ ├── ICollection[T].IsNullOrEmpty.cs │ │ ├── ICollection[T].RemoveIf.cs │ │ ├── ICollection[T].RemoveIfContains.cs │ │ ├── ICollection[T].RemoveRange.cs │ │ ├── ICollection[T].RemoveRangeIf.cs │ │ ├── ICollection[T].RemoveRangeIfContains.cs │ │ └── ICollection[T].RemoveWhere.cs │ ├── System.Collections.Generic.IDictionary[TKey, TValue] │ │ ├── IDictionary[Tkey, TValue].AddIfNotContainsKey.cs │ │ ├── IDictionary[Tkey, TValue].AddOrUpdate.cs │ │ ├── IDictionary[Tkey, TValue].ContainsAllKey.cs │ │ ├── IDictionary[Tkey, TValue].ContainsAnyKey.cs │ │ ├── IDictionary[Tkey, TValue].GetOrAdd.cs │ │ ├── IDictionary[Tkey, TValue].RemoveIfContainsKey.cs │ │ └── IDictionary[Tkey, TValue].ToSortedDictionary.cs │ ├── System.Collections.Generic.IDictionary[string, object] │ │ └── IDictionary[string, object].ToExpando.cs │ ├── System.Collections.Generic.IDictionary[string, string] │ │ └── IDictionary[string, string].ToNameValueCollection.cs │ ├── System.Collections.Generic.IEnumerable[IEnumerable[T]] │ │ ├── IEnumerable[IEnumerable[T]].MergeDistinctInnerEnumerable.cs │ │ └── IEnumerable[IEnumerable[T]].MergeInnerEnumerable.cs │ ├── System.Collections.Generic.IEnumerable[T] │ │ ├── IEnumerable[T].ContainsAll.cs │ │ ├── IEnumerable[T].ContainsAny.cs │ │ ├── IEnumerable[T].ForEach.cs │ │ ├── IEnumerable[T].IsEmpty.cs │ │ ├── IEnumerable[T].IsNotEmpty.cs │ │ ├── IEnumerable[T].IsNotNullOrEmpty.cs │ │ ├── IEnumerable[T].IsNullOrEmpty.cs │ │ └── IEnumerable[T].StringJoin.cs │ ├── System.Collections.Generic.IList[T] │ │ └── IList[T].Swap.cs │ ├── System.Collections.IDictionary │ │ └── IDictionary.ToHashtable.cs │ ├── System.Collections.Specialized.NameValueCollection │ │ └── NameValueCollection.ToDictionary.cs │ └── Z.Collections.csproj ├── Z.Compression │ ├── GZip │ │ ├── System.ByteArray │ │ │ └── ByteArray.DecompressGZip.cs │ │ ├── System.IO.FileInfo │ │ │ ├── FileInfo.CreateGZip.cs │ │ │ └── FileInfo.ExtractGZipToDirectory.cs │ │ └── System.String │ │ │ └── String.CompressGZip.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Z.Compression.csproj │ └── ZipFile │ │ ├── System.IO.DirectoryInfo │ │ └── DirectoryInfo.CreateZipFile.cs │ │ └── System.IO.FileInfo │ │ ├── FileInfo.ExtractZipFileToDirectory.cs │ │ ├── FileInfo.OpenReadZipFile.cs │ │ └── FileInfo.OpenZipFile.cs ├── Z.Core │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── System.Array │ │ ├── Array.ClearAll.cs │ │ ├── Array.WithinIndex.cs │ │ ├── System.Array │ │ │ ├── Array.BinarySearch.cs │ │ │ ├── Array.Clear.cs │ │ │ ├── Array.ConstrainedCopy.cs │ │ │ ├── Array.Copy.cs │ │ │ ├── Array.IndexOf.cs │ │ │ ├── Array.LastIndexOf.cs │ │ │ ├── Array.Reverse.cs │ │ │ └── Array.Sort.cs │ │ └── System.Buffer │ │ │ ├── Array.BlockCopy.cs │ │ │ ├── Array.ByteLength.cs │ │ │ ├── Array.GetByte.cs │ │ │ └── Array.SetByte.cs │ ├── System.Boolean │ │ ├── Boolean.IfFalse.cs │ │ ├── Boolean.IfTrue.cs │ │ ├── Boolean.ToBinary.cs │ │ └── Boolean.ToString.cs │ ├── System.Byte │ │ ├── Byte.SqlSystemTypeToSqlDbType.cs │ │ └── System.Math │ │ │ ├── Byte.Max.cs │ │ │ └── Byte.Min.cs │ ├── System.ByteArray │ │ ├── ByteArray.Resize.cs │ │ ├── ByteArray.ToImage.cs │ │ ├── ByteArray.ToMemoryStream.cs │ │ ├── System.Convert │ │ │ ├── ByteArray.ToBase64CharArray.cs │ │ │ └── ByteArray.ToBase64String.cs │ │ ├── System.Web.HttpServerUtility │ │ │ └── ByteArray.UrlTokenEncode.cs │ │ └── System.Web.HttpUtility │ │ │ ├── ByteArray.UrlDecode.cs │ │ │ ├── ByteArray.UrlDecodeToBytes.cs │ │ │ ├── ByteArray.UrlEncode.cs │ │ │ └── ByteArray.UrlEncodeToBytes.cs │ ├── System.Char │ │ ├── Char.Repeat.cs │ │ ├── Char.To.cs │ │ ├── System.Char │ │ │ ├── Char.ConvertToUtf32.cs │ │ │ ├── Char.GetNumericValue.cs │ │ │ ├── Char.GetUnicodeCategory.cs │ │ │ ├── Char.IsControl.cs │ │ │ ├── Char.IsDigit.cs │ │ │ ├── Char.IsHighSurrogate.cs │ │ │ ├── Char.IsLetter.cs │ │ │ ├── Char.IsLetterOrDigit.cs │ │ │ ├── Char.IsLowSurrogate.cs │ │ │ ├── Char.IsLower.cs │ │ │ ├── Char.IsNumber.cs │ │ │ ├── Char.IsPunctuation.cs │ │ │ ├── Char.IsSeparator.cs │ │ │ ├── Char.IsSurrogate.cs │ │ │ ├── Char.IsSurrogatePair.cs │ │ │ ├── Char.IsSymbol.cs │ │ │ ├── Char.IsUpper.cs │ │ │ ├── Char.IsWhiteSpace.cs │ │ │ ├── Char.ToLower.cs │ │ │ ├── Char.ToLowerInvariant.cs │ │ │ ├── Char.ToString.cs │ │ │ ├── Char.ToUpper.cs │ │ │ └── Char.ToUpperInvariant.cs │ │ └── _CoreObject │ │ │ ├── Char.In.cs │ │ │ └── Char.NotIn.cs │ ├── System.DateTime │ │ ├── DateTime.Age.cs │ │ ├── DateTime.Elapsed.cs │ │ ├── DateTime.EndOfDay.cs │ │ ├── DateTime.EndOfMonth.cs │ │ ├── DateTime.EndOfWeek.cs │ │ ├── DateTime.EndOfYear.cs │ │ ├── DateTime.FirstDayOfWeek.cs │ │ ├── DateTime.IsAfternoon.cs │ │ ├── DateTime.IsDateEqual.cs │ │ ├── DateTime.IsFuture.cs │ │ ├── DateTime.IsMorning.cs │ │ ├── DateTime.IsNow.cs │ │ ├── DateTime.IsPast.cs │ │ ├── DateTime.IsTimeEqual.cs │ │ ├── DateTime.IsToday.cs │ │ ├── DateTime.IsWeekDay.cs │ │ ├── DateTime.IsWeekendDay.cs │ │ ├── DateTime.LastDayOfWeek.cs │ │ ├── DateTime.SetTime.cs │ │ ├── DateTime.StartOfDay.cs │ │ ├── DateTime.StartOfMonth.cs │ │ ├── DateTime.StartOfWeek.cs │ │ ├── DateTime.StartOfYear.cs │ │ ├── DateTime.ToEpochTimeSpan.cs │ │ ├── DateTime.Tomorrow.cs │ │ ├── DateTime.Yesterday.cs │ │ ├── System.TimeZone │ │ │ └── DateTime.IsDaylightSavingTime.cs │ │ ├── System.TimeZoneInfo │ │ │ ├── DateTime.ConvertTime.cs │ │ │ ├── DateTime.ConvertTimeBySystemTimeZoneId.cs │ │ │ ├── DateTime.ConvertTimeFromUtc.cs │ │ │ └── DateTime.ConvertTimeToUtc.cs │ │ ├── ToDateTimeFormat │ │ │ ├── DateTime.ToFullDateTimeString.cs │ │ │ ├── DateTime.ToLongDateShortTimeString.cs │ │ │ ├── DateTime.ToLongDateString.cs │ │ │ ├── DateTime.ToLongDateTimeString.cs │ │ │ ├── DateTime.ToLongTimeString.cs │ │ │ ├── DateTime.ToMonthDayString.cs │ │ │ ├── DateTime.ToRFC1123String.cs │ │ │ ├── DateTime.ToShortDateLongTimeString.cs │ │ │ ├── DateTime.ToShortDateString.cs │ │ │ ├── DateTime.ToShortDateTimeString.cs │ │ │ ├── DateTime.ToShortTimeString.cs │ │ │ ├── DateTime.ToSortableDateTimeString.cs │ │ │ ├── DateTime.ToUniversalSortableDateTimeString.cs │ │ │ ├── DateTime.ToUniversalSortableLongDateTimeString.cs │ │ │ └── DateTime.ToYearMonthString.cs │ │ └── _CoreObject │ │ │ ├── DateTime.Between.cs │ │ │ ├── DateTime.In.cs │ │ │ ├── DateTime.InRange.cs │ │ │ └── DateTime.NotIn.cs │ ├── System.DateTimeOffset │ │ ├── DateTimeOffset.SetTime.cs │ │ ├── System.TimeZoneInfo │ │ │ ├── DateTimeOffset.ConvertTime.cs │ │ │ └── DateTimeOffset.ConvertTimeBySystemTimeZoneId.cs │ │ └── _CoreObject │ │ │ ├── DateTimeOffset.Between.cs │ │ │ ├── DateTimeOffset.In.cs │ │ │ ├── DateTimeOffset.InRange.cs │ │ │ └── DateTimeOffset.NotIn.cs │ ├── System.Decimal │ │ ├── Decimal.ToMoney.cs │ │ ├── System.Decimal │ │ │ ├── Decimal.Divide.cs │ │ │ ├── Decimal.GetBits.cs │ │ │ ├── Decimal.Multiply.cs │ │ │ ├── Decimal.Negate.cs │ │ │ ├── Decimal.Remainder.cs │ │ │ ├── Decimal.Subtract.cs │ │ │ ├── Decimal.ToByte.cs │ │ │ ├── Decimal.ToDouble.cs │ │ │ ├── Decimal.ToInt16.cs │ │ │ ├── Decimal.ToInt32.cs │ │ │ ├── Decimal.ToInt64.cs │ │ │ ├── Decimal.ToOACurrency.cs │ │ │ ├── Decimal.ToSByte.cs │ │ │ ├── Decimal.ToSingle.cs │ │ │ ├── Decimal.ToUInt16.cs │ │ │ ├── Decimal.ToUInt32.cs │ │ │ └── Decimal.ToUInt64.cs │ │ ├── System.Math │ │ │ ├── Decimal.Abs.cs │ │ │ ├── Decimal.Ceiling.cs │ │ │ ├── Decimal.Floor.cs │ │ │ ├── Decimal.Max.cs │ │ │ ├── Decimal.Min.cs │ │ │ ├── Decimal.Round.cs │ │ │ ├── Decimal.Sign.cs │ │ │ └── Decimal.Truncate.cs │ │ └── _CoreObject │ │ │ ├── Decimal.Between.cs │ │ │ ├── Decimal.In.cs │ │ │ ├── Decimal.InRange.cs │ │ │ └── Decimal.NotIn.cs │ ├── System.Delegate │ │ └── System.Delegate │ │ │ ├── Delegate.Combine.cs │ │ │ ├── Delegate.Remove.cs │ │ │ └── Delegate.RemoveAll.cs │ ├── System.Double │ │ ├── Double.ToMoney.cs │ │ ├── System.DateTime │ │ │ └── Double.FromOADate.cs │ │ ├── System.Double │ │ │ ├── Double.IsInfinity.cs │ │ │ ├── Double.IsNaN.cs │ │ │ ├── Double.IsNegativeInfinity.cs │ │ │ └── Double.IsPositiveInfinity.cs │ │ ├── System.Math │ │ │ ├── Double.Abs.cs │ │ │ ├── Double.Acos.cs │ │ │ ├── Double.Asin.cs │ │ │ ├── Double.Atan.cs │ │ │ ├── Double.Atan2.cs │ │ │ ├── Double.Ceiling.cs │ │ │ ├── Double.Cos.cs │ │ │ ├── Double.Cosh.cs │ │ │ ├── Double.Exp.cs │ │ │ ├── Double.Floor.cs │ │ │ ├── Double.IEEERemainder.cs │ │ │ ├── Double.Log.cs │ │ │ ├── Double.Log10.cs │ │ │ ├── Double.Max.cs │ │ │ ├── Double.Min.cs │ │ │ ├── Double.Pow.cs │ │ │ ├── Double.Round.cs │ │ │ ├── Double.Sign.cs │ │ │ ├── Double.Sin.cs │ │ │ ├── Double.Sinh.cs │ │ │ ├── Double.Sqrt.cs │ │ │ ├── Double.Tan.cs │ │ │ ├── Double.Tanh.cs │ │ │ └── Double.Truncate.cs │ │ ├── System.TimeSpan │ │ │ ├── Double.FromDays.cs │ │ │ ├── Double.FromHours.cs │ │ │ ├── Double.FromMilliseconds.cs │ │ │ ├── Double.FromMinutes.cs │ │ │ └── Double.FromSeconds.cs │ │ └── _CoreObject │ │ │ ├── Double.Between.cs │ │ │ ├── Double.In.cs │ │ │ ├── Double.InRange.cs │ │ │ └── Double.NotIn.cs │ ├── System.Enum │ │ ├── Enum.GetCustomAttributeDescription.cs │ │ ├── Enum.In.cs │ │ └── Enum.NotIn.cs │ ├── System.Environment │ │ └── SpecialFolder.GetFolderPath.cs │ ├── System.EventHandler │ │ └── EventHandler.RaiseEvent.cs │ ├── System.Guid │ │ ├── Guid.IsEmpty.cs │ │ ├── Guid.IsNotEmpty.cs │ │ └── _CoreObject │ │ │ ├── Guid.In.cs │ │ │ └── Guid.NotIn.cs │ ├── System.Int16 │ │ ├── GenericInt │ │ │ ├── Int16.Days.cs │ │ │ ├── Int16.FactorOf.cs │ │ │ ├── Int16.Hours.cs │ │ │ ├── Int16.IsEven.cs │ │ │ ├── Int16.IsMultipleOf.cs │ │ │ ├── Int16.IsOdd.cs │ │ │ ├── Int16.IsPrime.cs │ │ │ ├── Int16.Milliseconds.cs │ │ │ ├── Int16.Minutes.cs │ │ │ ├── Int16.Seconds.cs │ │ │ └── Int16.Weeks.cs │ │ ├── Int16.SqlSystemTypeToSqlDbType.cs │ │ ├── System.BitConverter │ │ │ └── Int16.GetBytes.cs │ │ ├── System.Math │ │ │ ├── Int16.Abs.cs │ │ │ ├── Int16.Max.cs │ │ │ ├── Int16.Min.cs │ │ │ └── Int16.Sign.cs │ │ ├── System.Net.IPAddress │ │ │ ├── Int16.HostToNetworkOrder.cs │ │ │ └── Int16.NetworkToHostOrder.cs │ │ └── _CoreObject │ │ │ ├── Int16.Between.cs │ │ │ ├── Int16.In.cs │ │ │ ├── Int16.InRange.cs │ │ │ └── Int16.NotIn.cs │ ├── System.Int32 │ │ ├── GenericInt │ │ │ ├── Int32.Days.cs │ │ │ ├── Int32.FactorOf.cs │ │ │ ├── Int32.Hours.cs │ │ │ ├── Int32.IsEven.cs │ │ │ ├── Int32.IsMultipleOf.cs │ │ │ ├── Int32.IsOdd.cs │ │ │ ├── Int32.IsPrime.cs │ │ │ ├── Int32.Milliseconds.cs │ │ │ ├── Int32.Minutes.cs │ │ │ ├── Int32.Seconds.cs │ │ │ └── Int32.Weeks.cs │ │ ├── Int.SqlSystemTypeToSqlDbType.cs │ │ ├── System.BitConverter │ │ │ └── Int32.GetBytes.cs │ │ ├── System.Char │ │ │ └── Int32.ConvertFromUtf32.cs │ │ ├── System.DateTime │ │ │ ├── Int32.DaysInMonth.cs │ │ │ └── Int32.IsLeapYear.cs │ │ ├── System.Drawing.Color │ │ │ └── Int32.FromArgb.cs │ │ ├── System.Drawing.ColorTranslator │ │ │ ├── Int32.FromOle.cs │ │ │ └── Int32.FromWin32.cs │ │ ├── System.Math │ │ │ ├── Int32.Abs.cs │ │ │ ├── Int32.BigMul.cs │ │ │ ├── Int32.DivRem.cs │ │ │ ├── Int32.Max.cs │ │ │ ├── Int32.Min.cs │ │ │ └── Int32.Sign.cs │ │ ├── System.Net.IPAddress │ │ │ ├── Int32.HostToNetworkOrder.cs │ │ │ └── Int32.NetworkToHostOrder.cs │ │ └── _CoreObject │ │ │ ├── Int32.Between.cs │ │ │ ├── Int32.In.cs │ │ │ ├── Int32.InRange.cs │ │ │ └── Int32.NotIn.cs │ ├── System.Int64 │ │ ├── GenericInt │ │ │ ├── Int64.Days.cs │ │ │ ├── Int64.FactorOf.cs │ │ │ ├── Int64.Hours.cs │ │ │ ├── Int64.IsEven.cs │ │ │ ├── Int64.IsMultipleOf.cs │ │ │ ├── Int64.IsOdd.cs │ │ │ ├── Int64.IsPrime.cs │ │ │ ├── Int64.Milliseconds.cs │ │ │ ├── Int64.Minutes.cs │ │ │ ├── Int64.Seconds.cs │ │ │ └── Int64.Weeks.cs │ │ ├── System.BitConverter │ │ │ ├── Int64.GetBytes.cs │ │ │ └── Int64.Int64BitsToDouble.cs │ │ ├── System.DateTime │ │ │ ├── Int64.FromBinary.cs │ │ │ ├── Int64.FromFileTime.cs │ │ │ └── Int64.FromFileTimeUtc.cs │ │ ├── System.Decimal │ │ │ └── Int64.FromOACurrency.cs │ │ ├── System.Math │ │ │ ├── Int64.Abs.cs │ │ │ ├── Int64.DivRem.cs │ │ │ ├── Int64.Max.cs │ │ │ ├── Int64.Min.cs │ │ │ └── Int64.Sign.cs │ │ ├── System.Net.IPAddress │ │ │ ├── Int64.HostToNetworkOrder.cs │ │ │ └── Int64.NetworkToHostOrder.cs │ │ ├── System.TimeSpan │ │ │ └── Int64.FromTicks.cs │ │ └── _CoreObject │ │ │ ├── Int64.Between.cs │ │ │ ├── Int64.In.cs │ │ │ ├── Int64.InRange.cs │ │ │ └── Int64.NotIn.cs │ ├── System.Object │ │ ├── Casting │ │ │ ├── Object.As.cs │ │ │ ├── Object.AsOrDefault.cs │ │ │ └── Object.IsAssignableFrom.cs │ │ ├── Chaining │ │ │ └── Object.Chain.cs │ │ ├── Cloning │ │ │ ├── Object.DeepClone.cs │ │ │ └── Object.ShallowCopy.cs │ │ ├── Convert │ │ │ ├── IsValidValueType │ │ │ │ ├── Object.IsValidBoolean.cs │ │ │ │ ├── Object.IsValidByte.cs │ │ │ │ ├── Object.IsValidChar.cs │ │ │ │ ├── Object.IsValidDateTime.cs │ │ │ │ ├── Object.IsValidDateTimeOffSet.cs │ │ │ │ ├── Object.IsValidDecimal.cs │ │ │ │ ├── Object.IsValidDouble.cs │ │ │ │ ├── Object.IsValidFloat.cs │ │ │ │ ├── Object.IsValidGuid.cs │ │ │ │ ├── Object.IsValidInt16.cs │ │ │ │ ├── Object.IsValidInt32.cs │ │ │ │ ├── Object.IsValidInt64.cs │ │ │ │ ├── Object.IsValidLong.cs │ │ │ │ ├── Object.IsValidSByte.cs │ │ │ │ ├── Object.IsValidShort.cs │ │ │ │ ├── Object.IsValidSingle.cs │ │ │ │ ├── Object.IsValidString.cs │ │ │ │ ├── Object.IsValidUInt16.cs │ │ │ │ ├── Object.IsValidUInt32.cs │ │ │ │ ├── Object.IsValidUInt64.cs │ │ │ │ ├── Object.IsValidULong.cs │ │ │ │ └── Object.IsValidUShort.cs │ │ │ ├── Object.ChangeType.cs │ │ │ ├── Object.GetTypeCode.cs │ │ │ ├── Object.To.cs │ │ │ ├── Object.ToOrDefault.cs │ │ │ └── ToValueType │ │ │ │ ├── Object.ToBoolean.cs │ │ │ │ ├── Object.ToBooleanOrDefault.cs │ │ │ │ ├── Object.ToByte.cs │ │ │ │ ├── Object.ToByteOrDefault.cs │ │ │ │ ├── Object.ToChar.cs │ │ │ │ ├── Object.ToCharOrDefault.cs │ │ │ │ ├── Object.ToDateTime.cs │ │ │ │ ├── Object.ToDateTimeOffSet.cs │ │ │ │ ├── Object.ToDateTimeOffSetOrDefault.cs │ │ │ │ ├── Object.ToDateTimeOrDefault.cs │ │ │ │ ├── Object.ToDecimal.cs │ │ │ │ ├── Object.ToDecimalOrDefault.cs │ │ │ │ ├── Object.ToDouble.cs │ │ │ │ ├── Object.ToDoubleOrDefault.cs │ │ │ │ ├── Object.ToFloat.cs │ │ │ │ ├── Object.ToFloatOrDefault.cs │ │ │ │ ├── Object.ToGuid.cs │ │ │ │ ├── Object.ToGuidOrDefault.cs │ │ │ │ ├── Object.ToInt16.cs │ │ │ │ ├── Object.ToInt16OrDefault.cs │ │ │ │ ├── Object.ToInt32.cs │ │ │ │ ├── Object.ToInt32OrDefault.cs │ │ │ │ ├── Object.ToInt64.cs │ │ │ │ ├── Object.ToInt64OrDefault.cs │ │ │ │ ├── Object.ToLong.cs │ │ │ │ ├── Object.ToLongOrDefault.cs │ │ │ │ ├── Object.ToNullableBoolean.cs │ │ │ │ ├── Object.ToNullableBooleanOrDefault.cs │ │ │ │ ├── Object.ToNullableByte.cs │ │ │ │ ├── Object.ToNullableByteOrDefault.cs │ │ │ │ ├── Object.ToNullableChar.cs │ │ │ │ ├── Object.ToNullableCharOrDefault.cs │ │ │ │ ├── Object.ToNullableDateTime.cs │ │ │ │ ├── Object.ToNullableDateTimeOffSet.cs │ │ │ │ ├── Object.ToNullableDateTimeOffSetOrDefault.cs │ │ │ │ ├── Object.ToNullableDateTimeOrDefault.cs │ │ │ │ ├── Object.ToNullableDecimal.cs │ │ │ │ ├── Object.ToNullableDecimalOrDefault.cs │ │ │ │ ├── Object.ToNullableDouble.cs │ │ │ │ ├── Object.ToNullableDoubleOrDefault.cs │ │ │ │ ├── Object.ToNullableFloat.cs │ │ │ │ ├── Object.ToNullableFloatOrDefault.cs │ │ │ │ ├── Object.ToNullableGuid.cs │ │ │ │ ├── Object.ToNullableGuidOrDefault.cs │ │ │ │ ├── Object.ToNullableInt16.cs │ │ │ │ ├── Object.ToNullableInt16OrDefault.cs │ │ │ │ ├── Object.ToNullableInt32.cs │ │ │ │ ├── Object.ToNullableInt32OrDefault.cs │ │ │ │ ├── Object.ToNullableInt64.cs │ │ │ │ ├── Object.ToNullableInt64OrDefault.cs │ │ │ │ ├── Object.ToNullableLong.cs │ │ │ │ ├── Object.ToNullableLongOrDefault.cs │ │ │ │ ├── Object.ToNullableSByte.cs │ │ │ │ ├── Object.ToNullableSByteOrDefault.cs │ │ │ │ ├── Object.ToNullableShort.cs │ │ │ │ ├── Object.ToNullableShortOrDefault.cs │ │ │ │ ├── Object.ToNullableSingle.cs │ │ │ │ ├── Object.ToNullableSingleOrDefault.cs │ │ │ │ ├── Object.ToNullableUInt16.cs │ │ │ │ ├── Object.ToNullableUInt16OrDefault.cs │ │ │ │ ├── Object.ToNullableUInt32.cs │ │ │ │ ├── Object.ToNullableUInt32OrDefault.cs │ │ │ │ ├── Object.ToNullableUInt64.cs │ │ │ │ ├── Object.ToNullableUInt64OrDefault.cs │ │ │ │ ├── Object.ToNullableULong.cs │ │ │ │ ├── Object.ToNullableULongOrDefault.cs │ │ │ │ ├── Object.ToNullableUShort.cs │ │ │ │ ├── Object.ToNullableUShortOrDefault.cs │ │ │ │ ├── Object.ToSByte.cs │ │ │ │ ├── Object.ToSByteOrDefault.cs │ │ │ │ ├── Object.ToShort.cs │ │ │ │ ├── Object.ToShortOrDefault.cs │ │ │ │ ├── Object.ToSingle.cs │ │ │ │ ├── Object.ToSingleOrDefault.cs │ │ │ │ ├── Object.ToString.cs │ │ │ │ ├── Object.ToStringOrDefault.cs │ │ │ │ ├── Object.ToUInt16.cs │ │ │ │ ├── Object.ToUInt16OrDefault.cs │ │ │ │ ├── Object.ToUInt32.cs │ │ │ │ ├── Object.ToUInt32OrDefault.cs │ │ │ │ ├── Object.ToUInt64.cs │ │ │ │ ├── Object.ToUInt64OrDefault.cs │ │ │ │ ├── Object.ToULong.cs │ │ │ │ ├── Object.ToULongOrDefault.cs │ │ │ │ ├── Object.ToUShort.cs │ │ │ │ └── Object.ToUShortOrDefault.cs │ │ ├── Utility │ │ │ ├── Object.Coalesce.cs │ │ │ ├── Object.CoalesceOrDefault.cs │ │ │ ├── Object.GetValueOrDefault.cs │ │ │ ├── Object.IfNotNull.cs │ │ │ ├── Object.NullIf.cs │ │ │ ├── Object.NullIfEquals.cs │ │ │ ├── Object.NullIfEqualsAny.cs │ │ │ ├── Object.ToStringSafe.cs │ │ │ └── Object.Try.cs │ │ └── ValueComparison │ │ │ ├── Object.Between.cs │ │ │ ├── Object.In.cs │ │ │ ├── Object.InRange.cs │ │ │ ├── Object.IsDBNull.cs │ │ │ ├── Object.IsDefault.cs │ │ │ ├── Object.IsNotNull.cs │ │ │ ├── Object.IsNull.cs │ │ │ ├── Object.NotIn.cs │ │ │ └── Object.ReferenceEquals.cs │ ├── System.Object[] │ │ └── System.Type │ │ │ └── Object[].GetTypeArray.cs │ ├── System.Random │ │ ├── Random.CoinToss.cs │ │ └── Random.OneOf.cs │ ├── System.SByte │ │ ├── System.Math │ │ │ ├── SByte.Abs.cs │ │ │ ├── SByte.Max.cs │ │ │ ├── SByte.Min.cs │ │ │ └── SByte.Sign.cs │ │ └── _CoreObject │ │ │ ├── SByte.In.cs │ │ │ └── SByte.NotIn.cs │ ├── System.Single │ │ ├── System.Math │ │ │ ├── Single.Abs.cs │ │ │ ├── Single.Max.cs │ │ │ ├── Single.Min.cs │ │ │ └── Single.Sign.cs │ │ ├── System.Single │ │ │ ├── Single.IsInfinity.cs │ │ │ ├── Single.IsNaN.cs │ │ │ ├── Single.IsNegativeInfinity.cs │ │ │ └── Single.IsPositiveInfinity.cs │ │ └── _CoreObject │ │ │ ├── Single.Between.cs │ │ │ ├── Single.In.cs │ │ │ ├── Single.InRange.cs │ │ │ └── Single.NotIn.cs │ ├── System.String │ │ ├── String.Br2Nl.cs │ │ ├── String.ConcatWith.cs │ │ ├── String.Concatenate.cs │ │ ├── String.Contains.cs │ │ ├── String.ContainsAll.cs │ │ ├── String.ContainsAny.cs │ │ ├── String.DecodeBase64.cs │ │ ├── String.DecryptRSA.cs │ │ ├── String.EncodeBase64.cs │ │ ├── String.EncryptRSA.cs │ │ ├── String.EqualsIgnoreCase.cs │ │ ├── String.EscapeXml.cs │ │ ├── String.Extract.cs │ │ ├── String.ExtractLetter.cs │ │ ├── String.ExtractNumber.cs │ │ ├── String.FormatWith.cs │ │ ├── String.GetAfter.cs │ │ ├── String.GetBefore.cs │ │ ├── String.GetBetween.cs │ │ ├── String.IfEmpty.cs │ │ ├── String.IsAlpha.cs │ │ ├── String.IsAlphaNumeric.cs │ │ ├── String.IsAnagram.cs │ │ ├── String.IsEmpty.cs │ │ ├── String.IsLike.cs │ │ ├── String.IsNotEmpty.cs │ │ ├── String.IsNotNullOrEmpty.cs │ │ ├── String.IsNotNullOrWhiteSpace.cs │ │ ├── String.IsNullOrEmpty.cs │ │ ├── String.IsNumeric.cs │ │ ├── String.IsPalindrome.cs │ │ ├── String.Left.cs │ │ ├── String.LeftSafe.cs │ │ ├── String.Nl2Br.cs │ │ ├── String.NullIfEmpty.cs │ │ ├── String.PathCombine.cs │ │ ├── String.RemoveDiacritics.cs │ │ ├── String.RemoveLetter.cs │ │ ├── String.RemoveNumber.cs │ │ ├── String.RemoveWhere.cs │ │ ├── String.Repeat.cs │ │ ├── String.Replace.cs │ │ ├── String.ReplaceByEmpty.cs │ │ ├── String.ReplaceFirst.cs │ │ ├── String.ReplaceLast.cs │ │ ├── String.ReplaceWhenEquals.cs │ │ ├── String.Reverse.cs │ │ ├── String.Right.cs │ │ ├── String.RightSafe.cs │ │ ├── String.SaveAs.cs │ │ ├── String.Split.cs │ │ ├── String.SqlTypeNameToSqlDbType.cs │ │ ├── String.StripHtml.cs │ │ ├── String.ToByteArray.cs │ │ ├── String.ToDirectoryInfo.cs │ │ ├── String.ToEnum.cs │ │ ├── String.ToFileInfo.cs │ │ ├── String.ToMemoryStream.cs │ │ ├── String.ToPlural.cs │ │ ├── String.ToSecureString.cs │ │ ├── String.ToTitleCase.cs │ │ ├── String.ToValidDateTimeOrNull.cs │ │ ├── String.ToXDocument.cs │ │ ├── String.ToXmlDocument.cs │ │ ├── String.Truncate.cs │ │ ├── System.Char │ │ │ ├── String.ConvertToUtf32.cs │ │ │ ├── String.GetNumericValue.cs │ │ │ ├── String.GetUnicodeCategory.cs │ │ │ ├── String.IsControl.cs │ │ │ ├── String.IsDigit.cs │ │ │ ├── String.IsHighSurrogate.cs │ │ │ ├── String.IsLetter.cs │ │ │ ├── String.IsLetterOrDigit.cs │ │ │ ├── String.IsLowSurrogate.cs │ │ │ ├── String.IsLower.cs │ │ │ ├── String.IsNumber.cs │ │ │ ├── String.IsPunctuation.cs │ │ │ ├── String.IsSeparator.cs │ │ │ ├── String.IsSurrogate.cs │ │ │ ├── String.IsSurrogatePair.cs │ │ │ ├── String.IsSymbol.cs │ │ │ ├── String.IsUpper.cs │ │ │ └── String.IsWhiteSpace.cs │ │ ├── System.String │ │ │ ├── String.CompareOrdinal.cs │ │ │ ├── String.Concat.cs │ │ │ ├── String.Copy.cs │ │ │ ├── String.Format.cs │ │ │ ├── String.Intern.cs │ │ │ ├── String.IsInterned.cs │ │ │ ├── String.IsNullOrWhiteSpace.cs │ │ │ └── String.Join.cs │ │ ├── System.Text.RegularExpressions.Regex │ │ │ ├── String.IsMatch.cs │ │ │ ├── String.Match.cs │ │ │ └── String.Matches.cs │ │ ├── System.Web.HttpUtility │ │ │ ├── String.HtmlAttributeEncode.cs │ │ │ ├── String.HtmlDecode.cs │ │ │ ├── String.HtmlEncode.cs │ │ │ ├── String.JavaScriptStringEncode.cs │ │ │ ├── String.ParseQueryString.cs │ │ │ ├── String.UrlDecode.cs │ │ │ ├── String.UrlDecodeToBytes.cs │ │ │ ├── String.UrlEncode.cs │ │ │ ├── String.UrlEncodeToBytes.cs │ │ │ └── String.UrlPathEncode.cs │ │ ├── _CoreObject │ │ │ ├── String.In.cs │ │ │ ├── String.IsNotNull.cs │ │ │ ├── String.IsNull.cs │ │ │ └── String.NotIn.cs │ │ ├── _ExtractValueType │ │ │ ├── String.ExtractDecimal.cs │ │ │ ├── String.ExtractDouble.cs │ │ │ ├── String.ExtractInt16.cs │ │ │ ├── String.ExtractInt32.cs │ │ │ ├── String.ExtractInt64.cs │ │ │ ├── String.ExtractManyDecimal.cs │ │ │ ├── String.ExtractManyDouble.cs │ │ │ ├── String.ExtractManyInt16.cs │ │ │ ├── String.ExtractManyInt32.cs │ │ │ ├── String.ExtractManyInt64.cs │ │ │ ├── String.ExtractManyUInt16.cs │ │ │ ├── String.ExtractManyUInt32.cs │ │ │ ├── String.ExtractManyUInt64.cs │ │ │ ├── String.ExtractUInt16.cs │ │ │ ├── String.ExtractUInt32.cs │ │ │ └── String.ExtractUInt64.cs │ │ └── zzzRegexPattern │ │ │ ├── String.IsValidEmail.cs │ │ │ └── String.IsValidIP.cs │ ├── System.Text.StringBuilder │ │ ├── Extract │ │ │ ├── ExtractChar.cs │ │ │ ├── ExtractComment.cs │ │ │ ├── ExtractCommentMultiLine.cs │ │ │ ├── ExtractCommentSingleLine.cs │ │ │ ├── ExtractHexadecimal.cs │ │ │ ├── ExtractKeyword.cs │ │ │ ├── ExtractNumber.cs │ │ │ ├── ExtractOperator.cs │ │ │ ├── ExtractString.cs │ │ │ ├── ExtractStringArobasDoubleQuote.cs │ │ │ ├── ExtractStringArobasSingleQuote.cs │ │ │ ├── ExtractStringDoubleQuote.cs │ │ │ ├── ExtractStringSingleQuote.cs │ │ │ ├── ExtractToken.cs │ │ │ └── ExtractTriviaToken.cs │ │ ├── StringBuilder.AppendIf.cs │ │ ├── StringBuilder.AppendJoin.cs │ │ ├── StringBuilder.AppendLineFormat.cs │ │ ├── StringBuilder.AppendLineIf.cs │ │ ├── StringBuilder.AppendLineJoin.cs │ │ ├── StringBuilder.GetIndexAfterNextDoubleQuote.cs │ │ ├── StringBuilder.GetIndexAfterNextSingleQuote.cs │ │ └── StringBuilder.Substring.cs │ ├── System.TimeSpan │ │ ├── TimeSpan.Ago.cs │ │ ├── TimeSpan.FromNow.cs │ │ ├── TimeSpan.UtcAgo.cs │ │ └── TimeSpan.UtcFromNow.cs │ ├── System.Type │ │ ├── System.Activator │ │ │ ├── Type.CreateInstance.cs │ │ │ └── Type.GetObject.cs │ │ └── Type.CreateInstance.cs │ ├── System.UInt16 │ │ ├── System.Math │ │ │ ├── UInt16.Max.cs │ │ │ └── UInt16.Min.cs │ │ └── _CoreObject │ │ │ ├── UInt16.Between.cs │ │ │ ├── UInt16.In.cs │ │ │ ├── UInt16.InRange.cs │ │ │ └── UInt16.NotIn.cs │ ├── System.UInt32 │ │ ├── System.Math │ │ │ ├── UInt32.Max.cs │ │ │ └── UInt32.Min.cs │ │ └── _CoreObject │ │ │ ├── UInt32.Between.cs │ │ │ ├── UInt32.In.cs │ │ │ ├── UInt32.InRange.cs │ │ │ └── UInt32.NotIn.cs │ ├── System.UInt64 │ │ ├── System.Math │ │ │ ├── UInt64.Max.cs │ │ │ └── UInt64.Min.cs │ │ └── _CoreObject │ │ │ ├── UInt64.Between.cs │ │ │ ├── UInt64.In.cs │ │ │ ├── UInt64.InRange.cs │ │ │ └── UInt64.NotIn.cs │ ├── System.UIntPtr │ │ └── System.UIntPtr │ │ │ ├── UIntPtr.Add.cs │ │ │ └── UIntPtr.Subtract.cs │ ├── TArray │ │ ├── Array.ClearAll.cs │ │ ├── Array.ClearAt.cs │ │ ├── Array.ToDataTable.cs │ │ └── System.Array │ │ │ ├── TArray.AsReadOnly.cs │ │ │ ├── TArray.Exists.cs │ │ │ ├── TArray.Find.cs │ │ │ ├── TArray.FindAll.cs │ │ │ ├── TArray.FindIndex.cs │ │ │ ├── TArray.FindLast.cs │ │ │ ├── TArray.FindLastIndex.cs │ │ │ ├── TArray.ForEach.cs │ │ │ └── TArray.TrueForAll.cs │ └── Z.Core.csproj ├── Z.Data.MySql │ ├── MySql.Data.MySqlClient.MySqlCommand │ │ ├── MySqlCommand.ExecuteDataSet.cs │ │ └── MySqlCommand.ExecuteDataTable.cs │ ├── MySql.Data.MySqlClient.MySqlConnection │ │ ├── MySqlConnection.ExecuteDataSet.cs │ │ ├── MySqlConnection.ExecuteDataTable.cs │ │ ├── MySqlConnection.ExecuteEntities.cs │ │ ├── MySqlConnection.ExecuteEntity.cs │ │ ├── MySqlConnection.ExecuteExpandoObject.cs │ │ ├── MySqlConnection.ExecuteExpandoObjects.cs │ │ ├── MySqlConnection.ExecuteNonQuery.cs │ │ ├── MySqlConnection.ExecuteReader.cs │ │ ├── MySqlConnection.ExecuteScalar.cs │ │ ├── MySqlConnection.ExecuteScalarAs.cs │ │ └── MySqlConnection.ExecuteScalarTo.cs │ ├── MySql.Data.MySqlClient.MySqlParameterCollection │ │ └── MySqlParameterCollection.AddRangeWithValue.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Z.Data.MySql.csproj │ ├── _Internal │ │ ├── IDataReader.ToEntities.cs │ │ ├── IDataReader.ToEntity.cs │ │ ├── IDataReader.ToExpandoObject.cs │ │ ├── IDataReader.ToExpandoObjects.cs │ │ ├── Object.As.cs │ │ └── Object.To.cs │ ├── app.config │ └── packages.config ├── Z.Data.SQLite │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── System.Data.SQLite.SQLiteCommand │ │ ├── SQLiteCommand.ExecuteDataSet.cs │ │ └── SQLiteCommand.ExecuteDataTable.cs │ ├── System.Data.SQLite.SQLiteConnection │ │ ├── SQLiteConnection.ExecuteDataSet.cs │ │ ├── SQLiteConnection.ExecuteDataTable.cs │ │ ├── SQLiteConnection.ExecuteEntities.cs │ │ ├── SQLiteConnection.ExecuteEntity.cs │ │ ├── SQLiteConnection.ExecuteExpandoObject.cs │ │ ├── SQLiteConnection.ExecuteExpandoObjects.cs │ │ ├── SQLiteConnection.ExecuteNonQuery.cs │ │ ├── SQLiteConnection.ExecuteReader.cs │ │ ├── SQLiteConnection.ExecuteScalar.cs │ │ ├── SQLiteConnection.ExecuteScalarAs.cs │ │ └── SQLiteConnection.ExecuteScalarTo.cs │ ├── System.Data.SQLite.SQLiteParameterCollection │ │ └── SQLiteParameterCollection.AddRangeWithValue.cs │ ├── Z.Data.SQLite.csproj │ ├── _Internal │ │ ├── IDataReader.ToEntities.cs │ │ ├── IDataReader.ToEntity.cs │ │ ├── IDataReader.ToExpandoObject.cs │ │ ├── IDataReader.ToExpandoObjects.cs │ │ ├── Object.As.cs │ │ └── Object.To.cs │ └── packages.config ├── Z.Data.SqlServerCe │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── System.Data.SqlServerCe.SqlCeCommand │ │ ├── SqlCeCommand.ExecuteDataSet.cs │ │ └── SqlCeCommand.ExecuteDataTable.cs │ ├── System.Data.SqlServerCe.SqlCeConnection │ │ ├── SqlCeConnection.ExecuteDataSet.cs │ │ ├── SqlCeConnection.ExecuteDataTable.cs │ │ ├── SqlCeConnection.ExecuteEntities.cs │ │ ├── SqlCeConnection.ExecuteEntity.cs │ │ ├── SqlCeConnection.ExecuteExpandoObject.cs │ │ ├── SqlCeConnection.ExecuteExpandoObjects.cs │ │ ├── SqlCeConnection.ExecuteNonQuery.cs │ │ ├── SqlCeConnection.ExecuteReader.cs │ │ ├── SqlCeConnection.ExecuteScalar.cs │ │ ├── SqlCeConnection.ExecuteScalarAs.cs │ │ └── SqlCeConnection.ExecuteScalarTo.cs │ ├── System.Data.SqlServerCe.SqlCeParameterCollection │ │ └── SqlCeParameterCollection.AddRangeWithValue.cs │ ├── Z.Data.SqlServerCe.csproj │ └── _Internal │ │ ├── IDataReader.ToEntities.cs │ │ ├── IDataReader.ToEntity.cs │ │ ├── IDataReader.ToExpandoObject.cs │ │ ├── IDataReader.ToExpandoObjects.cs │ │ ├── Object.As.cs │ │ └── Object.To.cs ├── Z.Data │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── System.Collections.Generic.IDictionary[string, object] │ │ ├── IDictionary[string, object].ToDbParameters.cs │ │ └── IDictionary[string, object].ToSqlParameters.cs │ ├── System.Data.Common.DbCommand │ │ ├── DbCommand.ExecuteEntities.cs │ │ ├── DbCommand.ExecuteEntity.cs │ │ ├── DbCommand.ExecuteExpandoObject.cs │ │ ├── DbCommand.ExecuteExpandoObjects.cs │ │ ├── DbCommand.ExecuteScalarAs.cs │ │ ├── DbCommand.ExecuteScalarAsOrDefault.cs │ │ ├── DbCommand.ExecuteScalarTo.cs │ │ └── DbCommand.ExecuteScalarToOrDefault.cs │ ├── System.Data.Common.DbConnection │ │ ├── DbConnection.ExecuteEntities.cs │ │ ├── DbConnection.ExecuteEntity.cs │ │ ├── DbConnection.ExecuteExpandoObject.cs │ │ ├── DbConnection.ExecuteExpandoObjects.cs │ │ ├── DbConnection.ExecuteNonQuery.cs │ │ ├── DbConnection.ExecuteReader.cs │ │ └── DbConnection.ExecuteScalar.cs │ ├── System.Data.ConnectionState │ │ ├── ConnectionState.In.cs │ │ └── ConnectionState.NotIn.cs │ ├── System.Data.DataColumnCollection │ │ └── DataColumnCollection.AddRange.cs │ ├── System.Data.DataRow │ │ ├── DataRow.ToEntity.cs │ │ └── DataRow.ToExpandoObject.cs │ ├── System.Data.DataTable │ │ ├── DataTable.FirstRow.cs │ │ ├── DataTable.LastRow.cs │ │ ├── DataTable.ToEntities.cs │ │ └── DataTable.ToExpandoObjects.cs │ ├── System.Data.IDataReader │ │ ├── IDataReader.ContainsColumn.cs │ │ ├── IDataReader.ForEach.cs │ │ ├── IDataReader.GetColumnNames.cs │ │ ├── IDataReader.GetValueAs.cs │ │ ├── IDataReader.GetValueAsOrDefault.cs │ │ ├── IDataReader.GetValueTo.cs │ │ ├── IDataReader.GetValueToOrDefault.cs │ │ ├── IDataReader.IsDBNull.cs │ │ ├── IDataReader.ToDataTable.cs │ │ ├── IDataReader.ToEntities.cs │ │ ├── IDataReader.ToEntity.cs │ │ ├── IDataReader.ToExpandoObject.cs │ │ └── IDataReader.ToExpandoObjects.cs │ ├── System.Data.IDbConnection │ │ ├── IDbConnection.EnsureOpen.cs │ │ ├── IDbConnection.IsConnectionOpen.cs │ │ └── IDbConnection.IsNotConnectionOpen.cs │ ├── System.Data.SqlClient.SqlBulkCopy │ │ ├── SqlBulkCopy.GetConnection.cs │ │ └── SqlBulkCopy.GetTransaction.cs │ ├── System.Data.SqlClient.SqlCommand │ │ ├── SqlCommand.ExecuteDataSet.cs │ │ └── SqlCommand.ExecuteDataTable.cs │ ├── System.Data.SqlClient.SqlConnection │ │ ├── SqlConnection.ExecuteDataSet.cs │ │ ├── SqlConnection.ExecuteDataTable.cs │ │ ├── SqlConnection.ExecuteEntities.cs │ │ ├── SqlConnection.ExecuteEntity.cs │ │ ├── SqlConnection.ExecuteExpandoObject.cs │ │ ├── SqlConnection.ExecuteExpandoObjects.cs │ │ ├── SqlConnection.ExecuteNonQuery.cs │ │ ├── SqlConnection.ExecuteReader.cs │ │ ├── SqlConnection.ExecuteScalar.cs │ │ ├── SqlConnection.ExecuteScalarAs.cs │ │ ├── SqlConnection.ExecuteScalarTo.cs │ │ └── SqlConnection.ExecuteXmlReader.cs │ ├── System.Data.SqlClient.SqlParameterCollection │ │ └── SqlParameterCollection.AddRangeWithValue.cs │ └── Z.Data.csproj ├── Z.Drawing │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── System.Drawing.Color │ │ └── System.Drawing.ColorTranslator │ │ │ ├── Color.ToHtml.cs │ │ │ ├── Color.ToOle.cs │ │ │ └── Color.ToWin32.cs │ ├── System.Drawing.Image │ │ ├── Image.Cut.cs │ │ └── Image.Scale.cs │ └── Z.Drawing.csproj ├── Z.IO │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── System.Collections.Generic.IEnumerable[DirectoryInfo] │ │ ├── IEnumerable[DirectoryInfo].Delete.cs │ │ └── IEnumerable[DirectoryInfo].ForEach.cs │ ├── System.Collections.Generic.IEnumerable[FileInfo] │ │ ├── IEnumerable[FileInfo].Delete.cs │ │ └── IEnumerable[FileInfo].ForEach.cs │ ├── System.Collections.Generic.IEnumerable[string] │ │ └── IEnumerable[string].PathCombine.cs │ ├── System.IO.DirectoryInfo │ │ ├── DirectoryInfo.Clear.cs │ │ ├── DirectoryInfo.CopyTo.cs │ │ ├── DirectoryInfo.CreateAllDirectories.cs │ │ ├── DirectoryInfo.DeleteDirectoriesWhere.cs │ │ ├── DirectoryInfo.DeleteFilesWhere.cs │ │ ├── DirectoryInfo.DeleteOlderThan.cs │ │ ├── DirectoryInfo.EnsureDirectoryExists.cs │ │ ├── DirectoryInfo.EnumerateDirectories.cs │ │ ├── DirectoryInfo.EnumerateFileSystemEntries.cs │ │ ├── DirectoryInfo.EnumerateFiles.cs │ │ ├── DirectoryInfo.GetDirectories.cs │ │ ├── DirectoryInfo.GetDirectoriesWhere.cs │ │ ├── DirectoryInfo.GetFileSystemEntries.cs │ │ ├── DirectoryInfo.GetFileSystemEntriesWhere.cs │ │ ├── DirectoryInfo.GetFiles.cs │ │ ├── DirectoryInfo.GetFilesWhere.cs │ │ ├── DirectoryInfo.GetSize.cs │ │ ├── DirectoryInfo.PathCombine.cs │ │ ├── DirectoryInfo.PathCombineDirectory.cs │ │ └── DirectoryInfo.PathCombineFile.cs │ ├── System.IO.FileInfo │ │ ├── FileInfo.AppendAllLines.cs │ │ ├── FileInfo.AppendAllText.cs │ │ ├── FileInfo.ChangeExtension.cs │ │ ├── FileInfo.CountLines.cs │ │ ├── FileInfo.CreateDirectory.cs │ │ ├── FileInfo.EnsureDirectoryExists.cs │ │ ├── FileInfo.GetDirectoryFullName.cs │ │ ├── FileInfo.GetDirectoryName.cs │ │ ├── FileInfo.GetFileNameWithoutExtension.cs │ │ ├── FileInfo.GetPathRoot.cs │ │ ├── FileInfo.HasExtension.cs │ │ ├── FileInfo.IsPathRooted.cs │ │ ├── FileInfo.ReadAllBytes.cs │ │ ├── FileInfo.ReadAllLines.cs │ │ ├── FileInfo.ReadAllText.cs │ │ ├── FileInfo.ReadLines.cs │ │ ├── FileInfo.ReadToEnd.cs │ │ ├── FileInfo.Rename.cs │ │ ├── FileInfo.RenameExtension.cs │ │ ├── FileInfo.RenameFileWithoutExtension.cs │ │ ├── FileInfo.WriteAllBytes.cs │ │ ├── FileInfo.WriteAllLines.cs │ │ └── FileInfo.WriteAllText.cs │ ├── System.IO.Stream │ │ ├── Stream.ReadToEnd.cs │ │ ├── Stream.ToByteArray.cs │ │ └── Stream.ToMD5Hash.cs │ ├── System.IO.StreamReader │ │ └── StreamReader.SkipLines.cs │ └── Z.IO.csproj ├── Z.Net │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── System.Net.Mail.MailMessage │ │ ├── MailMessage.Send.cs │ │ └── MailMessage.SendAsync.cs │ ├── System.Net.WebRequest │ │ └── WebRequest.GetResponseSafe.cs │ ├── System.Net.WebResponse │ │ ├── WebResponse.ReadToEnd.cs │ │ └── WebResponse.ReadToEndAndDispose.cs │ └── Z.Net.csproj ├── Z.Reflection │ ├── GetDeclaration │ │ ├── ConstructorInfo.GetDeclaration.cs │ │ ├── EvenInfo.GetDeclaration.cs │ │ ├── FieldInfo.GetDeclaration.cs │ │ ├── MemberInfo.GetDeclaration.cs │ │ ├── MethodInfo.GetDeclaration.cs │ │ ├── ParameterInfo.GetDeclaration.cs │ │ ├── PropertyInfo.GetDeclaration.cs │ │ ├── TypeInfo.GetDeclaration.cs │ │ └── _Helper │ │ │ └── TypeInfo.GetShortDeclaraction.cs │ ├── GetSignature │ │ ├── ConstructorInfo.GetSignature.cs │ │ ├── EvenInfo.GetSignature.cs │ │ ├── FieldInfo.GetSignature.cs │ │ ├── MemberInfo.GetSignature.cs │ │ ├── MethodInfo.GetSignature.cs │ │ ├── ParameterInfo.GetSignature.cs │ │ ├── PropertyInfo.GetSignature.cs │ │ ├── TypeInfo.GetSignature.cs │ │ └── _Helper │ │ │ └── TypeInfo.GetShortSignature.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── System.Object │ │ ├── Object.GetCustomAttribute.cs │ │ ├── Object.GetCustomAttributeByFullName.cs │ │ ├── Object.GetCustomAttributeByName.cs │ │ ├── Object.GetCustomAttributeDescription.cs │ │ ├── Object.GetCustomAttributes.cs │ │ ├── Object.GetCustomAttributesByFullName.cs │ │ ├── Object.GetCustomAttributesByName.cs │ │ ├── Object.GetField.cs │ │ ├── Object.GetFieldValue.cs │ │ ├── Object.GetFields.cs │ │ ├── Object.GetMemberPaths.cs │ │ ├── Object.GetMethod.cs │ │ ├── Object.GetMethods.cs │ │ ├── Object.GetProperties.cs │ │ ├── Object.GetProperty.cs │ │ ├── Object.GetPropertyOrField.cs │ │ ├── Object.GetPropertyValue.cs │ │ ├── Object.InvokeMethod.cs │ │ ├── Object.IsAttributeDefined.cs │ │ ├── Object.SetFieldValue.cs │ │ ├── Object.SetPropertyValue.cs │ │ └── TypeComparison │ │ │ ├── Object.IsArray.cs │ │ │ ├── Object.IsClass.cs │ │ │ ├── Object.IsEnum.cs │ │ │ ├── Object.IsSubclassOf.cs │ │ │ ├── Object.IsTypeOf.cs │ │ │ └── Object.IsTypeOrInheritsOf.cs │ ├── System.Reflection.Assembly │ │ ├── Assembly.GetAttribute.cs │ │ └── System.Attribute │ │ │ ├── Assembly.GetCustomAttribute.cs │ │ │ ├── Assembly.GetCustomAttributes.cs │ │ │ └── Assembly.IsDefined.cs │ ├── System.Reflection.MemberInfo │ │ └── System.Attribute │ │ │ ├── MemberInfo.GetCustomAttribute.cs │ │ │ ├── MemberInfo.GetCustomAttributes.cs │ │ │ └── MemberInfo.IsDefined.cs │ ├── System.Reflection.Module │ │ └── System.Attribute │ │ │ ├── Module.GetCustomAttribute.cs │ │ │ ├── Module.GetCustomAttributes.cs │ │ │ └── Module.IsDefined.cs │ ├── System.Reflection.ParameterInfo │ │ └── System.Attribute │ │ │ ├── ParameterInfo.GetCustomAttribute.cs │ │ │ ├── ParameterInfo.GetCustomAttributes.cs │ │ │ └── ParameterInfo.IsDefined.cs │ └── Z.Reflection.csproj ├── Z.Serialization │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── System.Object │ │ ├── Object.SerializeBinary.cs │ │ ├── Object.SerializeJavaScript.cs │ │ ├── Object.SerializeJson.cs │ │ └── Object.SerializeXml.cs │ ├── System.String │ │ ├── String.DeserializeBinary.cs │ │ ├── String.DeserializeJavaScript.cs │ │ ├── String.DeserializeJson.cs │ │ └── String.DeserializeXml.cs │ └── Z.Serialization.csproj ├── Z.Web │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── System.Web.HttpResponse │ │ ├── HttpResponse.Redirect.cs │ │ ├── HttpResponse.Reload.cs │ │ ├── HttpResponse.SendAttachment.cs │ │ ├── HttpResponse.SetStatus.cs │ │ └── _generated │ │ │ ├── HttpResponse.SetStatusAccepted.cs │ │ │ ├── HttpResponse.SetStatusClientBrowserDoesNotAcceptMimeType.cs │ │ │ ├── HttpResponse.SetStatusContinue.cs │ │ │ ├── HttpResponse.SetStatusCreated.cs │ │ │ ├── HttpResponse.SetStatusInternalServerError.cs │ │ │ ├── HttpResponse.SetStatusInvalidHeaderValueConfiguration.cs │ │ │ ├── HttpResponse.SetStatusInvalidResponseWhileGatewayOrProxy.cs │ │ │ ├── HttpResponse.SetStatusMethodNotAllowed.cs │ │ │ ├── HttpResponse.SetStatusMovedPermanently.cs │ │ │ ├── HttpResponse.SetStatusNoContent.cs │ │ │ ├── HttpResponse.SetStatusNonauthoritativeInformation.cs │ │ │ ├── HttpResponse.SetStatusNotFound.cs │ │ │ ├── HttpResponse.SetStatusNotModified.cs │ │ │ ├── HttpResponse.SetStatusObjectMoved.cs │ │ │ ├── HttpResponse.SetStatusPartialContent.cs │ │ │ ├── HttpResponse.SetStatusPreconditionFailed.cs │ │ │ ├── HttpResponse.SetStatusRequestTimedOut.cs │ │ │ ├── HttpResponse.SetStatusResetContent.cs │ │ │ ├── HttpResponse.SetStatusServiceUnavailable.cs │ │ │ ├── HttpResponse.SetStatusSwitchingProtocols.cs │ │ │ └── HttpResponse.SetStatusTemporaryRedirect.cs │ ├── System.Web.UI.Control │ │ ├── Control.FindControl.cs │ │ └── Control.FindControlRecursive.cs │ └── Z.Web.csproj ├── Z.Window.Forms │ ├── Extensions.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── System.Windows.Forms.Form │ │ └── Form.ToFullScreen.cs │ └── Z.Window.Forms.csproj ├── Z.Xml.Linq │ ├── Extensions.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── System.Xml.Linq.XElement │ │ └── XElement.RemoveAllNamespaces.cs │ └── Z.Xml.Linq.csproj └── logo.png ├── test ├── Z.Caching.Test │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── System.Object │ │ └── Object.FromCache.cs │ ├── System.Runtime.Caching.MemoryCache │ │ └── MemoryCache.AddOrGetExisting.cs │ └── Z.Caching.Test.csproj ├── Z.Collections.Test │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── System.Collections.Generic.ICollection[T] │ │ ├── ICollection[T].AddIf.cs │ │ ├── ICollection[T].AddIfNotContains.cs │ │ ├── ICollection[T].AddRange.cs │ │ ├── ICollection[T].AddRangeIf.cs │ │ ├── ICollection[T].AddRangeIfNotContains.cs │ │ ├── ICollection[T].ContainsAll.cs │ │ ├── ICollection[T].ContainsAny.cs │ │ ├── ICollection[T].IsEmpty.cs │ │ ├── ICollection[T].IsNotEmpty.cs │ │ ├── ICollection[T].IsNotNullOrEmpty.cs │ │ ├── ICollection[T].IsNullOrEmpty.cs │ │ ├── ICollection[T].RemoveIf.cs │ │ ├── ICollection[T].RemoveIfContains.cs │ │ ├── ICollection[T].RemoveRange.cs │ │ ├── ICollection[T].RemoveRangeIf.cs │ │ ├── ICollection[T].RemoveRangeIfContains.cs │ │ └── ICollection[T].RemoveWhere.cs │ ├── System.Collections.Generic.IDictionary[TKey,TValue] │ │ ├── IDictionary[TKey,TValue].AddIfNotContainsKey.cs │ │ ├── IDictionary[TKey,TValue].AddOrUpdate.cs │ │ ├── IDictionary[TKey,TValue].ContainsAllKey.cs │ │ ├── IDictionary[TKey,TValue].ContainsAnyKey.cs │ │ ├── IDictionary[TKey,TValue].GetOrAdd.cs │ │ ├── IDictionary[TKey,TValue].RemoveIfContainsKey.cs │ │ └── IDictionary[TKey,TValue].ToSortedDictionary.cs │ ├── System.Collections.Generic.IDictionary[string, object] │ │ └── IDictionary[string, object].ToExpando.cs │ ├── System.Collections.Generic.IDictionary[string, string] │ │ └── IDictionary[string, string].ToNameValueCollection.cs │ ├── System.Collections.Generic.IEnumerable[T] │ │ ├── IEnumerable[T].ContainsAll.cs │ │ ├── IEnumerable[T].ContainsAny.cs │ │ ├── IEnumerable[T].ForEach.cs │ │ ├── IEnumerable[T].IsEmpty.cs │ │ ├── IEnumerable[T].IsNotEmpty.cs │ │ ├── IEnumerable[T].IsNotNullOrEmpty.cs │ │ ├── IEnumerable[T].IsNullOrEmpty.cs │ │ └── IEnumerable[T].StringJoin.cs │ ├── System.Collections.Generic.IList[T] │ │ └── IList[T].Swap.cs │ ├── System.Collections.IDictionary │ │ └── IDictionary.ToHashtable.cs │ ├── System.Collections.Specialized.NameValueCollection │ │ └── NameValueCollection.ToDictionary.cs │ └── Z.Collections.Test.csproj ├── Z.Compression.Test │ ├── GZip │ │ ├── System.ByteArray │ │ │ └── ByteArray.DecompressGZip.cs │ │ ├── System.IO.FileInfo │ │ │ ├── FileInfo.CreateGZip.cs │ │ │ └── FileInfo.ExtractGZip.cs │ │ └── System.String │ │ │ └── String.CompressGZip.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Z.Compression.Test.csproj │ └── ZipFile │ │ ├── System.IO.Directory │ │ └── FileInfo.CreateZipFile.cs │ │ └── System.IO.FileInfo │ │ └── FileInfo.ExtractZipFileToDirectory.cs ├── Z.Core.Test │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── System.Array │ │ ├── Array.ClearAll.cs │ │ └── Array.WithinIndex.cs │ ├── System.Boolean │ │ ├── Boolean.IfFalse.cs │ │ ├── Boolean.IfTrue.cs │ │ ├── Boolean.ToBinary.cs │ │ └── Boolean.ToString.cs │ ├── System.ByteArray │ │ ├── ByteArray.Resize.cs │ │ ├── ByteArray.ToImage.cs │ │ └── ByteArray.ToMemoryStream.cs │ ├── System.Char │ │ ├── Char.Repeat.cs │ │ └── Char.To.cs │ ├── System.DateTime │ │ ├── DateTime.Age.cs │ │ ├── DateTime.Elapsed.cs │ │ ├── DateTime.EndOfDay.cs │ │ ├── DateTime.EndOfMonth.cs │ │ ├── DateTime.EndOfWeek.cs │ │ ├── DateTime.EndOfYear.cs │ │ ├── DateTime.FirstDayOfWeek.cs │ │ ├── DateTime.IsAfternoon.cs │ │ ├── DateTime.IsDateEqual.cs │ │ ├── DateTime.IsFuture.cs │ │ ├── DateTime.IsMorning.cs │ │ ├── DateTime.IsNow.cs │ │ ├── DateTime.IsPast.cs │ │ ├── DateTime.IsTimeEqual.cs │ │ ├── DateTime.IsToday.cs │ │ ├── DateTime.IsWeekDay.cs │ │ ├── DateTime.IsWeekendDay.cs │ │ ├── DateTime.LastDayOfWeek.cs │ │ ├── DateTime.SetTime.cs │ │ ├── DateTime.StartOfDay.cs │ │ ├── DateTime.StartOfMonth.cs │ │ ├── DateTime.StartOfWeek.cs │ │ ├── DateTime.StartOfYear.cs │ │ ├── DateTime.ToEpochTimeSpan.cs │ │ ├── DateTime.Tomorrow.cs │ │ └── DateTime.Yesterday.cs │ ├── System.DateTimeOffset │ │ └── DateTimeOffset.SetTime.cs │ ├── System.Decimal │ │ └── Decimal.ToMoney.cs │ ├── System.Double │ │ └── Double.ToMoney.cs │ ├── System.Enum │ │ ├── Enum.GetCustomAttributeDescription.cs │ │ ├── Enum.In.cs │ │ └── Enum.NotIn.cs │ ├── System.Environment │ │ └── SpecialFolder.GetFolderPath.cs │ ├── System.EventHandler │ │ ├── EventHandler.Raise.cs │ │ └── EventHandler.RaiseEvent.cs │ ├── System.EventHandler[TEventArgs] │ │ └── EventHandler[TEventArgs].RaiseEvent.cs │ ├── System.Guid │ │ ├── Guid.IsEmpty.cs │ │ └── Guid.IsNotEmpty.cs │ ├── System.Object │ │ ├── Object.As.cs │ │ ├── Object.AsOrDefault.cs │ │ ├── Object.Between.cs │ │ ├── Object.Chain.cs │ │ ├── Object.Coalesce.cs │ │ ├── Object.CoalesceOrDefault.cs │ │ ├── Object.DeepClone.cs │ │ ├── Object.GetValueOrDefault.cs │ │ ├── Object.IfNotNull.cs │ │ ├── Object.In.cs │ │ ├── Object.InRange.cs │ │ ├── Object.IsAssignableFrom.cs │ │ ├── Object.IsDBNull.cs │ │ ├── Object.IsDefault.cs │ │ ├── Object.IsNotNull.cs │ │ ├── Object.IsNull.cs │ │ ├── Object.IsValidInt32.cs │ │ ├── Object.NotIn.cs │ │ ├── Object.NullIf.cs │ │ ├── Object.NullIfEquals.cs │ │ ├── Object.NullIfEqualsAny.cs │ │ ├── Object.ReferenceEquals.cs │ │ ├── Object.ShallowCopy.cs │ │ ├── Object.To.cs │ │ ├── Object.ToInt32.cs │ │ ├── Object.ToInt32OrDefault.cs │ │ ├── Object.ToNullableInt32.cs │ │ ├── Object.ToNullableInt32OrDefault.cs │ │ ├── Object.ToOrDefault.cs │ │ ├── Object.ToStringSafe.cs │ │ └── Object.Try.cs │ ├── System.Random │ │ ├── Random.CoinToss.cs │ │ └── Random.OneOf.cs │ ├── System.String │ │ ├── String.Br2Nl.cs │ │ ├── String.ConcatWith.cs │ │ ├── String.Concatenate.cs │ │ ├── String.Contains.cs │ │ ├── String.ContainsAll.cs │ │ ├── String.ContainsAny.cs │ │ ├── String.DecodeBase64.cs │ │ ├── String.DecryptRSA.cs │ │ ├── String.EncodeBase64.cs │ │ ├── String.EncryptRSA.cs │ │ ├── String.EqualsIgnoreCase.cs │ │ ├── String.EscapeXml.cs │ │ ├── String.Extract.cs │ │ ├── String.ExtractDecimal.cs │ │ ├── String.ExtractDouble.cs │ │ ├── String.ExtractInt16.cs │ │ ├── String.ExtractInt32.cs │ │ ├── String.ExtractInt64.cs │ │ ├── String.ExtractLetter.cs │ │ ├── String.ExtractManyDecimal.cs │ │ ├── String.ExtractManyDouble.cs │ │ ├── String.ExtractManyInt16.cs │ │ ├── String.ExtractManyInt32.cs │ │ ├── String.ExtractManyInt64.cs │ │ ├── String.ExtractManyUInt16.cs │ │ ├── String.ExtractManyUInt32.cs │ │ ├── String.ExtractManyUInt64.cs │ │ ├── String.ExtractNumber.cs │ │ ├── String.ExtractUInt16.cs │ │ ├── String.ExtractUInt32.cs │ │ ├── String.ExtractUInt64.cs │ │ ├── String.FormatWith.cs │ │ ├── String.GetAfter.cs │ │ ├── String.GetBefore.cs │ │ ├── String.GetBetween.cs │ │ ├── String.IfEmpty.cs │ │ ├── String.IsAlpha.cs │ │ ├── String.IsAlphaNumeric.cs │ │ ├── String.IsAnagram.cs │ │ ├── String.IsEmpty.cs │ │ ├── String.IsLike.cs │ │ ├── String.IsNotEmpty.cs │ │ ├── String.IsNotNullOrEmpty.cs │ │ ├── String.IsNotNullOrWhitespace.cs │ │ ├── String.IsNullOrEmpty.cs │ │ ├── String.IsNumeric.cs │ │ ├── String.IsPalindrome.cs │ │ ├── String.IsValidEmail.cs │ │ ├── String.Left.cs │ │ ├── String.LeftSafe.cs │ │ ├── String.Nl2Br.cs │ │ ├── String.NullIfEmpty.cs │ │ ├── String.PathCombine.cs │ │ ├── String.RemoveDiacritics.cs │ │ ├── String.RemoveLetter.cs │ │ ├── String.RemoveNumber.cs │ │ ├── String.RemoveWhere.cs │ │ ├── String.Repeat.cs │ │ ├── String.Replace.cs │ │ ├── String.ReplaceByEmpty.cs │ │ ├── String.ReplaceFirst.cs │ │ ├── String.ReplaceLast.cs │ │ ├── String.ReplaceWhenEquals.cs │ │ ├── String.Reverse.cs │ │ ├── String.Right.cs │ │ ├── String.RightSafe.cs │ │ ├── String.SaveAs.cs │ │ ├── String.Split.cs │ │ ├── String.StripHtml.cs │ │ ├── String.ToByteArray.cs │ │ ├── String.ToDirectoryInfo.cs │ │ ├── String.ToEnum.cs │ │ ├── String.ToFileInfo.cs │ │ ├── String.ToMemoryStream.cs │ │ ├── String.ToPlural.cs │ │ ├── String.ToSecureString.cs │ │ ├── String.ToTitleCase.cs │ │ ├── String.ToXDocument.cs │ │ ├── String.ToXmlDocument.cs │ │ └── String.Truncate.cs │ ├── System.Text.StringBuilder │ │ ├── StringBuilder.AppendIf.cs │ │ ├── StringBuilder.AppendJoin.cs │ │ ├── StringBuilder.AppendJoinLine.cs │ │ ├── StringBuilder.AppendLineFormat.cs │ │ ├── StringBuilder.AppendLineIf.cs │ │ ├── StringBuilder.ExtractChar.cs │ │ ├── StringBuilder.ExtractComment.cs │ │ ├── StringBuilder.ExtractCommentMultiLine.cs │ │ ├── StringBuilder.ExtractCommentSingleLine.cs │ │ ├── StringBuilder.ExtractHexadecimal.cs │ │ ├── StringBuilder.ExtractKeyword.cs │ │ ├── StringBuilder.ExtractNumber.cs │ │ ├── StringBuilder.ExtractOperator.cs │ │ ├── StringBuilder.ExtractString.cs │ │ ├── StringBuilder.ExtractStringArobasDoubleQuote.cs │ │ ├── StringBuilder.ExtractStringArobasSingleQuote.cs │ │ ├── StringBuilder.ExtractStringDoubleQuote.cs │ │ ├── StringBuilder.ExtractStringSingleQuote.cs │ │ ├── StringBuilder.ExtractToken.cs │ │ ├── StringBuilder.ExtractTriviaToken.cs │ │ └── StringBuilder.Substring.cs │ ├── System.TimeSpan │ │ ├── TimeSpan.Ago.cs │ │ ├── TimeSpan.FromNow.cs │ │ ├── TimeSpan.UtcAgo.cs │ │ └── TimeSpan.UtcFromNow.cs │ ├── TArray │ │ ├── TArray.ClearAll.cs │ │ ├── TArray.ClearAt.cs │ │ └── TArray.ToDataTable.cs │ └── Z.Core.Test.csproj ├── Z.Data.Test │ ├── App.config │ ├── My.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── System.Collections.Generic.IDictionary[System.String,System.Object] │ │ ├── IDictionary[System.String,System.Object].ToDbParameters.cs │ │ └── IDictionary[System.String,System.Object].ToSqlParameters.cs │ ├── System.Data.Common.DbCommand │ │ ├── DbCommand.ExecuteEntities.cs │ │ ├── DbCommand.ExecuteEntity.cs │ │ ├── DbCommand.ExecuteExpandoObject.cs │ │ ├── DbCommand.ExecuteExpandoObjects.cs │ │ ├── DbCommand.ExecuteScalarAs.cs │ │ ├── DbCommand.ExecuteScalarAsOrDefault.cs │ │ ├── DbCommand.ExecuteScalarTo.cs │ │ └── DbCommand.ExecuteScalarToOrDefault.cs │ ├── System.Data.Common.DbConnection │ │ ├── DbConnection.ExecuteEntities.cs │ │ ├── DbConnection.ExecuteEntity.cs │ │ ├── DbConnection.ExecuteExpandoObject.cs │ │ ├── DbConnection.ExecuteExpandoObjects.cs │ │ ├── DbConnection.ExecuteNonQuery.cs │ │ ├── DbConnection.ExecuteReader.cs │ │ └── DbConnection.ExecuteScalar.cs │ ├── System.Data.Common.IDbConnection │ │ └── IDbConnection.EnsureOpen.cs │ ├── System.Data.ConnectionState │ │ ├── ConnectionState.In.cs │ │ └── ConnectionState.NotIn.cs │ ├── System.Data.DataColumnCollection │ │ └── DataColumnCollection.AddRange.cs │ ├── System.Data.DataRow │ │ ├── DataRow.ToEntity.cs │ │ └── DataRow.ToExpandoObject.cs │ ├── System.Data.DataTable │ │ ├── DataTable.FirstRow.cs │ │ ├── DataTable.ToEntities.cs │ │ └── DataTable.ToExpandoObjects.cs │ ├── System.Data.IDataReader │ │ ├── IDataReader.ContainsColumn.cs │ │ ├── IDataReader.ForEach.cs │ │ ├── IDataReader.GetColumnNames.cs │ │ ├── IDataReader.GetValueAs.cs │ │ ├── IDataReader.GetValueAsOrDefault.cs │ │ ├── IDataReader.GetValueTo.cs │ │ ├── IDataReader.GetValueToOrDefault.cs │ │ ├── IDataReader.IsDBNull.cs │ │ ├── IDataReader.ToDataTable.cs │ │ ├── IDataReader.ToEntities.cs │ │ ├── IDataReader.ToEntity.cs │ │ ├── IDataReader.ToExpandoObject.cs │ │ └── IDataReader.ToExpandoObjects.cs │ ├── System.Data.IDataRecord │ │ └── IDataRecord.IndexOf.cs │ ├── System.Data.IDbConnection │ │ ├── IDbConnection.IsInState.cs │ │ └── IDbConnection.StateIsWithin.cs │ ├── System.Data.SqlClient.SqlBulkCopy │ │ ├── SqlBulkCopy.GetConnection.cs │ │ └── SqlBulkCopy.GetTransaction.cs │ ├── System.Data.SqlClient.SqlCommand │ │ ├── SqlCommand.ExecuteDataSet.cs │ │ └── SqlCommand.ExecuteDataTable.cs │ ├── System.Data.SqlClient.SqlConnection │ │ ├── SqlConnection.ExecuteDataSet.cs │ │ ├── SqlConnection.ExecuteDataTable.cs │ │ ├── SqlConnection.ExecuteEntities.cs │ │ ├── SqlConnection.ExecuteEntity.cs │ │ ├── SqlConnection.ExecuteExpandoObject.cs │ │ ├── SqlConnection.ExecuteExpandoObjects.cs │ │ ├── SqlConnection.ExecuteNonQuery.cs │ │ ├── SqlConnection.ExecuteReader.cs │ │ ├── SqlConnection.ExecuteScalar.cs │ │ └── SqlConnection.ExecuteXmlReader.cs │ ├── System.Data.SqlClient.SqlParameterCollection │ │ └── SqlParameterCollection.AddRangeWithValue.cs │ └── Z.Data.Test.csproj ├── Z.Drawing.Test │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── System.Drawing.Image │ │ ├── Image.Cut.cs │ │ └── Image.Scale.cs │ └── Z.Drawing.Test.csproj ├── Z.IO.Test │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── System.Collections.Generic.IEnumerable[string] │ │ └── IEnumerable[string].PathCombine.cs │ ├── System.IO.DirectoryInfo │ │ ├── DirectoryInfo.Clear.cs │ │ ├── DirectoryInfo.CopyTo.cs │ │ ├── DirectoryInfo.CreateAllDirectories.cs │ │ ├── DirectoryInfo.CreateAllDirectoriesIfNotExists.cs │ │ ├── DirectoryInfo.DeleteDirectoriesWhere.cs │ │ ├── DirectoryInfo.DeleteFilesWhere.cs │ │ ├── DirectoryInfo.EnumerateDirectories.cs │ │ ├── DirectoryInfo.EnumerateFileSystemEntries.cs │ │ ├── DirectoryInfo.EnumerateFiles.cs │ │ ├── DirectoryInfo.GetDirectories.cs │ │ ├── DirectoryInfo.GetDirectoriesWhere.cs │ │ ├── DirectoryInfo.GetFileSystemEntries.cs │ │ ├── DirectoryInfo.GetFileSystemEntriesWhere.cs │ │ ├── DirectoryInfo.GetFiles.cs │ │ ├── DirectoryInfo.GetFilesWhere.cs │ │ ├── DirectoryInfo.GetSize.cs │ │ ├── DirectoryInfo.PathCombine.cs │ │ ├── DirectoryInfo.PathCombineDirectory.cs │ │ └── DirectoryInfo.PathCombineFile.cs │ ├── System.IO.FileInfo │ │ ├── FileInfo.AppendAllLines.cs │ │ ├── FileInfo.AppendAllText.cs │ │ ├── FileInfo.ChangeExtension.cs │ │ ├── FileInfo.CountLines.cs │ │ ├── FileInfo.CreateDirectory.cs │ │ ├── FileInfo.EnsureDirectoryExists.cs │ │ ├── FileInfo.GetDirectoryFullName.cs │ │ ├── FileInfo.GetDirectoryName.cs │ │ ├── FileInfo.GetFileNameWithoutExtension.cs │ │ ├── FileInfo.GetPathRoot.cs │ │ ├── FileInfo.HasExtension.cs │ │ ├── FileInfo.IsPathRooted.cs │ │ ├── FileInfo.ReadAllBytes.cs │ │ ├── FileInfo.ReadAllLines.cs │ │ ├── FileInfo.ReadAllText.cs │ │ ├── FileInfo.ReadLines.cs │ │ ├── FileInfo.ReadToEnd.cs │ │ ├── FileInfo.Rename.cs │ │ ├── FileInfo.RenameExtension.cs │ │ ├── FileInfo.RenameFileWithoutExtension.cs │ │ ├── FileInfo.WriteAllBytes.cs │ │ ├── FileInfo.WriteAllLines.cs │ │ └── FileInfo.WriteAllText.cs │ ├── System.IO.Stream │ │ ├── Stream.ReadToEnd.cs │ │ ├── Stream.ToByteArray.cs │ │ └── Stream.ToMD5Hash.cs │ ├── System.IO.StreamReader │ │ └── StreamReader.SkipLines.cs │ └── Z.IO.Test.csproj ├── Z.Net.Test │ ├── App.config │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── System.Net.Mail.MailMessage │ │ ├── MailMessage.Send.cs │ │ └── MailMessage.SendAsync.cs │ ├── System.Net.WebRequest │ │ └── WebRequest.GetResponseSafe.cs │ ├── System.Net.WebResponse │ │ ├── WebResponse.ReadToEnd.cs │ │ └── WebResponse.ReadToEndAndDispose.cs │ └── Z.Net.Test.csproj ├── Z.Reflection.Test │ ├── GetCustomAttribute │ │ ├── Object.GetCustomAttribute.cs │ │ ├── Object.GetCustomAttributeByFullName.cs │ │ ├── Object.GetCustomAttributeByName.cs │ │ ├── Object.GetCustomAttributeDescription.cs │ │ ├── Object.GetCustomAttributes.cs │ │ ├── Object.GetCustomAttributesByFullName.cs │ │ └── Object.GetCustomAttributesByName.cs │ ├── GetDeclaration │ │ ├── Constructor │ │ │ ├── GenericTypeConstructor.cs │ │ │ ├── InParameterModifierConstructor.cs │ │ │ ├── InternalConstructor.cs │ │ │ ├── OptionalParameterConstructor.cs │ │ │ ├── OptionalParameterModifierConstructor.cs │ │ │ ├── OutParameterConstructor.cs │ │ │ ├── OutParameterModifierConstructor.cs │ │ │ ├── ParamsParameterConstructor.cs │ │ │ ├── PrivateConstructor.cs │ │ │ ├── PublicConstructor.cs │ │ │ └── RefParameterConstructor.cs │ │ ├── Field │ │ │ ├── ConstField.cs │ │ │ ├── EventField.cs │ │ │ ├── InternalField.cs │ │ │ ├── PrivateField.cs │ │ │ ├── ProtectedField.cs │ │ │ ├── ProtectedInternalField.cs │ │ │ ├── PublicField.cs │ │ │ ├── ReadOnlyField.cs │ │ │ ├── StaticField.cs │ │ │ └── VolatileField.cs │ │ ├── Method │ │ │ ├── AbstractMethod.cs │ │ │ ├── ExtensionParameterMethod.cs │ │ │ ├── GenericMethod.cs │ │ │ ├── GenericTypeMethod.cs │ │ │ ├── InParameterModifierMethod.cs │ │ │ ├── InternalMethod.cs │ │ │ ├── OptionalParameterMethod.cs │ │ │ ├── OptionalParameterModifierMethod.cs │ │ │ ├── OutParameterMethod.cs │ │ │ ├── OutParameterModifierMethod.cs │ │ │ ├── OverrideMethod.cs │ │ │ ├── ParamsParameterMethod.cs │ │ │ ├── PrivateMethod.cs │ │ │ ├── ProtectedInternalMethod.cs │ │ │ ├── ProtectedMethod.cs │ │ │ ├── PublicMethod.cs │ │ │ ├── RefParameterMethod.cs │ │ │ ├── StaticMethod.cs │ │ │ └── VirtualMethod.cs │ │ ├── Property │ │ │ ├── AbstractProperty.cs │ │ │ ├── GenericIndexerProperty.cs │ │ │ ├── GenericProperty.cs │ │ │ ├── GetterProperty.cs │ │ │ ├── IndexerProperty.cs │ │ │ ├── InternalProperty.cs │ │ │ ├── OverrideProperty.cs │ │ │ ├── PrivateGetterPublicSetterProperty.cs │ │ │ ├── PrivateProperty.cs │ │ │ ├── ProtectedInternalProperty.cs │ │ │ ├── ProtectedProperty.cs │ │ │ ├── PublicGetterPrivateSetterProperty.cs │ │ │ ├── PublicProperty.cs │ │ │ ├── SetterProperty.cs │ │ │ ├── StaticProperty.cs │ │ │ └── VirtualProperty.cs │ │ └── Type │ │ │ ├── AbstractClass.cs │ │ │ ├── GenericClass.cs │ │ │ ├── GenericClassWithWhereClause.cs │ │ │ ├── IGenericInterfaceWithInParameter.cs │ │ │ ├── IGenericInterfaceWithOutParameter.cs │ │ │ ├── IPublicInterface.cs │ │ │ ├── InheritedClass.cs │ │ │ ├── InheritedClassAndInterface.cs │ │ │ ├── InternalClass.cs │ │ │ ├── PublicClass.cs │ │ │ └── StaticClass.cs │ ├── GetSignature │ │ ├── Constructor │ │ │ ├── GenericTypeConstructor.cs │ │ │ ├── InParameterModifierConstructor.cs │ │ │ ├── InternalConstructor.cs │ │ │ ├── OptionalParameterConstructor.cs │ │ │ ├── OptionalParameterModifierConstructor.cs │ │ │ ├── OutParameterConstructor.cs │ │ │ ├── OutParameterModifierConstructor.cs │ │ │ ├── ParamsParameterConstructor.cs │ │ │ ├── PrivateConstructor.cs │ │ │ ├── PublicConstructor.cs │ │ │ └── RefParameterConstructor.cs │ │ ├── Field │ │ │ ├── ConstField.cs │ │ │ ├── EventField.cs │ │ │ ├── InternalField.cs │ │ │ ├── PrivateField.cs │ │ │ ├── ProtectedField.cs │ │ │ ├── ProtectedInternalField.cs │ │ │ ├── PublicField.cs │ │ │ ├── ReadOnlyField.cs │ │ │ ├── StaticField.cs │ │ │ └── VolatileField.cs │ │ ├── Method │ │ │ ├── AbstractMethod.cs │ │ │ ├── ExtensionParameterMethod.cs │ │ │ ├── GenericMethod.cs │ │ │ ├── GenericTypeMethod.cs │ │ │ ├── InParameterModifierMethod.cs │ │ │ ├── InternalMethod.cs │ │ │ ├── OptionalParameterMethod.cs │ │ │ ├── OptionalParameterModifierMethod.cs │ │ │ ├── OutParameterMethod.cs │ │ │ ├── OutParameterModifierMethod.cs │ │ │ ├── OverrideMethod.cs │ │ │ ├── ParamsParameterMethod.cs │ │ │ ├── PrivateMethod.cs │ │ │ ├── ProtectedInternalMethod.cs │ │ │ ├── ProtectedMethod.cs │ │ │ ├── PublicMethod.cs │ │ │ ├── RefParameterMethod.cs │ │ │ ├── StaticMethod.cs │ │ │ └── VirtualMethod.cs │ │ ├── Property │ │ │ ├── AbstractProperty.cs │ │ │ ├── GenericIndexerProperty.cs │ │ │ ├── GenericProperty.cs │ │ │ ├── GetterProperty.cs │ │ │ ├── IndexerProperty.cs │ │ │ ├── InternalProperty.cs │ │ │ ├── OverrideProperty.cs │ │ │ ├── PrivateGetterPublicSetterProperty.cs │ │ │ ├── PrivateProperty.cs │ │ │ ├── ProtectedInternalProperty.cs │ │ │ ├── ProtectedProperty.cs │ │ │ ├── PublicGetterPrivateSetterProperty.cs │ │ │ ├── PublicProperty.cs │ │ │ ├── SetterProperty.cs │ │ │ ├── StaticProperty.cs │ │ │ └── VirtualProperty.cs │ │ └── Type │ │ │ ├── AbstractClass.cs │ │ │ ├── GenericClass.cs │ │ │ ├── GenericClassWithWhereClause.cs │ │ │ ├── IGenericInterfaceWithInParameter.cs │ │ │ ├── IGenericInterfaceWithOutParameter.cs │ │ │ ├── IPublicInterface.cs │ │ │ ├── InheritedClass.cs │ │ │ ├── InheritedClassAndInterface.cs │ │ │ ├── InternalClass.cs │ │ │ ├── PublicClass.cs │ │ │ └── StaticClass.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── System.Object │ │ ├── Object.GetFieldValue.cs │ │ ├── Object.GetProperty.cs │ │ ├── Object.IsTypeOrInheritsOf.cs │ │ ├── Object.SetFieldValue.cs │ │ └── Object.SetPropertyValue.cs │ ├── Z.Reflection.Test.csproj │ └── _Model │ │ ├── ConstructorModel.cs │ │ ├── FieldModel.cs │ │ ├── MethodModel.cs │ │ ├── PropertyModel.cs │ │ └── TypeModel.cs ├── Z.Serialization.Test │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── System.Object │ │ ├── Object.SerializeBinary.cs │ │ ├── Object.SerializeJavaScript.cs │ │ ├── Object.SerializeJson.cs │ │ └── Object.SerializeXml.cs │ ├── System.String │ │ ├── String.DeserializeBinary.cs │ │ ├── String.DeserializeJavaScript.cs │ │ ├── String.DeserializeJson.cs │ │ └── String.DeserializeXml.cs │ └── Z.Serialization.Test.csproj ├── Z.Web.Test │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── System.Web.HttpResponse │ │ ├── HttpResponse.Redirect.cs │ │ ├── HttpResponse.Reload.cs │ │ ├── HttpResponse.SendAttachment.cs │ │ └── HttpResponse.SetStatus.cs │ ├── System.Web.UI.Control │ │ ├── Control.FindControl.cs │ │ └── Control.FindControlRecursive.cs │ └── Z.Web.Test.csproj └── Z.Xml.Linq.Test │ ├── Properties │ └── AssemblyInfo.cs │ ├── System.Xml.Linq.XElement │ └── XElement.RemoveAllNamespaces.cs │ └── Z.Xml.Linq.Test.csproj └── tool ├── Z.ExtensionMethods.Tool.FixGeneratedVbNet ├── App.config ├── MainForm.Designer.cs ├── MainForm.cs ├── My.cs ├── Program.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings └── Z.ExtensionMethods.Tool.FixGeneratedVbNet.csproj ├── Z.ExtensionMethods.Tool.GenerateFramework ├── App.config ├── MainForm.Designer.cs ├── MainForm.cs ├── My.cs ├── Program.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── Z.ExtensionMethods.Tool.GenerateFramework.csproj └── packages.config └── empty.txt /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: [zzzprojects] 2 | custom: ["https://zzzprojects.com/contribute"] 3 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | [g]enerated/* 2 | [Bb]in/ 3 | [Oo]bj/ 4 | [Pp]ackages/ 5 | .vs/ 6 | *.suo 7 | *.user 8 | *.userprefs 9 | _ReSharper.* 10 | *.ReSharper.user 11 | *.resharper.user 12 | -------------------------------------------------------------------------------- /Z.ExtensionMethods.Lab2/packages.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | -------------------------------------------------------------------------------- /cheat-sheet/cheat-sheet.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/cheat-sheet/cheat-sheet.pdf -------------------------------------------------------------------------------- /dapper-plus-sponsor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/dapper-plus-sponsor.png -------------------------------------------------------------------------------- /entity-framework-extensions-sponsor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/entity-framework-extensions-sponsor.png -------------------------------------------------------------------------------- /lab/Z.ExtensionMethods.Lab/app.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /lab/empty.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/lab/empty.txt -------------------------------------------------------------------------------- /src (VB.NET)/empty.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src (VB.NET)/empty.txt -------------------------------------------------------------------------------- /src/Z.Compression/GZip/System.String/String.CompressGZip.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Compression/GZip/System.String/String.CompressGZip.cs -------------------------------------------------------------------------------- /src/Z.Core/System.Array/Array.ClearAll.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.Array/Array.ClearAll.cs -------------------------------------------------------------------------------- /src/Z.Core/System.Array/Array.WithinIndex.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.Array/Array.WithinIndex.cs -------------------------------------------------------------------------------- /src/Z.Core/System.Array/System.Array/Array.BinarySearch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.Array/System.Array/Array.BinarySearch.cs -------------------------------------------------------------------------------- /src/Z.Core/System.Array/System.Array/Array.Clear.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.Array/System.Array/Array.Clear.cs -------------------------------------------------------------------------------- /src/Z.Core/System.Array/System.Array/Array.Copy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.Array/System.Array/Array.Copy.cs -------------------------------------------------------------------------------- /src/Z.Core/System.Array/System.Array/Array.IndexOf.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.Array/System.Array/Array.IndexOf.cs -------------------------------------------------------------------------------- /src/Z.Core/System.Array/System.Array/Array.LastIndexOf.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.Array/System.Array/Array.LastIndexOf.cs -------------------------------------------------------------------------------- /src/Z.Core/System.Array/System.Array/Array.Reverse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.Array/System.Array/Array.Reverse.cs -------------------------------------------------------------------------------- /src/Z.Core/System.Array/System.Array/Array.Sort.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.Array/System.Array/Array.Sort.cs -------------------------------------------------------------------------------- /src/Z.Core/System.Array/System.Buffer/Array.BlockCopy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.Array/System.Buffer/Array.BlockCopy.cs -------------------------------------------------------------------------------- /src/Z.Core/System.Array/System.Buffer/Array.ByteLength.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.Array/System.Buffer/Array.ByteLength.cs -------------------------------------------------------------------------------- /src/Z.Core/System.Array/System.Buffer/Array.GetByte.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.Array/System.Buffer/Array.GetByte.cs -------------------------------------------------------------------------------- /src/Z.Core/System.Array/System.Buffer/Array.SetByte.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.Array/System.Buffer/Array.SetByte.cs -------------------------------------------------------------------------------- /src/Z.Core/System.Boolean/Boolean.IfFalse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.Boolean/Boolean.IfFalse.cs -------------------------------------------------------------------------------- /src/Z.Core/System.Boolean/Boolean.IfTrue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.Boolean/Boolean.IfTrue.cs -------------------------------------------------------------------------------- /src/Z.Core/System.Boolean/Boolean.ToBinary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.Boolean/Boolean.ToBinary.cs -------------------------------------------------------------------------------- /src/Z.Core/System.Boolean/Boolean.ToString.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.Boolean/Boolean.ToString.cs -------------------------------------------------------------------------------- /src/Z.Core/System.Byte/System.Math/Byte.Max.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.Byte/System.Math/Byte.Max.cs -------------------------------------------------------------------------------- /src/Z.Core/System.Byte/System.Math/Byte.Min.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.Byte/System.Math/Byte.Min.cs -------------------------------------------------------------------------------- /src/Z.Core/System.ByteArray/ByteArray.Resize.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.ByteArray/ByteArray.Resize.cs -------------------------------------------------------------------------------- /src/Z.Core/System.ByteArray/ByteArray.ToImage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.ByteArray/ByteArray.ToImage.cs -------------------------------------------------------------------------------- /src/Z.Core/System.ByteArray/ByteArray.ToMemoryStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.ByteArray/ByteArray.ToMemoryStream.cs -------------------------------------------------------------------------------- /src/Z.Core/System.Char/Char.Repeat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.Char/Char.Repeat.cs -------------------------------------------------------------------------------- /src/Z.Core/System.Char/Char.To.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.Char/Char.To.cs -------------------------------------------------------------------------------- /src/Z.Core/System.Char/System.Char/Char.ConvertToUtf32.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.Char/System.Char/Char.ConvertToUtf32.cs -------------------------------------------------------------------------------- /src/Z.Core/System.Char/System.Char/Char.GetNumericValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.Char/System.Char/Char.GetNumericValue.cs -------------------------------------------------------------------------------- /src/Z.Core/System.Char/System.Char/Char.IsControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.Char/System.Char/Char.IsControl.cs -------------------------------------------------------------------------------- /src/Z.Core/System.Char/System.Char/Char.IsDigit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.Char/System.Char/Char.IsDigit.cs -------------------------------------------------------------------------------- /src/Z.Core/System.Char/System.Char/Char.IsHighSurrogate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.Char/System.Char/Char.IsHighSurrogate.cs -------------------------------------------------------------------------------- /src/Z.Core/System.Char/System.Char/Char.IsLetter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.Char/System.Char/Char.IsLetter.cs -------------------------------------------------------------------------------- /src/Z.Core/System.Char/System.Char/Char.IsLetterOrDigit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.Char/System.Char/Char.IsLetterOrDigit.cs -------------------------------------------------------------------------------- /src/Z.Core/System.Char/System.Char/Char.IsLowSurrogate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.Char/System.Char/Char.IsLowSurrogate.cs -------------------------------------------------------------------------------- /src/Z.Core/System.Char/System.Char/Char.IsLower.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.Char/System.Char/Char.IsLower.cs -------------------------------------------------------------------------------- /src/Z.Core/System.Char/System.Char/Char.IsNumber.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.Char/System.Char/Char.IsNumber.cs -------------------------------------------------------------------------------- /src/Z.Core/System.Char/System.Char/Char.IsPunctuation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.Char/System.Char/Char.IsPunctuation.cs -------------------------------------------------------------------------------- /src/Z.Core/System.Char/System.Char/Char.IsSeparator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.Char/System.Char/Char.IsSeparator.cs -------------------------------------------------------------------------------- /src/Z.Core/System.Char/System.Char/Char.IsSurrogate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.Char/System.Char/Char.IsSurrogate.cs -------------------------------------------------------------------------------- /src/Z.Core/System.Char/System.Char/Char.IsSurrogatePair.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.Char/System.Char/Char.IsSurrogatePair.cs -------------------------------------------------------------------------------- /src/Z.Core/System.Char/System.Char/Char.IsSymbol.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.Char/System.Char/Char.IsSymbol.cs -------------------------------------------------------------------------------- /src/Z.Core/System.Char/System.Char/Char.IsUpper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.Char/System.Char/Char.IsUpper.cs -------------------------------------------------------------------------------- /src/Z.Core/System.Char/System.Char/Char.IsWhiteSpace.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.Char/System.Char/Char.IsWhiteSpace.cs -------------------------------------------------------------------------------- /src/Z.Core/System.Char/System.Char/Char.ToLower.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.Char/System.Char/Char.ToLower.cs -------------------------------------------------------------------------------- /src/Z.Core/System.Char/System.Char/Char.ToLowerInvariant.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.Char/System.Char/Char.ToLowerInvariant.cs -------------------------------------------------------------------------------- /src/Z.Core/System.Char/System.Char/Char.ToString.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.Char/System.Char/Char.ToString.cs -------------------------------------------------------------------------------- /src/Z.Core/System.Char/System.Char/Char.ToUpper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.Char/System.Char/Char.ToUpper.cs -------------------------------------------------------------------------------- /src/Z.Core/System.Char/System.Char/Char.ToUpperInvariant.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.Char/System.Char/Char.ToUpperInvariant.cs -------------------------------------------------------------------------------- /src/Z.Core/System.Char/_CoreObject/Char.In.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.Char/_CoreObject/Char.In.cs -------------------------------------------------------------------------------- /src/Z.Core/System.Char/_CoreObject/Char.NotIn.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.Char/_CoreObject/Char.NotIn.cs -------------------------------------------------------------------------------- /src/Z.Core/System.DateTime/DateTime.Age.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.DateTime/DateTime.Age.cs -------------------------------------------------------------------------------- /src/Z.Core/System.DateTime/DateTime.Elapsed.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.DateTime/DateTime.Elapsed.cs -------------------------------------------------------------------------------- /src/Z.Core/System.DateTime/DateTime.EndOfDay.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.DateTime/DateTime.EndOfDay.cs -------------------------------------------------------------------------------- /src/Z.Core/System.DateTime/DateTime.EndOfMonth.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.DateTime/DateTime.EndOfMonth.cs -------------------------------------------------------------------------------- /src/Z.Core/System.DateTime/DateTime.EndOfWeek.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.DateTime/DateTime.EndOfWeek.cs -------------------------------------------------------------------------------- /src/Z.Core/System.DateTime/DateTime.EndOfYear.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.DateTime/DateTime.EndOfYear.cs -------------------------------------------------------------------------------- /src/Z.Core/System.DateTime/DateTime.FirstDayOfWeek.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.DateTime/DateTime.FirstDayOfWeek.cs -------------------------------------------------------------------------------- /src/Z.Core/System.DateTime/DateTime.IsAfternoon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.DateTime/DateTime.IsAfternoon.cs -------------------------------------------------------------------------------- /src/Z.Core/System.DateTime/DateTime.IsDateEqual.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.DateTime/DateTime.IsDateEqual.cs -------------------------------------------------------------------------------- /src/Z.Core/System.DateTime/DateTime.IsFuture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.DateTime/DateTime.IsFuture.cs -------------------------------------------------------------------------------- /src/Z.Core/System.DateTime/DateTime.IsMorning.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.DateTime/DateTime.IsMorning.cs -------------------------------------------------------------------------------- /src/Z.Core/System.DateTime/DateTime.IsNow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.DateTime/DateTime.IsNow.cs -------------------------------------------------------------------------------- /src/Z.Core/System.DateTime/DateTime.IsPast.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.DateTime/DateTime.IsPast.cs -------------------------------------------------------------------------------- /src/Z.Core/System.DateTime/DateTime.IsTimeEqual.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.DateTime/DateTime.IsTimeEqual.cs -------------------------------------------------------------------------------- /src/Z.Core/System.DateTime/DateTime.IsToday.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.DateTime/DateTime.IsToday.cs -------------------------------------------------------------------------------- /src/Z.Core/System.DateTime/DateTime.IsWeekDay.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.DateTime/DateTime.IsWeekDay.cs -------------------------------------------------------------------------------- /src/Z.Core/System.DateTime/DateTime.IsWeekendDay.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.DateTime/DateTime.IsWeekendDay.cs -------------------------------------------------------------------------------- /src/Z.Core/System.DateTime/DateTime.LastDayOfWeek.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.DateTime/DateTime.LastDayOfWeek.cs -------------------------------------------------------------------------------- /src/Z.Core/System.DateTime/DateTime.SetTime.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.DateTime/DateTime.SetTime.cs -------------------------------------------------------------------------------- /src/Z.Core/System.DateTime/DateTime.StartOfDay.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.DateTime/DateTime.StartOfDay.cs -------------------------------------------------------------------------------- /src/Z.Core/System.DateTime/DateTime.StartOfMonth.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.DateTime/DateTime.StartOfMonth.cs -------------------------------------------------------------------------------- /src/Z.Core/System.DateTime/DateTime.StartOfWeek.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.DateTime/DateTime.StartOfWeek.cs -------------------------------------------------------------------------------- /src/Z.Core/System.DateTime/DateTime.StartOfYear.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.DateTime/DateTime.StartOfYear.cs -------------------------------------------------------------------------------- /src/Z.Core/System.DateTime/DateTime.ToEpochTimeSpan.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.DateTime/DateTime.ToEpochTimeSpan.cs -------------------------------------------------------------------------------- /src/Z.Core/System.DateTime/DateTime.Tomorrow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.DateTime/DateTime.Tomorrow.cs -------------------------------------------------------------------------------- /src/Z.Core/System.DateTime/DateTime.Yesterday.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.DateTime/DateTime.Yesterday.cs -------------------------------------------------------------------------------- /src/Z.Core/System.DateTime/_CoreObject/DateTime.Between.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.DateTime/_CoreObject/DateTime.Between.cs -------------------------------------------------------------------------------- /src/Z.Core/System.DateTime/_CoreObject/DateTime.In.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.DateTime/_CoreObject/DateTime.In.cs -------------------------------------------------------------------------------- /src/Z.Core/System.DateTime/_CoreObject/DateTime.InRange.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.DateTime/_CoreObject/DateTime.InRange.cs -------------------------------------------------------------------------------- /src/Z.Core/System.DateTime/_CoreObject/DateTime.NotIn.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.DateTime/_CoreObject/DateTime.NotIn.cs -------------------------------------------------------------------------------- /src/Z.Core/System.DateTimeOffset/DateTimeOffset.SetTime.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.DateTimeOffset/DateTimeOffset.SetTime.cs -------------------------------------------------------------------------------- /src/Z.Core/System.Decimal/Decimal.ToMoney.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.Decimal/Decimal.ToMoney.cs -------------------------------------------------------------------------------- /src/Z.Core/System.Decimal/System.Decimal/Decimal.Divide.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.Decimal/System.Decimal/Decimal.Divide.cs -------------------------------------------------------------------------------- /src/Z.Core/System.Decimal/System.Decimal/Decimal.GetBits.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.Decimal/System.Decimal/Decimal.GetBits.cs -------------------------------------------------------------------------------- /src/Z.Core/System.Decimal/System.Decimal/Decimal.Multiply.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.Decimal/System.Decimal/Decimal.Multiply.cs -------------------------------------------------------------------------------- /src/Z.Core/System.Decimal/System.Decimal/Decimal.Negate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.Decimal/System.Decimal/Decimal.Negate.cs -------------------------------------------------------------------------------- /src/Z.Core/System.Decimal/System.Decimal/Decimal.Subtract.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.Decimal/System.Decimal/Decimal.Subtract.cs -------------------------------------------------------------------------------- /src/Z.Core/System.Decimal/System.Decimal/Decimal.ToByte.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.Decimal/System.Decimal/Decimal.ToByte.cs -------------------------------------------------------------------------------- /src/Z.Core/System.Decimal/System.Decimal/Decimal.ToDouble.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.Decimal/System.Decimal/Decimal.ToDouble.cs -------------------------------------------------------------------------------- /src/Z.Core/System.Decimal/System.Decimal/Decimal.ToInt16.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.Decimal/System.Decimal/Decimal.ToInt16.cs -------------------------------------------------------------------------------- /src/Z.Core/System.Decimal/System.Decimal/Decimal.ToInt32.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.Decimal/System.Decimal/Decimal.ToInt32.cs -------------------------------------------------------------------------------- /src/Z.Core/System.Decimal/System.Decimal/Decimal.ToInt64.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.Decimal/System.Decimal/Decimal.ToInt64.cs -------------------------------------------------------------------------------- /src/Z.Core/System.Decimal/System.Decimal/Decimal.ToSByte.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.Decimal/System.Decimal/Decimal.ToSByte.cs -------------------------------------------------------------------------------- /src/Z.Core/System.Decimal/System.Decimal/Decimal.ToSingle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.Decimal/System.Decimal/Decimal.ToSingle.cs -------------------------------------------------------------------------------- /src/Z.Core/System.Decimal/System.Decimal/Decimal.ToUInt16.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.Decimal/System.Decimal/Decimal.ToUInt16.cs -------------------------------------------------------------------------------- /src/Z.Core/System.Decimal/System.Decimal/Decimal.ToUInt32.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.Decimal/System.Decimal/Decimal.ToUInt32.cs -------------------------------------------------------------------------------- /src/Z.Core/System.Decimal/System.Decimal/Decimal.ToUInt64.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.Decimal/System.Decimal/Decimal.ToUInt64.cs -------------------------------------------------------------------------------- /src/Z.Core/System.Decimal/System.Math/Decimal.Abs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.Decimal/System.Math/Decimal.Abs.cs -------------------------------------------------------------------------------- /src/Z.Core/System.Decimal/System.Math/Decimal.Ceiling.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.Decimal/System.Math/Decimal.Ceiling.cs -------------------------------------------------------------------------------- /src/Z.Core/System.Decimal/System.Math/Decimal.Floor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.Decimal/System.Math/Decimal.Floor.cs -------------------------------------------------------------------------------- /src/Z.Core/System.Decimal/System.Math/Decimal.Max.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.Decimal/System.Math/Decimal.Max.cs -------------------------------------------------------------------------------- /src/Z.Core/System.Decimal/System.Math/Decimal.Min.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.Decimal/System.Math/Decimal.Min.cs -------------------------------------------------------------------------------- /src/Z.Core/System.Decimal/System.Math/Decimal.Round.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.Decimal/System.Math/Decimal.Round.cs -------------------------------------------------------------------------------- /src/Z.Core/System.Decimal/System.Math/Decimal.Sign.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.Decimal/System.Math/Decimal.Sign.cs -------------------------------------------------------------------------------- /src/Z.Core/System.Decimal/System.Math/Decimal.Truncate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.Decimal/System.Math/Decimal.Truncate.cs -------------------------------------------------------------------------------- /src/Z.Core/System.Decimal/_CoreObject/Decimal.Between.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.Decimal/_CoreObject/Decimal.Between.cs -------------------------------------------------------------------------------- /src/Z.Core/System.Decimal/_CoreObject/Decimal.In.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.Decimal/_CoreObject/Decimal.In.cs -------------------------------------------------------------------------------- /src/Z.Core/System.Decimal/_CoreObject/Decimal.InRange.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.Decimal/_CoreObject/Decimal.InRange.cs -------------------------------------------------------------------------------- /src/Z.Core/System.Decimal/_CoreObject/Decimal.NotIn.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.Decimal/_CoreObject/Decimal.NotIn.cs -------------------------------------------------------------------------------- /src/Z.Core/System.Double/Double.ToMoney.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.Double/Double.ToMoney.cs -------------------------------------------------------------------------------- /src/Z.Core/System.Double/System.Double/Double.IsInfinity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.Double/System.Double/Double.IsInfinity.cs -------------------------------------------------------------------------------- /src/Z.Core/System.Double/System.Double/Double.IsNaN.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.Double/System.Double/Double.IsNaN.cs -------------------------------------------------------------------------------- /src/Z.Core/System.Double/System.Math/Double.Abs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.Double/System.Math/Double.Abs.cs -------------------------------------------------------------------------------- /src/Z.Core/System.Double/System.Math/Double.Acos.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.Double/System.Math/Double.Acos.cs -------------------------------------------------------------------------------- /src/Z.Core/System.Double/System.Math/Double.Asin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.Double/System.Math/Double.Asin.cs -------------------------------------------------------------------------------- /src/Z.Core/System.Double/System.Math/Double.Atan.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.Double/System.Math/Double.Atan.cs -------------------------------------------------------------------------------- /src/Z.Core/System.Double/System.Math/Double.Atan2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.Double/System.Math/Double.Atan2.cs -------------------------------------------------------------------------------- /src/Z.Core/System.Double/System.Math/Double.Ceiling.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.Double/System.Math/Double.Ceiling.cs -------------------------------------------------------------------------------- /src/Z.Core/System.Double/System.Math/Double.Cos.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.Double/System.Math/Double.Cos.cs -------------------------------------------------------------------------------- /src/Z.Core/System.Double/System.Math/Double.Cosh.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.Double/System.Math/Double.Cosh.cs -------------------------------------------------------------------------------- /src/Z.Core/System.Double/System.Math/Double.Exp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.Double/System.Math/Double.Exp.cs -------------------------------------------------------------------------------- /src/Z.Core/System.Double/System.Math/Double.Floor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.Double/System.Math/Double.Floor.cs -------------------------------------------------------------------------------- /src/Z.Core/System.Double/System.Math/Double.IEEERemainder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.Double/System.Math/Double.IEEERemainder.cs -------------------------------------------------------------------------------- /src/Z.Core/System.Double/System.Math/Double.Log.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.Double/System.Math/Double.Log.cs -------------------------------------------------------------------------------- /src/Z.Core/System.Double/System.Math/Double.Log10.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.Double/System.Math/Double.Log10.cs -------------------------------------------------------------------------------- /src/Z.Core/System.Double/System.Math/Double.Max.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.Double/System.Math/Double.Max.cs -------------------------------------------------------------------------------- /src/Z.Core/System.Double/System.Math/Double.Min.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.Double/System.Math/Double.Min.cs -------------------------------------------------------------------------------- /src/Z.Core/System.Double/System.Math/Double.Pow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.Double/System.Math/Double.Pow.cs -------------------------------------------------------------------------------- /src/Z.Core/System.Double/System.Math/Double.Round.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.Double/System.Math/Double.Round.cs -------------------------------------------------------------------------------- /src/Z.Core/System.Double/System.Math/Double.Sign.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.Double/System.Math/Double.Sign.cs -------------------------------------------------------------------------------- /src/Z.Core/System.Double/System.Math/Double.Sin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.Double/System.Math/Double.Sin.cs -------------------------------------------------------------------------------- /src/Z.Core/System.Double/System.Math/Double.Sinh.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.Double/System.Math/Double.Sinh.cs -------------------------------------------------------------------------------- /src/Z.Core/System.Double/System.Math/Double.Sqrt.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.Double/System.Math/Double.Sqrt.cs -------------------------------------------------------------------------------- /src/Z.Core/System.Double/System.Math/Double.Tan.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.Double/System.Math/Double.Tan.cs -------------------------------------------------------------------------------- /src/Z.Core/System.Double/System.Math/Double.Tanh.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.Double/System.Math/Double.Tanh.cs -------------------------------------------------------------------------------- /src/Z.Core/System.Double/System.Math/Double.Truncate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.Double/System.Math/Double.Truncate.cs -------------------------------------------------------------------------------- /src/Z.Core/System.Double/System.TimeSpan/Double.FromDays.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.Double/System.TimeSpan/Double.FromDays.cs -------------------------------------------------------------------------------- /src/Z.Core/System.Double/System.TimeSpan/Double.FromHours.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.Double/System.TimeSpan/Double.FromHours.cs -------------------------------------------------------------------------------- /src/Z.Core/System.Double/_CoreObject/Double.Between.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.Double/_CoreObject/Double.Between.cs -------------------------------------------------------------------------------- /src/Z.Core/System.Double/_CoreObject/Double.In.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.Double/_CoreObject/Double.In.cs -------------------------------------------------------------------------------- /src/Z.Core/System.Double/_CoreObject/Double.InRange.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.Double/_CoreObject/Double.InRange.cs -------------------------------------------------------------------------------- /src/Z.Core/System.Double/_CoreObject/Double.NotIn.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.Double/_CoreObject/Double.NotIn.cs -------------------------------------------------------------------------------- /src/Z.Core/System.Enum/Enum.GetCustomAttributeDescription.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.Enum/Enum.GetCustomAttributeDescription.cs -------------------------------------------------------------------------------- /src/Z.Core/System.Enum/Enum.In.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.Enum/Enum.In.cs -------------------------------------------------------------------------------- /src/Z.Core/System.Enum/Enum.NotIn.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.Enum/Enum.NotIn.cs -------------------------------------------------------------------------------- /src/Z.Core/System.Environment/SpecialFolder.GetFolderPath.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.Environment/SpecialFolder.GetFolderPath.cs -------------------------------------------------------------------------------- /src/Z.Core/System.EventHandler/EventHandler.RaiseEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.EventHandler/EventHandler.RaiseEvent.cs -------------------------------------------------------------------------------- /src/Z.Core/System.Guid/Guid.IsEmpty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.Guid/Guid.IsEmpty.cs -------------------------------------------------------------------------------- /src/Z.Core/System.Guid/Guid.IsNotEmpty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.Guid/Guid.IsNotEmpty.cs -------------------------------------------------------------------------------- /src/Z.Core/System.Guid/_CoreObject/Guid.In.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.Guid/_CoreObject/Guid.In.cs -------------------------------------------------------------------------------- /src/Z.Core/System.Guid/_CoreObject/Guid.NotIn.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.Guid/_CoreObject/Guid.NotIn.cs -------------------------------------------------------------------------------- /src/Z.Core/System.Int16/GenericInt/Int16.Days.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.Int16/GenericInt/Int16.Days.cs -------------------------------------------------------------------------------- /src/Z.Core/System.Int16/GenericInt/Int16.FactorOf.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.Int16/GenericInt/Int16.FactorOf.cs -------------------------------------------------------------------------------- /src/Z.Core/System.Int16/GenericInt/Int16.Hours.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.Int16/GenericInt/Int16.Hours.cs -------------------------------------------------------------------------------- /src/Z.Core/System.Int16/GenericInt/Int16.IsEven.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.Int16/GenericInt/Int16.IsEven.cs -------------------------------------------------------------------------------- /src/Z.Core/System.Int16/GenericInt/Int16.IsMultipleOf.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.Int16/GenericInt/Int16.IsMultipleOf.cs -------------------------------------------------------------------------------- /src/Z.Core/System.Int16/GenericInt/Int16.IsOdd.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.Int16/GenericInt/Int16.IsOdd.cs -------------------------------------------------------------------------------- /src/Z.Core/System.Int16/GenericInt/Int16.IsPrime.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.Int16/GenericInt/Int16.IsPrime.cs -------------------------------------------------------------------------------- /src/Z.Core/System.Int16/GenericInt/Int16.Milliseconds.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.Int16/GenericInt/Int16.Milliseconds.cs -------------------------------------------------------------------------------- /src/Z.Core/System.Int16/GenericInt/Int16.Minutes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.Int16/GenericInt/Int16.Minutes.cs -------------------------------------------------------------------------------- /src/Z.Core/System.Int16/GenericInt/Int16.Seconds.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.Int16/GenericInt/Int16.Seconds.cs -------------------------------------------------------------------------------- /src/Z.Core/System.Int16/GenericInt/Int16.Weeks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.Int16/GenericInt/Int16.Weeks.cs -------------------------------------------------------------------------------- /src/Z.Core/System.Int16/System.Math/Int16.Abs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.Int16/System.Math/Int16.Abs.cs -------------------------------------------------------------------------------- /src/Z.Core/System.Int16/System.Math/Int16.Max.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.Int16/System.Math/Int16.Max.cs -------------------------------------------------------------------------------- /src/Z.Core/System.Int16/System.Math/Int16.Min.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.Int16/System.Math/Int16.Min.cs -------------------------------------------------------------------------------- /src/Z.Core/System.Int16/System.Math/Int16.Sign.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.Int16/System.Math/Int16.Sign.cs -------------------------------------------------------------------------------- /src/Z.Core/System.Int16/_CoreObject/Int16.Between.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.Int16/_CoreObject/Int16.Between.cs -------------------------------------------------------------------------------- /src/Z.Core/System.Int16/_CoreObject/Int16.In.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.Int16/_CoreObject/Int16.In.cs -------------------------------------------------------------------------------- /src/Z.Core/System.Int16/_CoreObject/Int16.InRange.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.Int16/_CoreObject/Int16.InRange.cs -------------------------------------------------------------------------------- /src/Z.Core/System.Int16/_CoreObject/Int16.NotIn.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.Int16/_CoreObject/Int16.NotIn.cs -------------------------------------------------------------------------------- /src/Z.Core/System.Int32/GenericInt/Int32.Days.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.Int32/GenericInt/Int32.Days.cs -------------------------------------------------------------------------------- /src/Z.Core/System.Int32/GenericInt/Int32.FactorOf.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.Int32/GenericInt/Int32.FactorOf.cs -------------------------------------------------------------------------------- /src/Z.Core/System.Int32/GenericInt/Int32.Hours.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.Int32/GenericInt/Int32.Hours.cs -------------------------------------------------------------------------------- /src/Z.Core/System.Int32/GenericInt/Int32.IsEven.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.Int32/GenericInt/Int32.IsEven.cs -------------------------------------------------------------------------------- /src/Z.Core/System.Int32/GenericInt/Int32.IsMultipleOf.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.Int32/GenericInt/Int32.IsMultipleOf.cs -------------------------------------------------------------------------------- /src/Z.Core/System.Int32/GenericInt/Int32.IsOdd.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.Int32/GenericInt/Int32.IsOdd.cs -------------------------------------------------------------------------------- /src/Z.Core/System.Int32/GenericInt/Int32.IsPrime.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.Int32/GenericInt/Int32.IsPrime.cs -------------------------------------------------------------------------------- /src/Z.Core/System.Int32/GenericInt/Int32.Milliseconds.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.Int32/GenericInt/Int32.Milliseconds.cs -------------------------------------------------------------------------------- /src/Z.Core/System.Int32/GenericInt/Int32.Minutes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.Int32/GenericInt/Int32.Minutes.cs -------------------------------------------------------------------------------- /src/Z.Core/System.Int32/GenericInt/Int32.Seconds.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.Int32/GenericInt/Int32.Seconds.cs -------------------------------------------------------------------------------- /src/Z.Core/System.Int32/GenericInt/Int32.Weeks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.Int32/GenericInt/Int32.Weeks.cs -------------------------------------------------------------------------------- /src/Z.Core/System.Int32/System.DateTime/Int32.DaysInMonth.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.Int32/System.DateTime/Int32.DaysInMonth.cs -------------------------------------------------------------------------------- /src/Z.Core/System.Int32/System.DateTime/Int32.IsLeapYear.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.Int32/System.DateTime/Int32.IsLeapYear.cs -------------------------------------------------------------------------------- /src/Z.Core/System.Int32/System.Math/Int32.Abs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.Int32/System.Math/Int32.Abs.cs -------------------------------------------------------------------------------- /src/Z.Core/System.Int32/System.Math/Int32.BigMul.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.Int32/System.Math/Int32.BigMul.cs -------------------------------------------------------------------------------- /src/Z.Core/System.Int32/System.Math/Int32.DivRem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.Int32/System.Math/Int32.DivRem.cs -------------------------------------------------------------------------------- /src/Z.Core/System.Int32/System.Math/Int32.Max.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.Int32/System.Math/Int32.Max.cs -------------------------------------------------------------------------------- /src/Z.Core/System.Int32/System.Math/Int32.Min.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.Int32/System.Math/Int32.Min.cs -------------------------------------------------------------------------------- /src/Z.Core/System.Int32/System.Math/Int32.Sign.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.Int32/System.Math/Int32.Sign.cs -------------------------------------------------------------------------------- /src/Z.Core/System.Int32/_CoreObject/Int32.Between.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.Int32/_CoreObject/Int32.Between.cs -------------------------------------------------------------------------------- /src/Z.Core/System.Int32/_CoreObject/Int32.In.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.Int32/_CoreObject/Int32.In.cs -------------------------------------------------------------------------------- /src/Z.Core/System.Int32/_CoreObject/Int32.InRange.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.Int32/_CoreObject/Int32.InRange.cs -------------------------------------------------------------------------------- /src/Z.Core/System.Int32/_CoreObject/Int32.NotIn.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.Int32/_CoreObject/Int32.NotIn.cs -------------------------------------------------------------------------------- /src/Z.Core/System.Int64/GenericInt/Int64.Days.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.Int64/GenericInt/Int64.Days.cs -------------------------------------------------------------------------------- /src/Z.Core/System.Int64/GenericInt/Int64.FactorOf.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.Int64/GenericInt/Int64.FactorOf.cs -------------------------------------------------------------------------------- /src/Z.Core/System.Int64/GenericInt/Int64.Hours.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.Int64/GenericInt/Int64.Hours.cs -------------------------------------------------------------------------------- /src/Z.Core/System.Int64/GenericInt/Int64.IsEven.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.Int64/GenericInt/Int64.IsEven.cs -------------------------------------------------------------------------------- /src/Z.Core/System.Int64/GenericInt/Int64.IsMultipleOf.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.Int64/GenericInt/Int64.IsMultipleOf.cs -------------------------------------------------------------------------------- /src/Z.Core/System.Int64/GenericInt/Int64.IsOdd.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.Int64/GenericInt/Int64.IsOdd.cs -------------------------------------------------------------------------------- /src/Z.Core/System.Int64/GenericInt/Int64.IsPrime.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.Int64/GenericInt/Int64.IsPrime.cs -------------------------------------------------------------------------------- /src/Z.Core/System.Int64/GenericInt/Int64.Milliseconds.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.Int64/GenericInt/Int64.Milliseconds.cs -------------------------------------------------------------------------------- /src/Z.Core/System.Int64/GenericInt/Int64.Minutes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.Int64/GenericInt/Int64.Minutes.cs -------------------------------------------------------------------------------- /src/Z.Core/System.Int64/GenericInt/Int64.Seconds.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.Int64/GenericInt/Int64.Seconds.cs -------------------------------------------------------------------------------- /src/Z.Core/System.Int64/GenericInt/Int64.Weeks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.Int64/GenericInt/Int64.Weeks.cs -------------------------------------------------------------------------------- /src/Z.Core/System.Int64/System.DateTime/Int64.FromBinary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.Int64/System.DateTime/Int64.FromBinary.cs -------------------------------------------------------------------------------- /src/Z.Core/System.Int64/System.Math/Int64.Abs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.Int64/System.Math/Int64.Abs.cs -------------------------------------------------------------------------------- /src/Z.Core/System.Int64/System.Math/Int64.DivRem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.Int64/System.Math/Int64.DivRem.cs -------------------------------------------------------------------------------- /src/Z.Core/System.Int64/System.Math/Int64.Max.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.Int64/System.Math/Int64.Max.cs -------------------------------------------------------------------------------- /src/Z.Core/System.Int64/System.Math/Int64.Min.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.Int64/System.Math/Int64.Min.cs -------------------------------------------------------------------------------- /src/Z.Core/System.Int64/System.Math/Int64.Sign.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.Int64/System.Math/Int64.Sign.cs -------------------------------------------------------------------------------- /src/Z.Core/System.Int64/System.TimeSpan/Int64.FromTicks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.Int64/System.TimeSpan/Int64.FromTicks.cs -------------------------------------------------------------------------------- /src/Z.Core/System.Int64/_CoreObject/Int64.Between.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.Int64/_CoreObject/Int64.Between.cs -------------------------------------------------------------------------------- /src/Z.Core/System.Int64/_CoreObject/Int64.In.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.Int64/_CoreObject/Int64.In.cs -------------------------------------------------------------------------------- /src/Z.Core/System.Int64/_CoreObject/Int64.InRange.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.Int64/_CoreObject/Int64.InRange.cs -------------------------------------------------------------------------------- /src/Z.Core/System.Int64/_CoreObject/Int64.NotIn.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.Int64/_CoreObject/Int64.NotIn.cs -------------------------------------------------------------------------------- /src/Z.Core/System.Object/Casting/Object.As.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.Object/Casting/Object.As.cs -------------------------------------------------------------------------------- /src/Z.Core/System.Object/Casting/Object.AsOrDefault.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.Object/Casting/Object.AsOrDefault.cs -------------------------------------------------------------------------------- /src/Z.Core/System.Object/Casting/Object.IsAssignableFrom.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.Object/Casting/Object.IsAssignableFrom.cs -------------------------------------------------------------------------------- /src/Z.Core/System.Object/Chaining/Object.Chain.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.Object/Chaining/Object.Chain.cs -------------------------------------------------------------------------------- /src/Z.Core/System.Object/Cloning/Object.DeepClone.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.Object/Cloning/Object.DeepClone.cs -------------------------------------------------------------------------------- /src/Z.Core/System.Object/Cloning/Object.ShallowCopy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.Object/Cloning/Object.ShallowCopy.cs -------------------------------------------------------------------------------- /src/Z.Core/System.Object/Convert/Object.ChangeType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.Object/Convert/Object.ChangeType.cs -------------------------------------------------------------------------------- /src/Z.Core/System.Object/Convert/Object.GetTypeCode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.Object/Convert/Object.GetTypeCode.cs -------------------------------------------------------------------------------- /src/Z.Core/System.Object/Convert/Object.To.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.Object/Convert/Object.To.cs -------------------------------------------------------------------------------- /src/Z.Core/System.Object/Convert/Object.ToOrDefault.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.Object/Convert/Object.ToOrDefault.cs -------------------------------------------------------------------------------- /src/Z.Core/System.Object/Utility/Object.Coalesce.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.Object/Utility/Object.Coalesce.cs -------------------------------------------------------------------------------- /src/Z.Core/System.Object/Utility/Object.CoalesceOrDefault.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.Object/Utility/Object.CoalesceOrDefault.cs -------------------------------------------------------------------------------- /src/Z.Core/System.Object/Utility/Object.GetValueOrDefault.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.Object/Utility/Object.GetValueOrDefault.cs -------------------------------------------------------------------------------- /src/Z.Core/System.Object/Utility/Object.IfNotNull.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.Object/Utility/Object.IfNotNull.cs -------------------------------------------------------------------------------- /src/Z.Core/System.Object/Utility/Object.NullIf.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.Object/Utility/Object.NullIf.cs -------------------------------------------------------------------------------- /src/Z.Core/System.Object/Utility/Object.NullIfEquals.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.Object/Utility/Object.NullIfEquals.cs -------------------------------------------------------------------------------- /src/Z.Core/System.Object/Utility/Object.NullIfEqualsAny.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.Object/Utility/Object.NullIfEqualsAny.cs -------------------------------------------------------------------------------- /src/Z.Core/System.Object/Utility/Object.ToStringSafe.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.Object/Utility/Object.ToStringSafe.cs -------------------------------------------------------------------------------- /src/Z.Core/System.Object/Utility/Object.Try.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.Object/Utility/Object.Try.cs -------------------------------------------------------------------------------- /src/Z.Core/System.Object/ValueComparison/Object.Between.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.Object/ValueComparison/Object.Between.cs -------------------------------------------------------------------------------- /src/Z.Core/System.Object/ValueComparison/Object.In.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.Object/ValueComparison/Object.In.cs -------------------------------------------------------------------------------- /src/Z.Core/System.Object/ValueComparison/Object.InRange.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.Object/ValueComparison/Object.InRange.cs -------------------------------------------------------------------------------- /src/Z.Core/System.Object/ValueComparison/Object.IsDBNull.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.Object/ValueComparison/Object.IsDBNull.cs -------------------------------------------------------------------------------- /src/Z.Core/System.Object/ValueComparison/Object.IsDefault.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.Object/ValueComparison/Object.IsDefault.cs -------------------------------------------------------------------------------- /src/Z.Core/System.Object/ValueComparison/Object.IsNotNull.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.Object/ValueComparison/Object.IsNotNull.cs -------------------------------------------------------------------------------- /src/Z.Core/System.Object/ValueComparison/Object.IsNull.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.Object/ValueComparison/Object.IsNull.cs -------------------------------------------------------------------------------- /src/Z.Core/System.Object/ValueComparison/Object.NotIn.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.Object/ValueComparison/Object.NotIn.cs -------------------------------------------------------------------------------- /src/Z.Core/System.Random/Random.CoinToss.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.Random/Random.CoinToss.cs -------------------------------------------------------------------------------- /src/Z.Core/System.Random/Random.OneOf.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.Random/Random.OneOf.cs -------------------------------------------------------------------------------- /src/Z.Core/System.SByte/System.Math/SByte.Abs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.SByte/System.Math/SByte.Abs.cs -------------------------------------------------------------------------------- /src/Z.Core/System.SByte/System.Math/SByte.Max.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.SByte/System.Math/SByte.Max.cs -------------------------------------------------------------------------------- /src/Z.Core/System.SByte/System.Math/SByte.Min.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.SByte/System.Math/SByte.Min.cs -------------------------------------------------------------------------------- /src/Z.Core/System.SByte/System.Math/SByte.Sign.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.SByte/System.Math/SByte.Sign.cs -------------------------------------------------------------------------------- /src/Z.Core/System.SByte/_CoreObject/SByte.In.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.SByte/_CoreObject/SByte.In.cs -------------------------------------------------------------------------------- /src/Z.Core/System.SByte/_CoreObject/SByte.NotIn.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.SByte/_CoreObject/SByte.NotIn.cs -------------------------------------------------------------------------------- /src/Z.Core/System.Single/System.Math/Single.Abs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.Single/System.Math/Single.Abs.cs -------------------------------------------------------------------------------- /src/Z.Core/System.Single/System.Math/Single.Max.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.Single/System.Math/Single.Max.cs -------------------------------------------------------------------------------- /src/Z.Core/System.Single/System.Math/Single.Min.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.Single/System.Math/Single.Min.cs -------------------------------------------------------------------------------- /src/Z.Core/System.Single/System.Math/Single.Sign.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.Single/System.Math/Single.Sign.cs -------------------------------------------------------------------------------- /src/Z.Core/System.Single/System.Single/Single.IsInfinity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.Single/System.Single/Single.IsInfinity.cs -------------------------------------------------------------------------------- /src/Z.Core/System.Single/System.Single/Single.IsNaN.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.Single/System.Single/Single.IsNaN.cs -------------------------------------------------------------------------------- /src/Z.Core/System.Single/_CoreObject/Single.Between.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.Single/_CoreObject/Single.Between.cs -------------------------------------------------------------------------------- /src/Z.Core/System.Single/_CoreObject/Single.In.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.Single/_CoreObject/Single.In.cs -------------------------------------------------------------------------------- /src/Z.Core/System.Single/_CoreObject/Single.InRange.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.Single/_CoreObject/Single.InRange.cs -------------------------------------------------------------------------------- /src/Z.Core/System.Single/_CoreObject/Single.NotIn.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.Single/_CoreObject/Single.NotIn.cs -------------------------------------------------------------------------------- /src/Z.Core/System.String/String.Br2Nl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.String/String.Br2Nl.cs -------------------------------------------------------------------------------- /src/Z.Core/System.String/String.ConcatWith.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.String/String.ConcatWith.cs -------------------------------------------------------------------------------- /src/Z.Core/System.String/String.Concatenate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.String/String.Concatenate.cs -------------------------------------------------------------------------------- /src/Z.Core/System.String/String.Contains.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.String/String.Contains.cs -------------------------------------------------------------------------------- /src/Z.Core/System.String/String.ContainsAll.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.String/String.ContainsAll.cs -------------------------------------------------------------------------------- /src/Z.Core/System.String/String.ContainsAny.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.String/String.ContainsAny.cs -------------------------------------------------------------------------------- /src/Z.Core/System.String/String.DecodeBase64.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.String/String.DecodeBase64.cs -------------------------------------------------------------------------------- /src/Z.Core/System.String/String.DecryptRSA.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.String/String.DecryptRSA.cs -------------------------------------------------------------------------------- /src/Z.Core/System.String/String.EncodeBase64.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.String/String.EncodeBase64.cs -------------------------------------------------------------------------------- /src/Z.Core/System.String/String.EncryptRSA.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.String/String.EncryptRSA.cs -------------------------------------------------------------------------------- /src/Z.Core/System.String/String.EqualsIgnoreCase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.String/String.EqualsIgnoreCase.cs -------------------------------------------------------------------------------- /src/Z.Core/System.String/String.EscapeXml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.String/String.EscapeXml.cs -------------------------------------------------------------------------------- /src/Z.Core/System.String/String.Extract.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.String/String.Extract.cs -------------------------------------------------------------------------------- /src/Z.Core/System.String/String.ExtractLetter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.String/String.ExtractLetter.cs -------------------------------------------------------------------------------- /src/Z.Core/System.String/String.ExtractNumber.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.String/String.ExtractNumber.cs -------------------------------------------------------------------------------- /src/Z.Core/System.String/String.FormatWith.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.String/String.FormatWith.cs -------------------------------------------------------------------------------- /src/Z.Core/System.String/String.GetAfter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.String/String.GetAfter.cs -------------------------------------------------------------------------------- /src/Z.Core/System.String/String.GetBefore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.String/String.GetBefore.cs -------------------------------------------------------------------------------- /src/Z.Core/System.String/String.GetBetween.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.String/String.GetBetween.cs -------------------------------------------------------------------------------- /src/Z.Core/System.String/String.IfEmpty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.String/String.IfEmpty.cs -------------------------------------------------------------------------------- /src/Z.Core/System.String/String.IsAlpha.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.String/String.IsAlpha.cs -------------------------------------------------------------------------------- /src/Z.Core/System.String/String.IsAlphaNumeric.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.String/String.IsAlphaNumeric.cs -------------------------------------------------------------------------------- /src/Z.Core/System.String/String.IsEmpty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.String/String.IsEmpty.cs -------------------------------------------------------------------------------- /src/Z.Core/System.String/String.IsLike.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.String/String.IsLike.cs -------------------------------------------------------------------------------- /src/Z.Core/System.String/String.IsNotEmpty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.String/String.IsNotEmpty.cs -------------------------------------------------------------------------------- /src/Z.Core/System.String/String.IsNotNullOrEmpty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.String/String.IsNotNullOrEmpty.cs -------------------------------------------------------------------------------- /src/Z.Core/System.String/String.IsNotNullOrWhiteSpace.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.String/String.IsNotNullOrWhiteSpace.cs -------------------------------------------------------------------------------- /src/Z.Core/System.String/String.IsNullOrEmpty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.String/String.IsNullOrEmpty.cs -------------------------------------------------------------------------------- /src/Z.Core/System.String/String.IsNumeric.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.String/String.IsNumeric.cs -------------------------------------------------------------------------------- /src/Z.Core/System.String/String.Left.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.String/String.Left.cs -------------------------------------------------------------------------------- /src/Z.Core/System.String/String.LeftSafe.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.String/String.LeftSafe.cs -------------------------------------------------------------------------------- /src/Z.Core/System.String/String.Nl2Br.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.String/String.Nl2Br.cs -------------------------------------------------------------------------------- /src/Z.Core/System.String/String.NullIfEmpty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.String/String.NullIfEmpty.cs -------------------------------------------------------------------------------- /src/Z.Core/System.String/String.PathCombine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.String/String.PathCombine.cs -------------------------------------------------------------------------------- /src/Z.Core/System.String/String.RemoveDiacritics.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.String/String.RemoveDiacritics.cs -------------------------------------------------------------------------------- /src/Z.Core/System.String/String.RemoveLetter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.String/String.RemoveLetter.cs -------------------------------------------------------------------------------- /src/Z.Core/System.String/String.RemoveNumber.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.String/String.RemoveNumber.cs -------------------------------------------------------------------------------- /src/Z.Core/System.String/String.RemoveWhere.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.String/String.RemoveWhere.cs -------------------------------------------------------------------------------- /src/Z.Core/System.String/String.Repeat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.String/String.Repeat.cs -------------------------------------------------------------------------------- /src/Z.Core/System.String/String.Replace.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.String/String.Replace.cs -------------------------------------------------------------------------------- /src/Z.Core/System.String/String.ReplaceByEmpty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.String/String.ReplaceByEmpty.cs -------------------------------------------------------------------------------- /src/Z.Core/System.String/String.ReplaceFirst.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.String/String.ReplaceFirst.cs -------------------------------------------------------------------------------- /src/Z.Core/System.String/String.ReplaceLast.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.String/String.ReplaceLast.cs -------------------------------------------------------------------------------- /src/Z.Core/System.String/String.ReplaceWhenEquals.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.String/String.ReplaceWhenEquals.cs -------------------------------------------------------------------------------- /src/Z.Core/System.String/String.Reverse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.String/String.Reverse.cs -------------------------------------------------------------------------------- /src/Z.Core/System.String/String.Right.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.String/String.Right.cs -------------------------------------------------------------------------------- /src/Z.Core/System.String/String.RightSafe.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.String/String.RightSafe.cs -------------------------------------------------------------------------------- /src/Z.Core/System.String/String.SaveAs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.String/String.SaveAs.cs -------------------------------------------------------------------------------- /src/Z.Core/System.String/String.Split.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.String/String.Split.cs -------------------------------------------------------------------------------- /src/Z.Core/System.String/String.StripHtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.String/String.StripHtml.cs -------------------------------------------------------------------------------- /src/Z.Core/System.String/String.ToByteArray.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.String/String.ToByteArray.cs -------------------------------------------------------------------------------- /src/Z.Core/System.String/String.ToDirectoryInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.String/String.ToDirectoryInfo.cs -------------------------------------------------------------------------------- /src/Z.Core/System.String/String.ToEnum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.String/String.ToEnum.cs -------------------------------------------------------------------------------- /src/Z.Core/System.String/String.ToFileInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.String/String.ToFileInfo.cs -------------------------------------------------------------------------------- /src/Z.Core/System.String/String.ToMemoryStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.String/String.ToMemoryStream.cs -------------------------------------------------------------------------------- /src/Z.Core/System.String/String.ToPlural.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.String/String.ToPlural.cs -------------------------------------------------------------------------------- /src/Z.Core/System.String/String.ToSecureString.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.String/String.ToSecureString.cs -------------------------------------------------------------------------------- /src/Z.Core/System.String/String.ToTitleCase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.String/String.ToTitleCase.cs -------------------------------------------------------------------------------- /src/Z.Core/System.String/String.ToValidDateTimeOrNull.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.String/String.ToValidDateTimeOrNull.cs -------------------------------------------------------------------------------- /src/Z.Core/System.String/String.ToXDocument.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.String/String.ToXDocument.cs -------------------------------------------------------------------------------- /src/Z.Core/System.String/String.ToXmlDocument.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.String/String.ToXmlDocument.cs -------------------------------------------------------------------------------- /src/Z.Core/System.String/String.Truncate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.String/String.Truncate.cs -------------------------------------------------------------------------------- /src/Z.Core/System.String/System.Char/String.IsControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.String/System.Char/String.IsControl.cs -------------------------------------------------------------------------------- /src/Z.Core/System.String/System.Char/String.IsDigit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.String/System.Char/String.IsDigit.cs -------------------------------------------------------------------------------- /src/Z.Core/System.String/System.Char/String.IsLetter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.String/System.Char/String.IsLetter.cs -------------------------------------------------------------------------------- /src/Z.Core/System.String/System.Char/String.IsLower.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.String/System.Char/String.IsLower.cs -------------------------------------------------------------------------------- /src/Z.Core/System.String/System.Char/String.IsNumber.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.String/System.Char/String.IsNumber.cs -------------------------------------------------------------------------------- /src/Z.Core/System.String/System.Char/String.IsPunctuation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.String/System.Char/String.IsPunctuation.cs -------------------------------------------------------------------------------- /src/Z.Core/System.String/System.Char/String.IsSeparator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.String/System.Char/String.IsSeparator.cs -------------------------------------------------------------------------------- /src/Z.Core/System.String/System.Char/String.IsSurrogate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.String/System.Char/String.IsSurrogate.cs -------------------------------------------------------------------------------- /src/Z.Core/System.String/System.Char/String.IsSymbol.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.String/System.Char/String.IsSymbol.cs -------------------------------------------------------------------------------- /src/Z.Core/System.String/System.Char/String.IsUpper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.String/System.Char/String.IsUpper.cs -------------------------------------------------------------------------------- /src/Z.Core/System.String/System.Char/String.IsWhiteSpace.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.String/System.Char/String.IsWhiteSpace.cs -------------------------------------------------------------------------------- /src/Z.Core/System.String/System.String/String.Copy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.String/System.String/String.Copy.cs -------------------------------------------------------------------------------- /src/Z.Core/System.String/System.String/String.Format.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.String/System.String/String.Format.cs -------------------------------------------------------------------------------- /src/Z.Core/System.String/System.String/String.Intern.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.String/System.String/String.Intern.cs -------------------------------------------------------------------------------- /src/Z.Core/System.String/System.String/String.IsInterned.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.String/System.String/String.IsInterned.cs -------------------------------------------------------------------------------- /src/Z.Core/System.String/System.String/String.Join.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.String/System.String/String.Join.cs -------------------------------------------------------------------------------- /src/Z.Core/System.String/_CoreObject/String.In.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.String/_CoreObject/String.In.cs -------------------------------------------------------------------------------- /src/Z.Core/System.String/_CoreObject/String.IsNotNull.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.String/_CoreObject/String.IsNotNull.cs -------------------------------------------------------------------------------- /src/Z.Core/System.String/_CoreObject/String.IsNull.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.String/_CoreObject/String.IsNull.cs -------------------------------------------------------------------------------- /src/Z.Core/System.String/_CoreObject/String.NotIn.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.String/_CoreObject/String.NotIn.cs -------------------------------------------------------------------------------- /src/Z.Core/System.String/zzzRegexPattern/String.IsValidIP.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.String/zzzRegexPattern/String.IsValidIP.cs -------------------------------------------------------------------------------- /src/Z.Core/System.TimeSpan/TimeSpan.Ago.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.TimeSpan/TimeSpan.Ago.cs -------------------------------------------------------------------------------- /src/Z.Core/System.TimeSpan/TimeSpan.FromNow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.TimeSpan/TimeSpan.FromNow.cs -------------------------------------------------------------------------------- /src/Z.Core/System.TimeSpan/TimeSpan.UtcAgo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.TimeSpan/TimeSpan.UtcAgo.cs -------------------------------------------------------------------------------- /src/Z.Core/System.TimeSpan/TimeSpan.UtcFromNow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.TimeSpan/TimeSpan.UtcFromNow.cs -------------------------------------------------------------------------------- /src/Z.Core/System.Type/System.Activator/Type.GetObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.Type/System.Activator/Type.GetObject.cs -------------------------------------------------------------------------------- /src/Z.Core/System.Type/Type.CreateInstance.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.Type/Type.CreateInstance.cs -------------------------------------------------------------------------------- /src/Z.Core/System.UInt16/System.Math/UInt16.Max.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.UInt16/System.Math/UInt16.Max.cs -------------------------------------------------------------------------------- /src/Z.Core/System.UInt16/System.Math/UInt16.Min.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.UInt16/System.Math/UInt16.Min.cs -------------------------------------------------------------------------------- /src/Z.Core/System.UInt16/_CoreObject/UInt16.Between.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.UInt16/_CoreObject/UInt16.Between.cs -------------------------------------------------------------------------------- /src/Z.Core/System.UInt16/_CoreObject/UInt16.In.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.UInt16/_CoreObject/UInt16.In.cs -------------------------------------------------------------------------------- /src/Z.Core/System.UInt16/_CoreObject/UInt16.InRange.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.UInt16/_CoreObject/UInt16.InRange.cs -------------------------------------------------------------------------------- /src/Z.Core/System.UInt16/_CoreObject/UInt16.NotIn.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.UInt16/_CoreObject/UInt16.NotIn.cs -------------------------------------------------------------------------------- /src/Z.Core/System.UInt32/System.Math/UInt32.Max.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.UInt32/System.Math/UInt32.Max.cs -------------------------------------------------------------------------------- /src/Z.Core/System.UInt32/System.Math/UInt32.Min.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.UInt32/System.Math/UInt32.Min.cs -------------------------------------------------------------------------------- /src/Z.Core/System.UInt32/_CoreObject/UInt32.Between.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.UInt32/_CoreObject/UInt32.Between.cs -------------------------------------------------------------------------------- /src/Z.Core/System.UInt32/_CoreObject/UInt32.In.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.UInt32/_CoreObject/UInt32.In.cs -------------------------------------------------------------------------------- /src/Z.Core/System.UInt32/_CoreObject/UInt32.InRange.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.UInt32/_CoreObject/UInt32.InRange.cs -------------------------------------------------------------------------------- /src/Z.Core/System.UInt32/_CoreObject/UInt32.NotIn.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.UInt32/_CoreObject/UInt32.NotIn.cs -------------------------------------------------------------------------------- /src/Z.Core/System.UInt64/System.Math/UInt64.Max.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.UInt64/System.Math/UInt64.Max.cs -------------------------------------------------------------------------------- /src/Z.Core/System.UInt64/System.Math/UInt64.Min.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.UInt64/System.Math/UInt64.Min.cs -------------------------------------------------------------------------------- /src/Z.Core/System.UInt64/_CoreObject/UInt64.Between.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.UInt64/_CoreObject/UInt64.Between.cs -------------------------------------------------------------------------------- /src/Z.Core/System.UInt64/_CoreObject/UInt64.In.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.UInt64/_CoreObject/UInt64.In.cs -------------------------------------------------------------------------------- /src/Z.Core/System.UInt64/_CoreObject/UInt64.InRange.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.UInt64/_CoreObject/UInt64.InRange.cs -------------------------------------------------------------------------------- /src/Z.Core/System.UInt64/_CoreObject/UInt64.NotIn.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.UInt64/_CoreObject/UInt64.NotIn.cs -------------------------------------------------------------------------------- /src/Z.Core/System.UIntPtr/System.UIntPtr/UIntPtr.Add.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.UIntPtr/System.UIntPtr/UIntPtr.Add.cs -------------------------------------------------------------------------------- /src/Z.Core/System.UIntPtr/System.UIntPtr/UIntPtr.Subtract.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/System.UIntPtr/System.UIntPtr/UIntPtr.Subtract.cs -------------------------------------------------------------------------------- /src/Z.Core/TArray/Array.ClearAll.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/TArray/Array.ClearAll.cs -------------------------------------------------------------------------------- /src/Z.Core/TArray/Array.ClearAt.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/TArray/Array.ClearAt.cs -------------------------------------------------------------------------------- /src/Z.Core/TArray/Array.ToDataTable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/TArray/Array.ToDataTable.cs -------------------------------------------------------------------------------- /src/Z.Core/TArray/System.Array/TArray.AsReadOnly.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/TArray/System.Array/TArray.AsReadOnly.cs -------------------------------------------------------------------------------- /src/Z.Core/TArray/System.Array/TArray.Exists.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/TArray/System.Array/TArray.Exists.cs -------------------------------------------------------------------------------- /src/Z.Core/TArray/System.Array/TArray.Find.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/TArray/System.Array/TArray.Find.cs -------------------------------------------------------------------------------- /src/Z.Core/TArray/System.Array/TArray.FindAll.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/TArray/System.Array/TArray.FindAll.cs -------------------------------------------------------------------------------- /src/Z.Core/TArray/System.Array/TArray.FindIndex.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/TArray/System.Array/TArray.FindIndex.cs -------------------------------------------------------------------------------- /src/Z.Core/TArray/System.Array/TArray.FindLast.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/TArray/System.Array/TArray.FindLast.cs -------------------------------------------------------------------------------- /src/Z.Core/TArray/System.Array/TArray.FindLastIndex.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/TArray/System.Array/TArray.FindLastIndex.cs -------------------------------------------------------------------------------- /src/Z.Core/TArray/System.Array/TArray.ForEach.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/TArray/System.Array/TArray.ForEach.cs -------------------------------------------------------------------------------- /src/Z.Core/TArray/System.Array/TArray.TrueForAll.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Core/TArray/System.Array/TArray.TrueForAll.cs -------------------------------------------------------------------------------- /src/Z.Data.MySql/_Internal/IDataReader.ToEntities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Data.MySql/_Internal/IDataReader.ToEntities.cs -------------------------------------------------------------------------------- /src/Z.Data.MySql/_Internal/IDataReader.ToEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Data.MySql/_Internal/IDataReader.ToEntity.cs -------------------------------------------------------------------------------- /src/Z.Data.MySql/_Internal/IDataReader.ToExpandoObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Data.MySql/_Internal/IDataReader.ToExpandoObject.cs -------------------------------------------------------------------------------- /src/Z.Data.MySql/_Internal/IDataReader.ToExpandoObjects.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Data.MySql/_Internal/IDataReader.ToExpandoObjects.cs -------------------------------------------------------------------------------- /src/Z.Data.MySql/_Internal/Object.As.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Data.MySql/_Internal/Object.As.cs -------------------------------------------------------------------------------- /src/Z.Data.MySql/_Internal/Object.To.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Data.MySql/_Internal/Object.To.cs -------------------------------------------------------------------------------- /src/Z.Data.MySql/packages.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | -------------------------------------------------------------------------------- /src/Z.Data.SQLite/_Internal/IDataReader.ToEntities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Data.SQLite/_Internal/IDataReader.ToEntities.cs -------------------------------------------------------------------------------- /src/Z.Data.SQLite/_Internal/IDataReader.ToEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Data.SQLite/_Internal/IDataReader.ToEntity.cs -------------------------------------------------------------------------------- /src/Z.Data.SQLite/_Internal/IDataReader.ToExpandoObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Data.SQLite/_Internal/IDataReader.ToExpandoObject.cs -------------------------------------------------------------------------------- /src/Z.Data.SQLite/_Internal/Object.As.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Data.SQLite/_Internal/Object.As.cs -------------------------------------------------------------------------------- /src/Z.Data.SQLite/_Internal/Object.To.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Data.SQLite/_Internal/Object.To.cs -------------------------------------------------------------------------------- /src/Z.Data.SQLite/packages.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /src/Z.Data.SqlServerCe/_Internal/IDataReader.ToEntities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Data.SqlServerCe/_Internal/IDataReader.ToEntities.cs -------------------------------------------------------------------------------- /src/Z.Data.SqlServerCe/_Internal/IDataReader.ToEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Data.SqlServerCe/_Internal/IDataReader.ToEntity.cs -------------------------------------------------------------------------------- /src/Z.Data.SqlServerCe/_Internal/Object.As.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Data.SqlServerCe/_Internal/Object.As.cs -------------------------------------------------------------------------------- /src/Z.Data.SqlServerCe/_Internal/Object.To.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Data.SqlServerCe/_Internal/Object.To.cs -------------------------------------------------------------------------------- /src/Z.Data/System.Data.DataRow/DataRow.ToEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Data/System.Data.DataRow/DataRow.ToEntity.cs -------------------------------------------------------------------------------- /src/Z.Data/System.Data.DataRow/DataRow.ToExpandoObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Data/System.Data.DataRow/DataRow.ToExpandoObject.cs -------------------------------------------------------------------------------- /src/Z.Data/System.Data.DataTable/DataTable.FirstRow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Data/System.Data.DataTable/DataTable.FirstRow.cs -------------------------------------------------------------------------------- /src/Z.Data/System.Data.DataTable/DataTable.LastRow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Data/System.Data.DataTable/DataTable.LastRow.cs -------------------------------------------------------------------------------- /src/Z.Data/System.Data.DataTable/DataTable.ToEntities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Data/System.Data.DataTable/DataTable.ToEntities.cs -------------------------------------------------------------------------------- /src/Z.Data/System.Data.IDataReader/IDataReader.ForEach.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Data/System.Data.IDataReader/IDataReader.ForEach.cs -------------------------------------------------------------------------------- /src/Z.Data/System.Data.IDataReader/IDataReader.IsDBNull.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Data/System.Data.IDataReader/IDataReader.IsDBNull.cs -------------------------------------------------------------------------------- /src/Z.Data/System.Data.IDataReader/IDataReader.ToEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Data/System.Data.IDataReader/IDataReader.ToEntity.cs -------------------------------------------------------------------------------- /src/Z.Drawing/System.Drawing.Image/Image.Cut.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Drawing/System.Drawing.Image/Image.Cut.cs -------------------------------------------------------------------------------- /src/Z.Drawing/System.Drawing.Image/Image.Scale.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Drawing/System.Drawing.Image/Image.Scale.cs -------------------------------------------------------------------------------- /src/Z.IO/System.IO.DirectoryInfo/DirectoryInfo.Clear.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.IO/System.IO.DirectoryInfo/DirectoryInfo.Clear.cs -------------------------------------------------------------------------------- /src/Z.IO/System.IO.DirectoryInfo/DirectoryInfo.CopyTo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.IO/System.IO.DirectoryInfo/DirectoryInfo.CopyTo.cs -------------------------------------------------------------------------------- /src/Z.IO/System.IO.DirectoryInfo/DirectoryInfo.GetFiles.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.IO/System.IO.DirectoryInfo/DirectoryInfo.GetFiles.cs -------------------------------------------------------------------------------- /src/Z.IO/System.IO.DirectoryInfo/DirectoryInfo.GetSize.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.IO/System.IO.DirectoryInfo/DirectoryInfo.GetSize.cs -------------------------------------------------------------------------------- /src/Z.IO/System.IO.FileInfo/FileInfo.AppendAllLines.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.IO/System.IO.FileInfo/FileInfo.AppendAllLines.cs -------------------------------------------------------------------------------- /src/Z.IO/System.IO.FileInfo/FileInfo.AppendAllText.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.IO/System.IO.FileInfo/FileInfo.AppendAllText.cs -------------------------------------------------------------------------------- /src/Z.IO/System.IO.FileInfo/FileInfo.ChangeExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.IO/System.IO.FileInfo/FileInfo.ChangeExtension.cs -------------------------------------------------------------------------------- /src/Z.IO/System.IO.FileInfo/FileInfo.CountLines.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.IO/System.IO.FileInfo/FileInfo.CountLines.cs -------------------------------------------------------------------------------- /src/Z.IO/System.IO.FileInfo/FileInfo.CreateDirectory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.IO/System.IO.FileInfo/FileInfo.CreateDirectory.cs -------------------------------------------------------------------------------- /src/Z.IO/System.IO.FileInfo/FileInfo.GetDirectoryName.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.IO/System.IO.FileInfo/FileInfo.GetDirectoryName.cs -------------------------------------------------------------------------------- /src/Z.IO/System.IO.FileInfo/FileInfo.GetPathRoot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.IO/System.IO.FileInfo/FileInfo.GetPathRoot.cs -------------------------------------------------------------------------------- /src/Z.IO/System.IO.FileInfo/FileInfo.HasExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.IO/System.IO.FileInfo/FileInfo.HasExtension.cs -------------------------------------------------------------------------------- /src/Z.IO/System.IO.FileInfo/FileInfo.IsPathRooted.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.IO/System.IO.FileInfo/FileInfo.IsPathRooted.cs -------------------------------------------------------------------------------- /src/Z.IO/System.IO.FileInfo/FileInfo.ReadAllBytes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.IO/System.IO.FileInfo/FileInfo.ReadAllBytes.cs -------------------------------------------------------------------------------- /src/Z.IO/System.IO.FileInfo/FileInfo.ReadAllLines.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.IO/System.IO.FileInfo/FileInfo.ReadAllLines.cs -------------------------------------------------------------------------------- /src/Z.IO/System.IO.FileInfo/FileInfo.ReadAllText.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.IO/System.IO.FileInfo/FileInfo.ReadAllText.cs -------------------------------------------------------------------------------- /src/Z.IO/System.IO.FileInfo/FileInfo.ReadLines.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.IO/System.IO.FileInfo/FileInfo.ReadLines.cs -------------------------------------------------------------------------------- /src/Z.IO/System.IO.FileInfo/FileInfo.ReadToEnd.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.IO/System.IO.FileInfo/FileInfo.ReadToEnd.cs -------------------------------------------------------------------------------- /src/Z.IO/System.IO.FileInfo/FileInfo.Rename.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.IO/System.IO.FileInfo/FileInfo.Rename.cs -------------------------------------------------------------------------------- /src/Z.IO/System.IO.FileInfo/FileInfo.RenameExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.IO/System.IO.FileInfo/FileInfo.RenameExtension.cs -------------------------------------------------------------------------------- /src/Z.IO/System.IO.FileInfo/FileInfo.WriteAllBytes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.IO/System.IO.FileInfo/FileInfo.WriteAllBytes.cs -------------------------------------------------------------------------------- /src/Z.IO/System.IO.FileInfo/FileInfo.WriteAllLines.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.IO/System.IO.FileInfo/FileInfo.WriteAllLines.cs -------------------------------------------------------------------------------- /src/Z.IO/System.IO.FileInfo/FileInfo.WriteAllText.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.IO/System.IO.FileInfo/FileInfo.WriteAllText.cs -------------------------------------------------------------------------------- /src/Z.IO/System.IO.Stream/Stream.ReadToEnd.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.IO/System.IO.Stream/Stream.ReadToEnd.cs -------------------------------------------------------------------------------- /src/Z.IO/System.IO.Stream/Stream.ToByteArray.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.IO/System.IO.Stream/Stream.ToByteArray.cs -------------------------------------------------------------------------------- /src/Z.IO/System.IO.Stream/Stream.ToMD5Hash.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.IO/System.IO.Stream/Stream.ToMD5Hash.cs -------------------------------------------------------------------------------- /src/Z.Net/System.Net.Mail.MailMessage/MailMessage.Send.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Net/System.Net.Mail.MailMessage/MailMessage.Send.cs -------------------------------------------------------------------------------- /src/Z.Net/System.Net.WebResponse/WebResponse.ReadToEnd.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Net/System.Net.WebResponse/WebResponse.ReadToEnd.cs -------------------------------------------------------------------------------- /src/Z.Reflection/System.Object/Object.GetField.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Reflection/System.Object/Object.GetField.cs -------------------------------------------------------------------------------- /src/Z.Reflection/System.Object/Object.GetFieldValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Reflection/System.Object/Object.GetFieldValue.cs -------------------------------------------------------------------------------- /src/Z.Reflection/System.Object/Object.GetFields.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Reflection/System.Object/Object.GetFields.cs -------------------------------------------------------------------------------- /src/Z.Reflection/System.Object/Object.GetMemberPaths.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Reflection/System.Object/Object.GetMemberPaths.cs -------------------------------------------------------------------------------- /src/Z.Reflection/System.Object/Object.GetMethod.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Reflection/System.Object/Object.GetMethod.cs -------------------------------------------------------------------------------- /src/Z.Reflection/System.Object/Object.GetMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Reflection/System.Object/Object.GetMethods.cs -------------------------------------------------------------------------------- /src/Z.Reflection/System.Object/Object.GetProperties.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Reflection/System.Object/Object.GetProperties.cs -------------------------------------------------------------------------------- /src/Z.Reflection/System.Object/Object.GetProperty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Reflection/System.Object/Object.GetProperty.cs -------------------------------------------------------------------------------- /src/Z.Reflection/System.Object/Object.GetPropertyValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Reflection/System.Object/Object.GetPropertyValue.cs -------------------------------------------------------------------------------- /src/Z.Reflection/System.Object/Object.InvokeMethod.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Reflection/System.Object/Object.InvokeMethod.cs -------------------------------------------------------------------------------- /src/Z.Reflection/System.Object/Object.SetFieldValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Reflection/System.Object/Object.SetFieldValue.cs -------------------------------------------------------------------------------- /src/Z.Reflection/System.Object/Object.SetPropertyValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Reflection/System.Object/Object.SetPropertyValue.cs -------------------------------------------------------------------------------- /src/Z.Serialization/System.Object/Object.SerializeJson.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Serialization/System.Object/Object.SerializeJson.cs -------------------------------------------------------------------------------- /src/Z.Serialization/System.Object/Object.SerializeXml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Serialization/System.Object/Object.SerializeXml.cs -------------------------------------------------------------------------------- /src/Z.Serialization/System.String/String.DeserializeXml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Serialization/System.String/String.DeserializeXml.cs -------------------------------------------------------------------------------- /src/Z.Web/System.Web.HttpResponse/HttpResponse.Redirect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Web/System.Web.HttpResponse/HttpResponse.Redirect.cs -------------------------------------------------------------------------------- /src/Z.Web/System.Web.HttpResponse/HttpResponse.Reload.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Web/System.Web.HttpResponse/HttpResponse.Reload.cs -------------------------------------------------------------------------------- /src/Z.Web/System.Web.UI.Control/Control.FindControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Web/System.Web.UI.Control/Control.FindControl.cs -------------------------------------------------------------------------------- /src/Z.Window.Forms/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Window.Forms/Extensions.cs -------------------------------------------------------------------------------- /src/Z.Xml.Linq/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/Z.Xml.Linq/Extensions.cs -------------------------------------------------------------------------------- /src/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/src/logo.png -------------------------------------------------------------------------------- /test/Z.Core.Test/System.Array/Array.ClearAll.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/test/Z.Core.Test/System.Array/Array.ClearAll.cs -------------------------------------------------------------------------------- /test/Z.Core.Test/System.Array/Array.WithinIndex.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/test/Z.Core.Test/System.Array/Array.WithinIndex.cs -------------------------------------------------------------------------------- /test/Z.Core.Test/System.Boolean/Boolean.IfFalse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/test/Z.Core.Test/System.Boolean/Boolean.IfFalse.cs -------------------------------------------------------------------------------- /test/Z.Core.Test/System.Boolean/Boolean.IfTrue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/test/Z.Core.Test/System.Boolean/Boolean.IfTrue.cs -------------------------------------------------------------------------------- /test/Z.Core.Test/System.Boolean/Boolean.ToBinary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/test/Z.Core.Test/System.Boolean/Boolean.ToBinary.cs -------------------------------------------------------------------------------- /test/Z.Core.Test/System.Boolean/Boolean.ToString.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/test/Z.Core.Test/System.Boolean/Boolean.ToString.cs -------------------------------------------------------------------------------- /test/Z.Core.Test/System.ByteArray/ByteArray.Resize.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/test/Z.Core.Test/System.ByteArray/ByteArray.Resize.cs -------------------------------------------------------------------------------- /test/Z.Core.Test/System.ByteArray/ByteArray.ToImage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/test/Z.Core.Test/System.ByteArray/ByteArray.ToImage.cs -------------------------------------------------------------------------------- /test/Z.Core.Test/System.Char/Char.Repeat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/test/Z.Core.Test/System.Char/Char.Repeat.cs -------------------------------------------------------------------------------- /test/Z.Core.Test/System.Char/Char.To.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/test/Z.Core.Test/System.Char/Char.To.cs -------------------------------------------------------------------------------- /test/Z.Core.Test/System.DateTime/DateTime.Age.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/test/Z.Core.Test/System.DateTime/DateTime.Age.cs -------------------------------------------------------------------------------- /test/Z.Core.Test/System.DateTime/DateTime.Elapsed.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/test/Z.Core.Test/System.DateTime/DateTime.Elapsed.cs -------------------------------------------------------------------------------- /test/Z.Core.Test/System.DateTime/DateTime.EndOfDay.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/test/Z.Core.Test/System.DateTime/DateTime.EndOfDay.cs -------------------------------------------------------------------------------- /test/Z.Core.Test/System.DateTime/DateTime.EndOfMonth.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/test/Z.Core.Test/System.DateTime/DateTime.EndOfMonth.cs -------------------------------------------------------------------------------- /test/Z.Core.Test/System.DateTime/DateTime.EndOfWeek.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/test/Z.Core.Test/System.DateTime/DateTime.EndOfWeek.cs -------------------------------------------------------------------------------- /test/Z.Core.Test/System.DateTime/DateTime.EndOfYear.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/test/Z.Core.Test/System.DateTime/DateTime.EndOfYear.cs -------------------------------------------------------------------------------- /test/Z.Core.Test/System.DateTime/DateTime.IsAfternoon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/test/Z.Core.Test/System.DateTime/DateTime.IsAfternoon.cs -------------------------------------------------------------------------------- /test/Z.Core.Test/System.DateTime/DateTime.IsDateEqual.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/test/Z.Core.Test/System.DateTime/DateTime.IsDateEqual.cs -------------------------------------------------------------------------------- /test/Z.Core.Test/System.DateTime/DateTime.IsFuture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/test/Z.Core.Test/System.DateTime/DateTime.IsFuture.cs -------------------------------------------------------------------------------- /test/Z.Core.Test/System.DateTime/DateTime.IsMorning.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/test/Z.Core.Test/System.DateTime/DateTime.IsMorning.cs -------------------------------------------------------------------------------- /test/Z.Core.Test/System.DateTime/DateTime.IsNow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/test/Z.Core.Test/System.DateTime/DateTime.IsNow.cs -------------------------------------------------------------------------------- /test/Z.Core.Test/System.DateTime/DateTime.IsPast.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/test/Z.Core.Test/System.DateTime/DateTime.IsPast.cs -------------------------------------------------------------------------------- /test/Z.Core.Test/System.DateTime/DateTime.IsTimeEqual.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/test/Z.Core.Test/System.DateTime/DateTime.IsTimeEqual.cs -------------------------------------------------------------------------------- /test/Z.Core.Test/System.DateTime/DateTime.IsToday.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/test/Z.Core.Test/System.DateTime/DateTime.IsToday.cs -------------------------------------------------------------------------------- /test/Z.Core.Test/System.DateTime/DateTime.IsWeekDay.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/test/Z.Core.Test/System.DateTime/DateTime.IsWeekDay.cs -------------------------------------------------------------------------------- /test/Z.Core.Test/System.DateTime/DateTime.IsWeekendDay.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/test/Z.Core.Test/System.DateTime/DateTime.IsWeekendDay.cs -------------------------------------------------------------------------------- /test/Z.Core.Test/System.DateTime/DateTime.LastDayOfWeek.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/test/Z.Core.Test/System.DateTime/DateTime.LastDayOfWeek.cs -------------------------------------------------------------------------------- /test/Z.Core.Test/System.DateTime/DateTime.SetTime.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/test/Z.Core.Test/System.DateTime/DateTime.SetTime.cs -------------------------------------------------------------------------------- /test/Z.Core.Test/System.DateTime/DateTime.StartOfDay.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/test/Z.Core.Test/System.DateTime/DateTime.StartOfDay.cs -------------------------------------------------------------------------------- /test/Z.Core.Test/System.DateTime/DateTime.StartOfMonth.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/test/Z.Core.Test/System.DateTime/DateTime.StartOfMonth.cs -------------------------------------------------------------------------------- /test/Z.Core.Test/System.DateTime/DateTime.StartOfWeek.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/test/Z.Core.Test/System.DateTime/DateTime.StartOfWeek.cs -------------------------------------------------------------------------------- /test/Z.Core.Test/System.DateTime/DateTime.StartOfYear.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/test/Z.Core.Test/System.DateTime/DateTime.StartOfYear.cs -------------------------------------------------------------------------------- /test/Z.Core.Test/System.DateTime/DateTime.Tomorrow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/test/Z.Core.Test/System.DateTime/DateTime.Tomorrow.cs -------------------------------------------------------------------------------- /test/Z.Core.Test/System.DateTime/DateTime.Yesterday.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/test/Z.Core.Test/System.DateTime/DateTime.Yesterday.cs -------------------------------------------------------------------------------- /test/Z.Core.Test/System.Decimal/Decimal.ToMoney.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/test/Z.Core.Test/System.Decimal/Decimal.ToMoney.cs -------------------------------------------------------------------------------- /test/Z.Core.Test/System.Double/Double.ToMoney.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/test/Z.Core.Test/System.Double/Double.ToMoney.cs -------------------------------------------------------------------------------- /test/Z.Core.Test/System.Enum/Enum.In.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/test/Z.Core.Test/System.Enum/Enum.In.cs -------------------------------------------------------------------------------- /test/Z.Core.Test/System.Enum/Enum.NotIn.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/test/Z.Core.Test/System.Enum/Enum.NotIn.cs -------------------------------------------------------------------------------- /test/Z.Core.Test/System.EventHandler/EventHandler.Raise.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/test/Z.Core.Test/System.EventHandler/EventHandler.Raise.cs -------------------------------------------------------------------------------- /test/Z.Core.Test/System.Guid/Guid.IsEmpty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/test/Z.Core.Test/System.Guid/Guid.IsEmpty.cs -------------------------------------------------------------------------------- /test/Z.Core.Test/System.Guid/Guid.IsNotEmpty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/test/Z.Core.Test/System.Guid/Guid.IsNotEmpty.cs -------------------------------------------------------------------------------- /test/Z.Core.Test/System.Object/Object.As.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/test/Z.Core.Test/System.Object/Object.As.cs -------------------------------------------------------------------------------- /test/Z.Core.Test/System.Object/Object.AsOrDefault.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/test/Z.Core.Test/System.Object/Object.AsOrDefault.cs -------------------------------------------------------------------------------- /test/Z.Core.Test/System.Object/Object.Between.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/test/Z.Core.Test/System.Object/Object.Between.cs -------------------------------------------------------------------------------- /test/Z.Core.Test/System.Object/Object.Chain.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/test/Z.Core.Test/System.Object/Object.Chain.cs -------------------------------------------------------------------------------- /test/Z.Core.Test/System.Object/Object.Coalesce.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/test/Z.Core.Test/System.Object/Object.Coalesce.cs -------------------------------------------------------------------------------- /test/Z.Core.Test/System.Object/Object.CoalesceOrDefault.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/test/Z.Core.Test/System.Object/Object.CoalesceOrDefault.cs -------------------------------------------------------------------------------- /test/Z.Core.Test/System.Object/Object.DeepClone.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/test/Z.Core.Test/System.Object/Object.DeepClone.cs -------------------------------------------------------------------------------- /test/Z.Core.Test/System.Object/Object.GetValueOrDefault.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/test/Z.Core.Test/System.Object/Object.GetValueOrDefault.cs -------------------------------------------------------------------------------- /test/Z.Core.Test/System.Object/Object.IfNotNull.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/test/Z.Core.Test/System.Object/Object.IfNotNull.cs -------------------------------------------------------------------------------- /test/Z.Core.Test/System.Object/Object.In.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/test/Z.Core.Test/System.Object/Object.In.cs -------------------------------------------------------------------------------- /test/Z.Core.Test/System.Object/Object.InRange.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/test/Z.Core.Test/System.Object/Object.InRange.cs -------------------------------------------------------------------------------- /test/Z.Core.Test/System.Object/Object.IsAssignableFrom.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/test/Z.Core.Test/System.Object/Object.IsAssignableFrom.cs -------------------------------------------------------------------------------- /test/Z.Core.Test/System.Object/Object.IsDBNull.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/test/Z.Core.Test/System.Object/Object.IsDBNull.cs -------------------------------------------------------------------------------- /test/Z.Core.Test/System.Object/Object.IsDefault.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/test/Z.Core.Test/System.Object/Object.IsDefault.cs -------------------------------------------------------------------------------- /test/Z.Core.Test/System.Object/Object.IsNotNull.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/test/Z.Core.Test/System.Object/Object.IsNotNull.cs -------------------------------------------------------------------------------- /test/Z.Core.Test/System.Object/Object.IsNull.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/test/Z.Core.Test/System.Object/Object.IsNull.cs -------------------------------------------------------------------------------- /test/Z.Core.Test/System.Object/Object.IsValidInt32.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/test/Z.Core.Test/System.Object/Object.IsValidInt32.cs -------------------------------------------------------------------------------- /test/Z.Core.Test/System.Object/Object.NotIn.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/test/Z.Core.Test/System.Object/Object.NotIn.cs -------------------------------------------------------------------------------- /test/Z.Core.Test/System.Object/Object.NullIf.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/test/Z.Core.Test/System.Object/Object.NullIf.cs -------------------------------------------------------------------------------- /test/Z.Core.Test/System.Object/Object.NullIfEquals.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/test/Z.Core.Test/System.Object/Object.NullIfEquals.cs -------------------------------------------------------------------------------- /test/Z.Core.Test/System.Object/Object.NullIfEqualsAny.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/test/Z.Core.Test/System.Object/Object.NullIfEqualsAny.cs -------------------------------------------------------------------------------- /test/Z.Core.Test/System.Object/Object.ReferenceEquals.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/test/Z.Core.Test/System.Object/Object.ReferenceEquals.cs -------------------------------------------------------------------------------- /test/Z.Core.Test/System.Object/Object.ShallowCopy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/test/Z.Core.Test/System.Object/Object.ShallowCopy.cs -------------------------------------------------------------------------------- /test/Z.Core.Test/System.Object/Object.To.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/test/Z.Core.Test/System.Object/Object.To.cs -------------------------------------------------------------------------------- /test/Z.Core.Test/System.Object/Object.ToInt32.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/test/Z.Core.Test/System.Object/Object.ToInt32.cs -------------------------------------------------------------------------------- /test/Z.Core.Test/System.Object/Object.ToInt32OrDefault.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/test/Z.Core.Test/System.Object/Object.ToInt32OrDefault.cs -------------------------------------------------------------------------------- /test/Z.Core.Test/System.Object/Object.ToNullableInt32.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/test/Z.Core.Test/System.Object/Object.ToNullableInt32.cs -------------------------------------------------------------------------------- /test/Z.Core.Test/System.Object/Object.ToOrDefault.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/test/Z.Core.Test/System.Object/Object.ToOrDefault.cs -------------------------------------------------------------------------------- /test/Z.Core.Test/System.Object/Object.ToStringSafe.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/test/Z.Core.Test/System.Object/Object.ToStringSafe.cs -------------------------------------------------------------------------------- /test/Z.Core.Test/System.Object/Object.Try.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/test/Z.Core.Test/System.Object/Object.Try.cs -------------------------------------------------------------------------------- /test/Z.Core.Test/System.Random/Random.CoinToss.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/test/Z.Core.Test/System.Random/Random.CoinToss.cs -------------------------------------------------------------------------------- /test/Z.Core.Test/System.Random/Random.OneOf.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/test/Z.Core.Test/System.Random/Random.OneOf.cs -------------------------------------------------------------------------------- /test/Z.Core.Test/System.String/String.Br2Nl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/test/Z.Core.Test/System.String/String.Br2Nl.cs -------------------------------------------------------------------------------- /test/Z.Core.Test/System.String/String.ConcatWith.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/test/Z.Core.Test/System.String/String.ConcatWith.cs -------------------------------------------------------------------------------- /test/Z.Core.Test/System.String/String.Concatenate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/test/Z.Core.Test/System.String/String.Concatenate.cs -------------------------------------------------------------------------------- /test/Z.Core.Test/System.String/String.Contains.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/test/Z.Core.Test/System.String/String.Contains.cs -------------------------------------------------------------------------------- /test/Z.Core.Test/System.String/String.ContainsAll.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/test/Z.Core.Test/System.String/String.ContainsAll.cs -------------------------------------------------------------------------------- /test/Z.Core.Test/System.String/String.ContainsAny.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/test/Z.Core.Test/System.String/String.ContainsAny.cs -------------------------------------------------------------------------------- /test/Z.Core.Test/System.String/String.DecodeBase64.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/test/Z.Core.Test/System.String/String.DecodeBase64.cs -------------------------------------------------------------------------------- /test/Z.Core.Test/System.String/String.DecryptRSA.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/test/Z.Core.Test/System.String/String.DecryptRSA.cs -------------------------------------------------------------------------------- /test/Z.Core.Test/System.String/String.EncodeBase64.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/test/Z.Core.Test/System.String/String.EncodeBase64.cs -------------------------------------------------------------------------------- /test/Z.Core.Test/System.String/String.EncryptRSA.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/test/Z.Core.Test/System.String/String.EncryptRSA.cs -------------------------------------------------------------------------------- /test/Z.Core.Test/System.String/String.EqualsIgnoreCase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/test/Z.Core.Test/System.String/String.EqualsIgnoreCase.cs -------------------------------------------------------------------------------- /test/Z.Core.Test/System.String/String.EscapeXml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/test/Z.Core.Test/System.String/String.EscapeXml.cs -------------------------------------------------------------------------------- /test/Z.Core.Test/System.String/String.Extract.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/test/Z.Core.Test/System.String/String.Extract.cs -------------------------------------------------------------------------------- /test/Z.Core.Test/System.String/String.ExtractDecimal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/test/Z.Core.Test/System.String/String.ExtractDecimal.cs -------------------------------------------------------------------------------- /test/Z.Core.Test/System.String/String.ExtractDouble.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/test/Z.Core.Test/System.String/String.ExtractDouble.cs -------------------------------------------------------------------------------- /test/Z.Core.Test/System.String/String.ExtractInt16.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/test/Z.Core.Test/System.String/String.ExtractInt16.cs -------------------------------------------------------------------------------- /test/Z.Core.Test/System.String/String.ExtractInt32.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/test/Z.Core.Test/System.String/String.ExtractInt32.cs -------------------------------------------------------------------------------- /test/Z.Core.Test/System.String/String.ExtractInt64.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/test/Z.Core.Test/System.String/String.ExtractInt64.cs -------------------------------------------------------------------------------- /test/Z.Core.Test/System.String/String.ExtractLetter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/test/Z.Core.Test/System.String/String.ExtractLetter.cs -------------------------------------------------------------------------------- /test/Z.Core.Test/System.String/String.ExtractManyDouble.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/test/Z.Core.Test/System.String/String.ExtractManyDouble.cs -------------------------------------------------------------------------------- /test/Z.Core.Test/System.String/String.ExtractManyInt16.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/test/Z.Core.Test/System.String/String.ExtractManyInt16.cs -------------------------------------------------------------------------------- /test/Z.Core.Test/System.String/String.ExtractManyInt32.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/test/Z.Core.Test/System.String/String.ExtractManyInt32.cs -------------------------------------------------------------------------------- /test/Z.Core.Test/System.String/String.ExtractManyInt64.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/test/Z.Core.Test/System.String/String.ExtractManyInt64.cs -------------------------------------------------------------------------------- /test/Z.Core.Test/System.String/String.ExtractManyUInt16.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/test/Z.Core.Test/System.String/String.ExtractManyUInt16.cs -------------------------------------------------------------------------------- /test/Z.Core.Test/System.String/String.ExtractManyUInt32.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/test/Z.Core.Test/System.String/String.ExtractManyUInt32.cs -------------------------------------------------------------------------------- /test/Z.Core.Test/System.String/String.ExtractManyUInt64.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/test/Z.Core.Test/System.String/String.ExtractManyUInt64.cs -------------------------------------------------------------------------------- /test/Z.Core.Test/System.String/String.ExtractNumber.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/test/Z.Core.Test/System.String/String.ExtractNumber.cs -------------------------------------------------------------------------------- /test/Z.Core.Test/System.String/String.ExtractUInt16.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/test/Z.Core.Test/System.String/String.ExtractUInt16.cs -------------------------------------------------------------------------------- /test/Z.Core.Test/System.String/String.ExtractUInt32.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/test/Z.Core.Test/System.String/String.ExtractUInt32.cs -------------------------------------------------------------------------------- /test/Z.Core.Test/System.String/String.ExtractUInt64.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/test/Z.Core.Test/System.String/String.ExtractUInt64.cs -------------------------------------------------------------------------------- /test/Z.Core.Test/System.String/String.FormatWith.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/test/Z.Core.Test/System.String/String.FormatWith.cs -------------------------------------------------------------------------------- /test/Z.Core.Test/System.String/String.GetAfter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/test/Z.Core.Test/System.String/String.GetAfter.cs -------------------------------------------------------------------------------- /test/Z.Core.Test/System.String/String.GetBefore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/test/Z.Core.Test/System.String/String.GetBefore.cs -------------------------------------------------------------------------------- /test/Z.Core.Test/System.String/String.GetBetween.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/test/Z.Core.Test/System.String/String.GetBetween.cs -------------------------------------------------------------------------------- /test/Z.Core.Test/System.String/String.IfEmpty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/test/Z.Core.Test/System.String/String.IfEmpty.cs -------------------------------------------------------------------------------- /test/Z.Core.Test/System.String/String.IsAlpha.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/test/Z.Core.Test/System.String/String.IsAlpha.cs -------------------------------------------------------------------------------- /test/Z.Core.Test/System.String/String.IsAlphaNumeric.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/test/Z.Core.Test/System.String/String.IsAlphaNumeric.cs -------------------------------------------------------------------------------- /test/Z.Core.Test/System.String/String.IsEmpty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/test/Z.Core.Test/System.String/String.IsEmpty.cs -------------------------------------------------------------------------------- /test/Z.Core.Test/System.String/String.IsLike.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/test/Z.Core.Test/System.String/String.IsLike.cs -------------------------------------------------------------------------------- /test/Z.Core.Test/System.String/String.IsNotEmpty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/test/Z.Core.Test/System.String/String.IsNotEmpty.cs -------------------------------------------------------------------------------- /test/Z.Core.Test/System.String/String.IsNotNullOrEmpty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/test/Z.Core.Test/System.String/String.IsNotNullOrEmpty.cs -------------------------------------------------------------------------------- /test/Z.Core.Test/System.String/String.IsNullOrEmpty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/test/Z.Core.Test/System.String/String.IsNullOrEmpty.cs -------------------------------------------------------------------------------- /test/Z.Core.Test/System.String/String.IsNumeric.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/test/Z.Core.Test/System.String/String.IsNumeric.cs -------------------------------------------------------------------------------- /test/Z.Core.Test/System.String/String.IsValidEmail.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/test/Z.Core.Test/System.String/String.IsValidEmail.cs -------------------------------------------------------------------------------- /test/Z.Core.Test/System.String/String.Left.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/test/Z.Core.Test/System.String/String.Left.cs -------------------------------------------------------------------------------- /test/Z.Core.Test/System.String/String.LeftSafe.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/test/Z.Core.Test/System.String/String.LeftSafe.cs -------------------------------------------------------------------------------- /test/Z.Core.Test/System.String/String.Nl2Br.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/test/Z.Core.Test/System.String/String.Nl2Br.cs -------------------------------------------------------------------------------- /test/Z.Core.Test/System.String/String.NullIfEmpty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/test/Z.Core.Test/System.String/String.NullIfEmpty.cs -------------------------------------------------------------------------------- /test/Z.Core.Test/System.String/String.PathCombine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/test/Z.Core.Test/System.String/String.PathCombine.cs -------------------------------------------------------------------------------- /test/Z.Core.Test/System.String/String.RemoveLetter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/test/Z.Core.Test/System.String/String.RemoveLetter.cs -------------------------------------------------------------------------------- /test/Z.Core.Test/System.String/String.RemoveNumber.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/test/Z.Core.Test/System.String/String.RemoveNumber.cs -------------------------------------------------------------------------------- /test/Z.Core.Test/System.String/String.RemoveWhere.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/test/Z.Core.Test/System.String/String.RemoveWhere.cs -------------------------------------------------------------------------------- /test/Z.Core.Test/System.String/String.Repeat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/test/Z.Core.Test/System.String/String.Repeat.cs -------------------------------------------------------------------------------- /test/Z.Core.Test/System.String/String.Replace.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/test/Z.Core.Test/System.String/String.Replace.cs -------------------------------------------------------------------------------- /test/Z.Core.Test/System.String/String.ReplaceByEmpty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/test/Z.Core.Test/System.String/String.ReplaceByEmpty.cs -------------------------------------------------------------------------------- /test/Z.Core.Test/System.String/String.ReplaceFirst.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/test/Z.Core.Test/System.String/String.ReplaceFirst.cs -------------------------------------------------------------------------------- /test/Z.Core.Test/System.String/String.ReplaceLast.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/test/Z.Core.Test/System.String/String.ReplaceLast.cs -------------------------------------------------------------------------------- /test/Z.Core.Test/System.String/String.ReplaceWhenEquals.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/test/Z.Core.Test/System.String/String.ReplaceWhenEquals.cs -------------------------------------------------------------------------------- /test/Z.Core.Test/System.String/String.Reverse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/test/Z.Core.Test/System.String/String.Reverse.cs -------------------------------------------------------------------------------- /test/Z.Core.Test/System.String/String.Right.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/test/Z.Core.Test/System.String/String.Right.cs -------------------------------------------------------------------------------- /test/Z.Core.Test/System.String/String.RightSafe.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/test/Z.Core.Test/System.String/String.RightSafe.cs -------------------------------------------------------------------------------- /test/Z.Core.Test/System.String/String.SaveAs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/test/Z.Core.Test/System.String/String.SaveAs.cs -------------------------------------------------------------------------------- /test/Z.Core.Test/System.String/String.Split.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/test/Z.Core.Test/System.String/String.Split.cs -------------------------------------------------------------------------------- /test/Z.Core.Test/System.String/String.StripHtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/test/Z.Core.Test/System.String/String.StripHtml.cs -------------------------------------------------------------------------------- /test/Z.Core.Test/System.String/String.ToByteArray.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/test/Z.Core.Test/System.String/String.ToByteArray.cs -------------------------------------------------------------------------------- /test/Z.Core.Test/System.String/String.ToDirectoryInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/test/Z.Core.Test/System.String/String.ToDirectoryInfo.cs -------------------------------------------------------------------------------- /test/Z.Core.Test/System.String/String.ToEnum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/test/Z.Core.Test/System.String/String.ToEnum.cs -------------------------------------------------------------------------------- /test/Z.Core.Test/System.String/String.ToFileInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/test/Z.Core.Test/System.String/String.ToFileInfo.cs -------------------------------------------------------------------------------- /test/Z.Core.Test/System.String/String.ToMemoryStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/test/Z.Core.Test/System.String/String.ToMemoryStream.cs -------------------------------------------------------------------------------- /test/Z.Core.Test/System.String/String.ToPlural.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/test/Z.Core.Test/System.String/String.ToPlural.cs -------------------------------------------------------------------------------- /test/Z.Core.Test/System.String/String.ToSecureString.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/test/Z.Core.Test/System.String/String.ToSecureString.cs -------------------------------------------------------------------------------- /test/Z.Core.Test/System.String/String.ToTitleCase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/test/Z.Core.Test/System.String/String.ToTitleCase.cs -------------------------------------------------------------------------------- /test/Z.Core.Test/System.String/String.ToXDocument.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/test/Z.Core.Test/System.String/String.ToXDocument.cs -------------------------------------------------------------------------------- /test/Z.Core.Test/System.String/String.ToXmlDocument.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/test/Z.Core.Test/System.String/String.ToXmlDocument.cs -------------------------------------------------------------------------------- /test/Z.Core.Test/System.String/String.Truncate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/test/Z.Core.Test/System.String/String.Truncate.cs -------------------------------------------------------------------------------- /test/Z.Core.Test/System.TimeSpan/TimeSpan.Ago.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/test/Z.Core.Test/System.TimeSpan/TimeSpan.Ago.cs -------------------------------------------------------------------------------- /test/Z.Core.Test/System.TimeSpan/TimeSpan.FromNow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/test/Z.Core.Test/System.TimeSpan/TimeSpan.FromNow.cs -------------------------------------------------------------------------------- /test/Z.Core.Test/System.TimeSpan/TimeSpan.UtcAgo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/test/Z.Core.Test/System.TimeSpan/TimeSpan.UtcAgo.cs -------------------------------------------------------------------------------- /test/Z.Core.Test/System.TimeSpan/TimeSpan.UtcFromNow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/test/Z.Core.Test/System.TimeSpan/TimeSpan.UtcFromNow.cs -------------------------------------------------------------------------------- /test/Z.Core.Test/TArray/TArray.ClearAll.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/test/Z.Core.Test/TArray/TArray.ClearAll.cs -------------------------------------------------------------------------------- /test/Z.Core.Test/TArray/TArray.ClearAt.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/test/Z.Core.Test/TArray/TArray.ClearAt.cs -------------------------------------------------------------------------------- /test/Z.Core.Test/TArray/TArray.ToDataTable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/test/Z.Core.Test/TArray/TArray.ToDataTable.cs -------------------------------------------------------------------------------- /test/Z.Data.Test/System.Data.DataRow/DataRow.ToEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/test/Z.Data.Test/System.Data.DataRow/DataRow.ToEntity.cs -------------------------------------------------------------------------------- /test/Z.Drawing.Test/System.Drawing.Image/Image.Cut.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/test/Z.Drawing.Test/System.Drawing.Image/Image.Cut.cs -------------------------------------------------------------------------------- /test/Z.Drawing.Test/System.Drawing.Image/Image.Scale.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/test/Z.Drawing.Test/System.Drawing.Image/Image.Scale.cs -------------------------------------------------------------------------------- /test/Z.IO.Test/System.IO.FileInfo/FileInfo.CountLines.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/test/Z.IO.Test/System.IO.FileInfo/FileInfo.CountLines.cs -------------------------------------------------------------------------------- /test/Z.IO.Test/System.IO.FileInfo/FileInfo.GetPathRoot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/test/Z.IO.Test/System.IO.FileInfo/FileInfo.GetPathRoot.cs -------------------------------------------------------------------------------- /test/Z.IO.Test/System.IO.FileInfo/FileInfo.HasExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/test/Z.IO.Test/System.IO.FileInfo/FileInfo.HasExtension.cs -------------------------------------------------------------------------------- /test/Z.IO.Test/System.IO.FileInfo/FileInfo.IsPathRooted.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/test/Z.IO.Test/System.IO.FileInfo/FileInfo.IsPathRooted.cs -------------------------------------------------------------------------------- /test/Z.IO.Test/System.IO.FileInfo/FileInfo.ReadAllBytes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/test/Z.IO.Test/System.IO.FileInfo/FileInfo.ReadAllBytes.cs -------------------------------------------------------------------------------- /test/Z.IO.Test/System.IO.FileInfo/FileInfo.ReadAllLines.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/test/Z.IO.Test/System.IO.FileInfo/FileInfo.ReadAllLines.cs -------------------------------------------------------------------------------- /test/Z.IO.Test/System.IO.FileInfo/FileInfo.ReadAllText.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/test/Z.IO.Test/System.IO.FileInfo/FileInfo.ReadAllText.cs -------------------------------------------------------------------------------- /test/Z.IO.Test/System.IO.FileInfo/FileInfo.ReadLines.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/test/Z.IO.Test/System.IO.FileInfo/FileInfo.ReadLines.cs -------------------------------------------------------------------------------- /test/Z.IO.Test/System.IO.FileInfo/FileInfo.ReadToEnd.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/test/Z.IO.Test/System.IO.FileInfo/FileInfo.ReadToEnd.cs -------------------------------------------------------------------------------- /test/Z.IO.Test/System.IO.FileInfo/FileInfo.Rename.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/test/Z.IO.Test/System.IO.FileInfo/FileInfo.Rename.cs -------------------------------------------------------------------------------- /test/Z.IO.Test/System.IO.FileInfo/FileInfo.WriteAllText.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/test/Z.IO.Test/System.IO.FileInfo/FileInfo.WriteAllText.cs -------------------------------------------------------------------------------- /test/Z.IO.Test/System.IO.Stream/Stream.ReadToEnd.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/test/Z.IO.Test/System.IO.Stream/Stream.ReadToEnd.cs -------------------------------------------------------------------------------- /test/Z.IO.Test/System.IO.Stream/Stream.ToByteArray.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/test/Z.IO.Test/System.IO.Stream/Stream.ToByteArray.cs -------------------------------------------------------------------------------- /test/Z.IO.Test/System.IO.Stream/Stream.ToMD5Hash.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/test/Z.IO.Test/System.IO.Stream/Stream.ToMD5Hash.cs -------------------------------------------------------------------------------- /test/Z.Reflection.Test/GetDeclaration/Field/ConstField.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/test/Z.Reflection.Test/GetDeclaration/Field/ConstField.cs -------------------------------------------------------------------------------- /test/Z.Reflection.Test/GetDeclaration/Field/EventField.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/test/Z.Reflection.Test/GetDeclaration/Field/EventField.cs -------------------------------------------------------------------------------- /test/Z.Reflection.Test/GetDeclaration/Field/PublicField.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/test/Z.Reflection.Test/GetDeclaration/Field/PublicField.cs -------------------------------------------------------------------------------- /test/Z.Reflection.Test/GetDeclaration/Field/StaticField.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/test/Z.Reflection.Test/GetDeclaration/Field/StaticField.cs -------------------------------------------------------------------------------- /test/Z.Reflection.Test/GetDeclaration/Type/GenericClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/test/Z.Reflection.Test/GetDeclaration/Type/GenericClass.cs -------------------------------------------------------------------------------- /test/Z.Reflection.Test/GetDeclaration/Type/PublicClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/test/Z.Reflection.Test/GetDeclaration/Type/PublicClass.cs -------------------------------------------------------------------------------- /test/Z.Reflection.Test/GetDeclaration/Type/StaticClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/test/Z.Reflection.Test/GetDeclaration/Type/StaticClass.cs -------------------------------------------------------------------------------- /test/Z.Reflection.Test/GetSignature/Field/ConstField.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/test/Z.Reflection.Test/GetSignature/Field/ConstField.cs -------------------------------------------------------------------------------- /test/Z.Reflection.Test/GetSignature/Field/EventField.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/test/Z.Reflection.Test/GetSignature/Field/EventField.cs -------------------------------------------------------------------------------- /test/Z.Reflection.Test/GetSignature/Field/InternalField.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/test/Z.Reflection.Test/GetSignature/Field/InternalField.cs -------------------------------------------------------------------------------- /test/Z.Reflection.Test/GetSignature/Field/PrivateField.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/test/Z.Reflection.Test/GetSignature/Field/PrivateField.cs -------------------------------------------------------------------------------- /test/Z.Reflection.Test/GetSignature/Field/PublicField.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/test/Z.Reflection.Test/GetSignature/Field/PublicField.cs -------------------------------------------------------------------------------- /test/Z.Reflection.Test/GetSignature/Field/ReadOnlyField.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/test/Z.Reflection.Test/GetSignature/Field/ReadOnlyField.cs -------------------------------------------------------------------------------- /test/Z.Reflection.Test/GetSignature/Field/StaticField.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/test/Z.Reflection.Test/GetSignature/Field/StaticField.cs -------------------------------------------------------------------------------- /test/Z.Reflection.Test/GetSignature/Field/VolatileField.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/test/Z.Reflection.Test/GetSignature/Field/VolatileField.cs -------------------------------------------------------------------------------- /test/Z.Reflection.Test/GetSignature/Method/PublicMethod.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/test/Z.Reflection.Test/GetSignature/Method/PublicMethod.cs -------------------------------------------------------------------------------- /test/Z.Reflection.Test/GetSignature/Method/StaticMethod.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/test/Z.Reflection.Test/GetSignature/Method/StaticMethod.cs -------------------------------------------------------------------------------- /test/Z.Reflection.Test/GetSignature/Type/AbstractClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/test/Z.Reflection.Test/GetSignature/Type/AbstractClass.cs -------------------------------------------------------------------------------- /test/Z.Reflection.Test/GetSignature/Type/GenericClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/test/Z.Reflection.Test/GetSignature/Type/GenericClass.cs -------------------------------------------------------------------------------- /test/Z.Reflection.Test/GetSignature/Type/InheritedClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/test/Z.Reflection.Test/GetSignature/Type/InheritedClass.cs -------------------------------------------------------------------------------- /test/Z.Reflection.Test/GetSignature/Type/InternalClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/test/Z.Reflection.Test/GetSignature/Type/InternalClass.cs -------------------------------------------------------------------------------- /test/Z.Reflection.Test/GetSignature/Type/PublicClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/test/Z.Reflection.Test/GetSignature/Type/PublicClass.cs -------------------------------------------------------------------------------- /test/Z.Reflection.Test/GetSignature/Type/StaticClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/test/Z.Reflection.Test/GetSignature/Type/StaticClass.cs -------------------------------------------------------------------------------- /test/Z.Reflection.Test/System.Object/Object.GetProperty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/test/Z.Reflection.Test/System.Object/Object.GetProperty.cs -------------------------------------------------------------------------------- /tool/empty.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/Z.ExtensionMethods/d46bde5793d1ed59030c9a6866750f68848ac0cf/tool/empty.txt --------------------------------------------------------------------------------