mirror of
https://github.com/m-lamonaca/dev-notes.git
synced 2025-04-06 10:56:41 +00:00
[C#] Remove extra notes
This commit is contained in:
parent
50b7be9011
commit
8d8deebd63
1 changed files with 0 additions and 29 deletions
|
@ -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.
|
||||
|
|
Loading…
Add table
Reference in a new issue