From 8d8deebd63d3ecad359e6ed6a40467c18fee928d Mon Sep 17 00:00:00 2001 From: Marcello Lamonaca Date: Tue, 29 Mar 2022 18:02:29 +0200 Subject: [PATCH] [C#] Remove extra notes --- DotNet/C#/C#.md | 29 ----------------------------- 1 file changed, 29 deletions(-) diff --git a/DotNet/C#/C#.md b/DotNet/C#/C#.md index 8e98d12..7abd2e4 100644 --- a/DotNet/C#/C#.md +++ b/DotNet/C#/C#.md @@ -634,17 +634,6 @@ The `Convert` type has a pair of methods, `ToBase64String` and `FromBase64String The second most common conversion is from strings to numbers or date and time values. The opposite of `ToString` is `Parse`. Only a few types have a `Parse` method, including all the number types and `DateTime`. -## Random Numbers - -```cs -using System.Random; -Random rand = new Random(); -randomNumber = rand.Next(min, max_not_included); -randomNumber = rand.Next(max_not_included); // o to max_not_included -randomNumber = rand.Next(); // positive random number -randomNumber = rand.NextDouble(); // random number between 0.0 and 1.0 -``` - --- ## Preprocessor Directives @@ -2812,24 +2801,6 @@ match.Groups[index].Index; // position in the input string of the matched group --- -## Performance Tips - -### Bit Tricks - -```cs -(n & 1) == 0 // faster since modulo is "expensive" -//same as -n % 2 == 0 - -n >> m -// same as -n / 2^m - -n << m -// same as -n * 2^m -``` - ## Unsafe Code & Pointers The `unsafe` keyword denotes an *unsafe context*, which is required for any operation involving pointers.