Skip to content
View GReturn's full-sized avatar
🦀
Become crab.
🦀
Become crab.
Block or Report

Block or report GReturn

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
GReturn/README.md

Header

"It works on my machine."

🧰 Main Languages:



Top 10 Most Used Languages

Lin's Github Stats

Pinned

  1. C# - Evaluate a mathematical express... C# - Evaluate a mathematical expression as a string
    1
    /*
    2
      An implementation of the Evaluate() function, 
    3
      similar to other programming languages,
    4
      wherein it evaluates string as an expression.
    5
      
  2. C# - Null Checking Using C# 7 Discar... C# - Null Checking Using C# 7 Discards and the C# 9 Way
    1
    /**********************************************************************************
    2
      Discards (_) do not take up memory. These were introduced in C# 7. 
    3
      
    4
      This code evaluates if variable name has a value then return. Else, throw ANE. 
    5
      Additionally, it uses the null-coalescing operator for null checks.