Skip to content
View Edkorenkov's full-sized avatar
Block or Report

Block or report Edkorenkov

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned

  1. Playground Playground Public

    DotNet Playground

    C#

  2. Sandbox.Encryption Sandbox.Encryption Public

    Sandbox MD5 Cryptography service implementation

    C#

  3. Example of how to use .NET Refit Htt... Example of how to use .NET Refit Http Client with Polly Retry Policy
    1
    var retryPolicy = Policy
    2
        .Handle<ApiException>()
    3
        .WaitAndRetryAsync(3, x => TimeSpan.FromSeconds(Math.Pow(2, x)))
    4
        .AsAsyncPolicy<HttpResponseMessage>();
    5
    
                  
  4. Throw Argument Null Exception Throw Argument Null Exception
    1
    // before C#10 and .NET6
    2
    //
    3
    public void GetSomething(string id)
    4
    {
    5
      if (id is null)