Skip to content
View jessicamilene's full-sized avatar
👀
👀

Block or report jessicamilene

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 Loading

  1. Adding an existing project to GitHub... Adding an existing project to GitHub (command line)
    1
    # Git
    2
    
                  
    3
    ### How to add your local code to a git repository?
    4
    
                  
    5
    1. Create a repository on GitHub and save the HTTPS for later
  2. [C#] Asynchcronous methods execution... [C#] Asynchcronous methods execution examples
    1
    # Asynchronous Methods - C# Examples
    2
    Below we have a synchronous method that counts to 5. 
    3
    
                  
    4
    ```csharp
    5
    static void Main(string[] args)
  3. [C#] Parallel asynchronous execution... [C#] Parallel asynchronous execution example
    1
    # Parallel asynchronous execution  - C# Example
    2
    ### Synchronous
    3
    Below we have a synchronous example when each worker counts to 10. 
    4
    
                  
    5
    ```csharp
  4. C# - Call an async method on the con... C# - Call an async method on the constructor
    1
    # C#
    2
    ## Call an async method on the contructor and wait for it's execution
    3
    ```csharp
    4
    Task.Run(() => this.FunctionAsync()).Wait();
    5
    ```
  5. CallbackInterface.md CallbackInterface.md
    1
    # C#
    2
    ## Callback using an interface
    3
    
                  
    4
    Some times we want to do something when a specific event occurs, for that we can use a callback as I will show next. 
    5
    For me this implementation was realy important to solve a problem, I had a Library so the code will be closed (can't be changed), but I wanted to provide a way to allow extra operations when some event occurs, that was the solution that I had found.