Vahid Nasiri

Results 12 issues of Vahid Nasiri

This library has been ported to .NET Core: [https://github.com/VahidN/DNTScheduler.Core](https://github.com/VahidN/DNTScheduler.Core)

Announcement

.NET Core 3x introduces the new built-in [System.Text.Json](https://github.com/dotnet/corefx/blob/master/src/System.Text.Json/docs/SerializerProgrammingModel.md) namespace which has a higher performance than the `Newtonsoft.Json` dependency of `CacheManager.Serialization.Json`. It would be nice to add it later.

Suppose we have an old code like this (belongs to .NET 1x): ```C# ArrayList list = new ArrayList(); list.Add(1); list.Add(2); ``` It would be really useful to have a refactoring...

Feature Request

Suppose we have an old code like this (belongs to .NET 1x): ```C# namespace SimpleParser { public class IanaEncodings { private static readonly Hashtable _map = new Hashtable(); static IanaEncodings()...

Feature Request

EF Core 3x introduces the interceptors concept. By using them we can watch for the specific queries which are `tagged` as `Cachable` (using the standard `TagWith` method) and then cache...

Announcement

Consider these samples: ```csharp var emailAddressRegex = new Regex(@"^[A-Za-z0-9]([_\.\-]?[A-Za-z0-9]+)*\@[A-Za-z0-9]([_\.\-]?[A-Za-z0-9]+)*\.[A-Za-z0-9]([_\.\-]?[A-Za-z0-9]+)*$|^$"); if (emailAddressRegex.IsMatch("an.infinite.loop.sample.just_for.test")) { Console.WriteLine("Matched!"); } // Or var input = "The quick brown fox jumps"; var pattern = @"([a-z ]+)*!"; if...

enhancement

[4.5.0.0 Beta 1](https://github.com/JanKallman/EPPlus/issues/46) * .Net Core support. https://www.nuget.org/packages/EPPlus/4.5.0-beta ``` > dotnet add package EPPlus --version 4.5.0-beta ```

announcement

I've ported this library to .NET Core. You can find it here: [https://github.com/VahidN/EFSecondLevelCache.Core](https://github.com/VahidN/EFSecondLevelCache.Core) This version supports a lot different cache providers including Redis, because it uses the [CacheManager](https://github.com/MichaCo/CacheManager) library as...

Announcement

This library has been ported to .NET Core https://github.com/VahidN/PdfReport.Core

Announcement

I use this snippet a lot, especially when I'm converting a site from bootstarp-3 to bootstarp-4 https://gist.github.com/kdzwinel/426a0f76f113643fa285