2013-08-13 04:54:53 +04:00
|
|
|
---
|
2022-08-03 05:23:36 +03:00
|
|
|
language: C#
|
2013-08-13 04:54:53 +04:00
|
|
|
contributors:
|
|
|
|
- ["Irfan Charania", "https://github.com/irfancharania"]
|
2013-08-18 00:35:59 +04:00
|
|
|
- ["Max Yankov", "https://github.com/golergka"]
|
2013-10-28 09:17:56 +04:00
|
|
|
- ["Melvyn Laïly", "http://x2a.yt"]
|
2013-10-26 22:34:39 +04:00
|
|
|
- ["Shaun McCarthy", "http://www.shaunmccarthy.com"]
|
2015-02-01 01:39:41 +03:00
|
|
|
- ["Wouter Van Schandevijl", "http://github.com/laoujin"]
|
2015-10-12 17:15:06 +03:00
|
|
|
- ["Jo Pearce", "http://github.com/jdpearce"]
|
2015-10-16 03:37:29 +03:00
|
|
|
- ["Chris Zimmerman", "https://github.com/chriszimmerman"]
|
2016-06-26 15:47:36 +03:00
|
|
|
- ["Shawn McGuire", "https://github.com/bigbash"]
|
2013-08-13 04:54:53 +04:00
|
|
|
filename: LearnCSharp.cs
|
|
|
|
---
|
|
|
|
|
2021-10-31 21:37:33 +03:00
|
|
|
C# is an elegant and type-safe object-oriented language that enables developers to build a variety of secure and robust applications that run on the cross-platform .NET framework.
|
2013-08-13 04:54:53 +04:00
|
|
|
|
2021-10-31 21:37:33 +03:00
|
|
|
[Read more here.](https://docs.microsoft.com/en-us/dotnet/csharp/tour-of-csharp/)
|
2013-08-13 04:54:53 +04:00
|
|
|
|
|
|
|
```c#
|
|
|
|
// Single-line comments start with //
|
2019-10-01 01:11:43 +03:00
|
|
|
|
2013-08-13 04:54:53 +04:00
|
|
|
/*
|
|
|
|
Multi-line comments look like this
|
|
|
|
*/
|
2019-10-01 01:11:43 +03:00
|
|
|
|
2013-08-13 04:54:53 +04:00
|
|
|
/// <summary>
|
2015-01-31 22:10:40 +03:00
|
|
|
/// This is an XML documentation comment which can be used to generate external
|
|
|
|
/// documentation or provide context help within an IDE
|
2013-08-13 04:54:53 +04:00
|
|
|
/// </summary>
|
2015-10-20 18:32:49 +03:00
|
|
|
/// <param name="firstParam">This is some parameter documentation for firstParam</param>
|
|
|
|
/// <returns>Information on the returned value of a function</returns>
|
2021-10-31 21:37:33 +03:00
|
|
|
public void MethodOrClassOrOtherWithParsableHelp(string firstParam) { }
|
2013-08-13 04:54:53 +04:00
|
|
|
|
2015-02-01 08:01:01 +03:00
|
|
|
// Specify the namespaces this source code will be using
|
2016-03-13 11:03:23 +03:00
|
|
|
// The namespaces below are all part of the standard .NET Framework Class Library
|
2013-08-13 04:54:53 +04:00
|
|
|
using System;
|
|
|
|
using System.Collections.Generic;
|
2013-10-26 22:34:39 +04:00
|
|
|
using System.Dynamic;
|
|
|
|
using System.Linq;
|
|
|
|
using System.Net;
|
|
|
|
using System.Threading.Tasks;
|
2014-02-17 01:00:33 +04:00
|
|
|
using System.IO;
|
2013-08-13 04:54:53 +04:00
|
|
|
|
2015-02-01 21:01:47 +03:00
|
|
|
// But this one is not:
|
2015-02-01 08:01:01 +03:00
|
|
|
using System.Data.Entity;
|
|
|
|
// In order to be able to use it, you need to add a dll reference
|
|
|
|
// This can be done with the NuGet package manager: `Install-Package EntityFramework`
|
|
|
|
|
|
|
|
// Namespaces define scope to organize code into "packages" or "modules"
|
|
|
|
// Using this code from another source file: using Learning.CSharp;
|
2021-10-31 21:37:33 +03:00
|
|
|
|
|
|
|
// You can also do this in C# 10, it is called file-scoped namespaces.
|
|
|
|
// namespace Learning.CSharp;
|
|
|
|
|
2015-02-01 08:01:01 +03:00
|
|
|
namespace Learning.CSharp
|
2013-08-13 04:54:53 +04:00
|
|
|
{
|
2015-11-19 22:23:19 +03:00
|
|
|
// Each .cs file should at least contain a class with the same name as the file.
|
|
|
|
// You're allowed to do otherwise, but shouldn't for sanity.
|
2013-08-13 21:10:49 +04:00
|
|
|
public class LearnCSharp
|
|
|
|
{
|
2013-10-26 22:34:39 +04:00
|
|
|
// BASIC SYNTAX - skip to INTERESTING FEATURES if you have used Java or C++ before
|
2015-10-08 06:11:24 +03:00
|
|
|
public static void Syntax()
|
2013-08-13 21:10:49 +04:00
|
|
|
{
|
|
|
|
// Use Console.WriteLine to print lines
|
|
|
|
Console.WriteLine("Hello World");
|
|
|
|
Console.WriteLine(
|
|
|
|
"Integer: " + 10 +
|
|
|
|
" Double: " + 3.14 +
|
|
|
|
" Boolean: " + true);
|
|
|
|
|
|
|
|
// To print without a new line, use Console.Write
|
|
|
|
Console.Write("Hello ");
|
|
|
|
Console.Write("World");
|
|
|
|
|
|
|
|
///////////////////////////////////////////////////
|
|
|
|
// Types & Variables
|
|
|
|
//
|
|
|
|
// Declare a variable using <type> <name>
|
|
|
|
///////////////////////////////////////////////////
|
|
|
|
|
|
|
|
// Sbyte - Signed 8-bit integer
|
|
|
|
// (-128 <= sbyte <= 127)
|
|
|
|
sbyte fooSbyte = 100;
|
|
|
|
|
|
|
|
// Byte - Unsigned 8-bit integer
|
|
|
|
// (0 <= byte <= 255)
|
|
|
|
byte fooByte = 100;
|
|
|
|
|
2013-10-26 22:34:39 +04:00
|
|
|
// Short - 16-bit integer
|
|
|
|
// Signed - (-32,768 <= short <= 32,767)
|
|
|
|
// Unsigned - (0 <= ushort <= 65,535)
|
2013-08-13 21:10:49 +04:00
|
|
|
short fooShort = 10000;
|
|
|
|
ushort fooUshort = 10000;
|
|
|
|
|
2013-10-26 22:34:39 +04:00
|
|
|
// Integer - 32-bit integer
|
|
|
|
int fooInt = 1; // (-2,147,483,648 <= int <= 2,147,483,647)
|
|
|
|
uint fooUint = 1; // (0 <= uint <= 4,294,967,295)
|
2013-08-13 21:10:49 +04:00
|
|
|
|
2013-10-26 22:34:39 +04:00
|
|
|
// Long - 64-bit integer
|
|
|
|
long fooLong = 100000L; // (-9,223,372,036,854,775,808 <= long <= 9,223,372,036,854,775,807)
|
|
|
|
ulong fooUlong = 100000L; // (0 <= ulong <= 18,446,744,073,709,551,615)
|
|
|
|
// Numbers default to being int or uint depending on size.
|
2013-08-13 21:10:49 +04:00
|
|
|
// L is used to denote that this variable value is of type long or ulong
|
|
|
|
|
2013-10-26 22:34:39 +04:00
|
|
|
// Double - Double-precision 64-bit IEEE 754 Floating Point
|
|
|
|
double fooDouble = 123.4; // Precision: 15-16 digits
|
2013-08-13 21:10:49 +04:00
|
|
|
|
|
|
|
// Float - Single-precision 32-bit IEEE 754 Floating Point
|
2013-10-26 22:34:39 +04:00
|
|
|
float fooFloat = 234.5f; // Precision: 7 digits
|
|
|
|
// f is used to denote that this variable value is of type float
|
2013-08-13 21:10:49 +04:00
|
|
|
|
2013-10-26 22:34:39 +04:00
|
|
|
// Decimal - a 128-bits data type, with more precision than other floating-point types,
|
|
|
|
// suited for financial and monetary calculations
|
|
|
|
decimal fooDecimal = 150.3m;
|
2013-08-13 21:10:49 +04:00
|
|
|
|
2013-09-21 23:05:14 +04:00
|
|
|
// Boolean - true & false
|
2013-10-26 22:34:39 +04:00
|
|
|
bool fooBoolean = true; // or false
|
2013-08-13 21:10:49 +04:00
|
|
|
|
|
|
|
// Char - A single 16-bit Unicode character
|
|
|
|
char fooChar = 'A';
|
|
|
|
|
2013-09-21 23:23:24 +04:00
|
|
|
// Strings -- unlike the previous base types which are all value types,
|
2013-10-26 22:34:39 +04:00
|
|
|
// a string is a reference type. That is, you can set it to null
|
|
|
|
string fooString = "\"escape\" quotes and add \n (new lines) and \t (tabs)";
|
2013-08-13 21:10:49 +04:00
|
|
|
Console.WriteLine(fooString);
|
|
|
|
|
2013-10-26 22:34:39 +04:00
|
|
|
// You can access each character of the string with an indexer:
|
2014-02-16 17:24:33 +04:00
|
|
|
char charFromString = fooString[1]; // => 'e'
|
2013-10-26 22:34:39 +04:00
|
|
|
// Strings are immutable: you can't do fooString[1] = 'X';
|
|
|
|
|
|
|
|
// Compare strings with current culture, ignoring case
|
|
|
|
string.Compare(fooString, "x", StringComparison.CurrentCultureIgnoreCase);
|
|
|
|
|
|
|
|
// Formatting, based on sprintf
|
2013-08-13 21:10:49 +04:00
|
|
|
string fooFs = string.Format("Check Check, {0} {1}, {0} {1:0.0}", 1, 2);
|
|
|
|
|
2013-10-26 22:34:39 +04:00
|
|
|
// Dates & Formatting
|
2013-08-13 21:10:49 +04:00
|
|
|
DateTime fooDate = DateTime.Now;
|
|
|
|
Console.WriteLine(fooDate.ToString("hh:mm, dd MMM yyyy"));
|
|
|
|
|
2017-10-23 12:36:18 +03:00
|
|
|
// Verbatim String
|
|
|
|
// You can use the @ symbol before a string literal to escape all characters in the string
|
|
|
|
string path = "C:\\Users\\User\\Desktop";
|
2017-10-23 12:41:57 +03:00
|
|
|
string verbatimPath = @"C:\Users\User\Desktop";
|
2017-10-23 12:36:18 +03:00
|
|
|
Console.WriteLine(path == verbatimPath); // => true
|
|
|
|
|
2013-10-26 22:34:39 +04:00
|
|
|
// You can split a string over two lines with the @ symbol. To escape " use ""
|
2013-08-13 21:10:49 +04:00
|
|
|
string bazString = @"Here's some stuff
|
2013-10-26 22:34:39 +04:00
|
|
|
on a new line! ""Wow!"", the masses cried";
|
2013-08-13 21:10:49 +04:00
|
|
|
|
|
|
|
// Use const or read-only to make a variable immutable
|
|
|
|
// const values are calculated at compile time
|
2015-01-31 22:56:56 +03:00
|
|
|
const int HoursWorkPerWeek = 9001;
|
2013-08-13 21:10:49 +04:00
|
|
|
|
|
|
|
///////////////////////////////////////////////////
|
|
|
|
// Data Structures
|
|
|
|
///////////////////////////////////////////////////
|
|
|
|
|
2013-10-26 22:34:39 +04:00
|
|
|
// Arrays - zero indexed
|
2013-08-13 21:10:49 +04:00
|
|
|
// The array size must be decided upon declaration
|
2022-08-19 21:45:25 +03:00
|
|
|
// The format for declaring an array is
|
2013-08-13 21:10:49 +04:00
|
|
|
// <datatype>[] <var name> = new <datatype>[<array size>];
|
|
|
|
int[] intArray = new int[10];
|
|
|
|
|
|
|
|
// Another way to declare & initialize an array
|
|
|
|
int[] y = { 9000, 1000, 1337 };
|
|
|
|
|
|
|
|
// Indexing an array - Accessing an element
|
|
|
|
Console.WriteLine("intArray @ 0: " + intArray[0]);
|
2013-10-26 22:34:39 +04:00
|
|
|
// Arrays are mutable.
|
2013-08-13 21:10:49 +04:00
|
|
|
intArray[1] = 1;
|
|
|
|
|
|
|
|
// Lists
|
|
|
|
// Lists are used more frequently than arrays as they are more flexible
|
2022-08-19 21:45:25 +03:00
|
|
|
// The format for declaring a list is
|
2013-08-13 21:10:49 +04:00
|
|
|
// List<datatype> <var name> = new List<datatype>();
|
|
|
|
List<int> intList = new List<int>();
|
|
|
|
List<string> stringList = new List<string>();
|
2015-10-14 00:03:26 +03:00
|
|
|
List<int> z = new List<int> { 9000, 1000, 1337 }; // initialize
|
2013-10-26 23:27:53 +04:00
|
|
|
// The <> are for generics - Check out the cool stuff section
|
2013-08-13 21:10:49 +04:00
|
|
|
|
|
|
|
// Lists don't default to a value;
|
|
|
|
// A value must be added before accessing the index
|
|
|
|
intList.Add(1);
|
2022-08-19 21:45:25 +03:00
|
|
|
Console.WriteLine("intList at 0: " + intList[0]);
|
2013-08-13 21:10:49 +04:00
|
|
|
|
2022-08-19 21:45:25 +03:00
|
|
|
// Other data structures to check out:
|
2013-08-13 21:10:49 +04:00
|
|
|
// Stack/Queue
|
2013-09-21 23:33:11 +04:00
|
|
|
// Dictionary (an implementation of a hash map)
|
2013-10-26 22:34:39 +04:00
|
|
|
// HashSet
|
2013-08-13 21:10:49 +04:00
|
|
|
// Read-only Collections
|
2022-08-19 21:45:25 +03:00
|
|
|
// Tuple (.NET 4+)
|
2013-08-13 21:10:49 +04:00
|
|
|
|
|
|
|
///////////////////////////////////////
|
|
|
|
// Operators
|
|
|
|
///////////////////////////////////////
|
|
|
|
Console.WriteLine("\n->Operators");
|
|
|
|
|
|
|
|
int i1 = 1, i2 = 2; // Shorthand for multiple declarations
|
|
|
|
|
|
|
|
// Arithmetic is straightforward
|
2014-02-16 17:24:33 +04:00
|
|
|
Console.WriteLine(i1 + i2 - i1 * 3 / 7); // => 3
|
2013-08-13 21:10:49 +04:00
|
|
|
|
|
|
|
// Modulo
|
|
|
|
Console.WriteLine("11%3 = " + (11 % 3)); // => 2
|
|
|
|
|
|
|
|
// Comparison operators
|
|
|
|
Console.WriteLine("3 == 2? " + (3 == 2)); // => false
|
|
|
|
Console.WriteLine("3 != 2? " + (3 != 2)); // => true
|
|
|
|
Console.WriteLine("3 > 2? " + (3 > 2)); // => true
|
|
|
|
Console.WriteLine("3 < 2? " + (3 < 2)); // => false
|
|
|
|
Console.WriteLine("2 <= 2? " + (2 <= 2)); // => true
|
|
|
|
Console.WriteLine("2 >= 2? " + (2 >= 2)); // => true
|
|
|
|
|
|
|
|
// Bitwise operators!
|
|
|
|
/*
|
|
|
|
~ Unary bitwise complement
|
|
|
|
<< Signed left shift
|
|
|
|
>> Signed right shift
|
|
|
|
& Bitwise AND
|
|
|
|
^ Bitwise exclusive OR
|
|
|
|
| Bitwise inclusive OR
|
|
|
|
*/
|
|
|
|
|
2022-08-19 21:45:25 +03:00
|
|
|
// Incrementing
|
2013-08-13 21:10:49 +04:00
|
|
|
int i = 0;
|
2022-08-19 21:45:25 +03:00
|
|
|
Console.WriteLine("\n->Inc/Dec-rement");
|
|
|
|
Console.WriteLine(i++); //Prints "0", i = 1. Post-Increment
|
|
|
|
Console.WriteLine(++i); //Prints "2", i = 2. Pre-Increment
|
|
|
|
Console.WriteLine(i--); //Prints "2", i = 1. Post-Decrement
|
|
|
|
Console.WriteLine(--i); //Prints "0", i = 0. Pre-Decrement
|
2013-08-13 21:10:49 +04:00
|
|
|
|
|
|
|
///////////////////////////////////////
|
|
|
|
// Control Structures
|
|
|
|
///////////////////////////////////////
|
|
|
|
Console.WriteLine("\n->Control Structures");
|
|
|
|
|
2022-08-19 21:45:25 +03:00
|
|
|
// If statements are C-like
|
2013-08-13 21:10:49 +04:00
|
|
|
int j = 10;
|
|
|
|
if (j == 10)
|
|
|
|
{
|
|
|
|
Console.WriteLine("I get printed");
|
|
|
|
}
|
|
|
|
else if (j > 10)
|
|
|
|
{
|
|
|
|
Console.WriteLine("I don't");
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
Console.WriteLine("I also don't");
|
|
|
|
}
|
|
|
|
|
|
|
|
// Ternary operators
|
|
|
|
// A simple if/else can be written as follows
|
|
|
|
// <condition> ? <true> : <false>
|
2015-10-04 17:44:24 +03:00
|
|
|
int toCompare = 17;
|
|
|
|
string isTrue = toCompare == 17 ? "True" : "False";
|
2013-08-13 21:10:49 +04:00
|
|
|
|
|
|
|
// While loop
|
|
|
|
int fooWhile = 0;
|
|
|
|
while (fooWhile < 100)
|
|
|
|
{
|
2019-10-01 01:11:43 +03:00
|
|
|
// Iterated 100 times, fooWhile 0->99
|
2013-08-13 21:10:49 +04:00
|
|
|
fooWhile++;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Do While Loop
|
|
|
|
int fooDoWhile = 0;
|
|
|
|
do
|
|
|
|
{
|
2015-01-31 23:40:21 +03:00
|
|
|
// Start iteration 100 times, fooDoWhile 0->99
|
|
|
|
if (false)
|
|
|
|
continue; // skip the current iteration
|
|
|
|
|
2013-08-13 21:10:49 +04:00
|
|
|
fooDoWhile++;
|
2015-01-31 23:40:21 +03:00
|
|
|
|
|
|
|
if (fooDoWhile == 50)
|
|
|
|
break; // breaks from the loop completely
|
|
|
|
|
2013-08-13 21:10:49 +04:00
|
|
|
} while (fooDoWhile < 100);
|
|
|
|
|
2019-10-01 01:11:43 +03:00
|
|
|
// for loop structure => for(<start_statement>; <conditional>; <step>)
|
2013-10-26 22:34:39 +04:00
|
|
|
for (int fooFor = 0; fooFor < 10; fooFor++)
|
2013-08-13 21:10:49 +04:00
|
|
|
{
|
2019-10-01 01:11:43 +03:00
|
|
|
// Iterated 10 times, fooFor 0->9
|
2013-08-13 21:10:49 +04:00
|
|
|
}
|
2013-10-26 22:34:39 +04:00
|
|
|
|
|
|
|
// For Each Loop
|
2013-09-22 00:07:43 +04:00
|
|
|
// foreach loop structure => foreach(<iteratorType> <iteratorName> in <enumerable>)
|
2013-10-26 22:34:39 +04:00
|
|
|
// The foreach loop loops over any object implementing IEnumerable or IEnumerable<T>
|
2022-08-19 21:45:25 +03:00
|
|
|
// All the collection types (Array, List, Dictionary...) in the .NET framework
|
2013-10-26 22:34:39 +04:00
|
|
|
// implement one or both of these interfaces.
|
|
|
|
// (The ToCharArray() could be removed, because a string also implements IEnumerable)
|
2013-09-22 00:07:43 +04:00
|
|
|
foreach (char character in "Hello World".ToCharArray())
|
|
|
|
{
|
2019-10-01 01:11:43 +03:00
|
|
|
// Iterated over all the characters in the string
|
2013-09-22 00:07:43 +04:00
|
|
|
}
|
2013-08-13 21:10:49 +04:00
|
|
|
|
|
|
|
// Switch Case
|
2022-08-19 21:45:25 +03:00
|
|
|
// A switch works with byte, short, char, and int data types.
|
2013-08-13 21:10:49 +04:00
|
|
|
// It also works with enumerated types (discussed in Enum Types),
|
|
|
|
// the String class, and a few special classes that wrap
|
|
|
|
// primitive types: Character, Byte, Short, and Integer.
|
|
|
|
int month = 3;
|
|
|
|
string monthString;
|
|
|
|
switch (month)
|
|
|
|
{
|
|
|
|
case 1:
|
|
|
|
monthString = "January";
|
|
|
|
break;
|
|
|
|
case 2:
|
|
|
|
monthString = "February";
|
|
|
|
break;
|
|
|
|
case 3:
|
|
|
|
monthString = "March";
|
|
|
|
break;
|
2013-10-26 22:34:39 +04:00
|
|
|
// You can assign more than one case to an action
|
|
|
|
// But you can't add an action without a break before another case
|
2022-08-19 21:45:25 +03:00
|
|
|
// (if you want to do this, you would have to explicitly add a goto case x)
|
2013-10-26 22:34:39 +04:00
|
|
|
case 6:
|
|
|
|
case 7:
|
|
|
|
case 8:
|
|
|
|
monthString = "Summer time!!";
|
|
|
|
break;
|
2013-08-13 21:10:49 +04:00
|
|
|
default:
|
|
|
|
monthString = "Some other month";
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
///////////////////////////////////////
|
2013-09-21 23:49:20 +04:00
|
|
|
// Converting Data Types And Typecasting
|
2013-08-13 21:10:49 +04:00
|
|
|
///////////////////////////////////////
|
|
|
|
|
|
|
|
// Converting data
|
|
|
|
|
|
|
|
// Convert String To Integer
|
2015-01-31 23:41:46 +03:00
|
|
|
// this will throw a FormatException on failure
|
2019-10-01 01:11:43 +03:00
|
|
|
int.Parse("123"); // returns an integer version of "123"
|
2013-08-13 21:10:49 +04:00
|
|
|
|
2022-08-19 21:45:25 +03:00
|
|
|
// TryParse will default to the type's default value on failure
|
|
|
|
// in this case 0
|
2013-08-13 21:10:49 +04:00
|
|
|
int tryInt;
|
2014-05-26 21:16:11 +04:00
|
|
|
if (int.TryParse("123", out tryInt)) // Function is boolean
|
2013-10-26 22:34:39 +04:00
|
|
|
Console.WriteLine(tryInt); // 123
|
2013-08-13 21:10:49 +04:00
|
|
|
|
|
|
|
// Convert Integer To String
|
2022-08-19 21:45:25 +03:00
|
|
|
// The Convert class has a number of methods to facilitate conversions
|
2021-10-31 21:37:33 +03:00
|
|
|
|
|
|
|
// String to int
|
|
|
|
|
|
|
|
// Better
|
|
|
|
bool result = int.TryParse(string, out var integer)
|
|
|
|
int.Parse(string);
|
|
|
|
|
|
|
|
// Not recommended
|
2013-08-13 21:10:49 +04:00
|
|
|
Convert.ToString(123);
|
2021-10-31 21:37:33 +03:00
|
|
|
|
|
|
|
// Int to string
|
2013-10-26 22:34:39 +04:00
|
|
|
tryInt.ToString();
|
2015-01-31 23:41:46 +03:00
|
|
|
|
2015-02-01 02:04:10 +03:00
|
|
|
// Casting
|
2019-04-30 00:07:55 +03:00
|
|
|
// Cast decimal 15 to an int
|
2015-01-31 23:41:46 +03:00
|
|
|
// and then implicitly cast to long
|
|
|
|
long x = (int) 15M;
|
2013-10-26 22:34:39 +04:00
|
|
|
}
|
2013-08-13 21:10:49 +04:00
|
|
|
|
2013-10-26 22:34:39 +04:00
|
|
|
///////////////////////////////////////
|
|
|
|
// CLASSES - see definitions at end of file
|
|
|
|
///////////////////////////////////////
|
|
|
|
public static void Classes()
|
|
|
|
{
|
|
|
|
// See Declaration of objects at end of file
|
2013-08-13 21:10:49 +04:00
|
|
|
|
|
|
|
// Use new to instantiate a class
|
|
|
|
Bicycle trek = new Bicycle();
|
|
|
|
|
|
|
|
// Call object methods
|
2013-10-26 22:34:39 +04:00
|
|
|
trek.SpeedUp(3); // You should always use setter and getter methods
|
|
|
|
trek.Cadence = 100;
|
2013-08-13 21:10:49 +04:00
|
|
|
|
|
|
|
// ToString is a convention to display the value of this Object.
|
2013-10-26 22:34:39 +04:00
|
|
|
Console.WriteLine("trek info: " + trek.Info());
|
2013-08-13 21:10:49 +04:00
|
|
|
|
|
|
|
// Instantiate a new Penny Farthing
|
|
|
|
PennyFarthing funbike = new PennyFarthing(1, 10);
|
2013-10-26 22:34:39 +04:00
|
|
|
Console.WriteLine("funbike info: " + funbike.Info());
|
2013-08-13 21:10:49 +04:00
|
|
|
|
|
|
|
Console.Read();
|
|
|
|
} // End main method
|
|
|
|
|
2022-08-19 21:45:25 +03:00
|
|
|
// Available in C# 9 and later, this is basically syntactic sugar for a class. Records are immutable*.
|
2021-10-31 21:37:33 +03:00
|
|
|
public record ARecord(string Csharp);
|
|
|
|
|
2019-10-01 01:11:43 +03:00
|
|
|
// CONSOLE ENTRY - A console application must have a main method as an entry point
|
2013-10-26 22:34:39 +04:00
|
|
|
public static void Main(string[] args)
|
|
|
|
{
|
|
|
|
OtherInterestingFeatures();
|
|
|
|
}
|
|
|
|
|
|
|
|
//
|
|
|
|
// INTERESTING FEATURES
|
|
|
|
//
|
2015-10-08 06:11:24 +03:00
|
|
|
|
2013-10-26 22:34:39 +04:00
|
|
|
// DEFAULT METHOD SIGNATURES
|
|
|
|
|
|
|
|
public // Visibility
|
2015-10-08 06:11:24 +03:00
|
|
|
static // Allows for direct call on class without object
|
2013-10-26 22:34:39 +04:00
|
|
|
int // Return Type,
|
|
|
|
MethodSignatures(
|
|
|
|
int maxCount, // First variable, expects an int
|
|
|
|
int count = 0, // will default the value to 0 if not passed in
|
|
|
|
int another = 3,
|
|
|
|
params string[] otherParams // captures all other parameters passed to method
|
|
|
|
)
|
2015-10-08 06:11:24 +03:00
|
|
|
{
|
2013-10-26 22:34:39 +04:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2015-01-31 23:45:13 +03:00
|
|
|
// Methods can have the same name, as long as the signature is unique
|
|
|
|
// A method that differs only in return type is not unique
|
|
|
|
public static void MethodSignatures(
|
|
|
|
ref int maxCount, // Pass by reference
|
|
|
|
out int count)
|
|
|
|
{
|
2019-10-01 01:11:43 +03:00
|
|
|
// the argument passed in as 'count' will hold the value of 15 outside of this function
|
2015-10-18 02:50:09 +03:00
|
|
|
count = 15; // out param must be assigned before control leaves the method
|
2015-01-31 23:45:13 +03:00
|
|
|
}
|
|
|
|
|
2013-10-26 23:27:53 +04:00
|
|
|
// GENERICS
|
2013-10-26 22:34:39 +04:00
|
|
|
// The classes for TKey and TValue is specified by the user calling this function.
|
2022-08-19 21:45:25 +03:00
|
|
|
// This method emulates Python's dict.setdefault()
|
2013-10-26 22:34:39 +04:00
|
|
|
public static TValue SetDefault<TKey, TValue>(
|
2015-10-08 06:11:24 +03:00
|
|
|
IDictionary<TKey, TValue> dictionary,
|
|
|
|
TKey key,
|
2013-10-26 22:34:39 +04:00
|
|
|
TValue defaultItem)
|
|
|
|
{
|
|
|
|
TValue result;
|
|
|
|
if (!dictionary.TryGetValue(key, out result))
|
|
|
|
return dictionary[key] = defaultItem;
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2015-10-08 06:11:24 +03:00
|
|
|
// You can narrow down the objects that are passed in
|
2013-10-26 22:34:39 +04:00
|
|
|
public static void IterateAndPrint<T>(T toPrint) where T: IEnumerable<int>
|
|
|
|
{
|
|
|
|
// We can iterate, since T is a IEnumerable
|
|
|
|
foreach (var item in toPrint)
|
|
|
|
// Item is an int
|
|
|
|
Console.WriteLine(item.ToString());
|
|
|
|
}
|
2016-03-13 11:03:23 +03:00
|
|
|
|
2015-10-12 17:15:06 +03:00
|
|
|
// YIELD
|
|
|
|
// Usage of the "yield" keyword indicates that the method it appears in is an Iterator
|
|
|
|
// (this means you can use it in a foreach loop)
|
|
|
|
public static IEnumerable<int> YieldCounter(int limit = 10)
|
|
|
|
{
|
|
|
|
for (var i = 0; i < limit; i++)
|
|
|
|
yield return i;
|
|
|
|
}
|
|
|
|
|
|
|
|
// which you would call like this :
|
|
|
|
public static void PrintYieldCounterToConsole()
|
|
|
|
{
|
|
|
|
foreach (var counter in YieldCounter())
|
|
|
|
Console.WriteLine(counter);
|
|
|
|
}
|
2016-03-13 11:03:23 +03:00
|
|
|
|
2015-10-12 17:15:06 +03:00
|
|
|
// you can use more than one "yield return" in a method
|
|
|
|
public static IEnumerable<int> ManyYieldCounter()
|
|
|
|
{
|
|
|
|
yield return 0;
|
|
|
|
yield return 1;
|
|
|
|
yield return 2;
|
|
|
|
yield return 3;
|
|
|
|
}
|
2016-03-13 11:03:23 +03:00
|
|
|
|
2015-10-12 17:15:06 +03:00
|
|
|
// you can also use "yield break" to stop the Iterator
|
|
|
|
// this method would only return half of the values from 0 to limit.
|
|
|
|
public static IEnumerable<int> YieldCounterWithBreak(int limit = 10)
|
|
|
|
{
|
|
|
|
for (var i = 0; i < limit; i++)
|
|
|
|
{
|
|
|
|
if (i > limit/2) yield break;
|
|
|
|
yield return i;
|
|
|
|
}
|
2016-10-02 15:09:49 +03:00
|
|
|
}
|
2013-10-26 22:34:39 +04:00
|
|
|
|
|
|
|
public static void OtherInterestingFeatures()
|
|
|
|
{
|
|
|
|
// OPTIONAL PARAMETERS
|
|
|
|
MethodSignatures(3, 1, 3, "Some", "Extra", "Strings");
|
2015-10-14 00:03:26 +03:00
|
|
|
MethodSignatures(3, another: 3); // explicitly set a parameter, skipping optional ones
|
2013-10-26 22:34:39 +04:00
|
|
|
|
2015-01-31 23:45:13 +03:00
|
|
|
// BY REF AND OUT PARAMETERS
|
|
|
|
int maxCount = 0, count; // ref params must have value
|
|
|
|
MethodSignatures(ref maxCount, out count);
|
|
|
|
|
2013-10-26 22:34:39 +04:00
|
|
|
// EXTENSION METHODS
|
|
|
|
int i = 3;
|
|
|
|
i.Print(); // Defined below
|
|
|
|
|
|
|
|
// NULLABLE TYPES - great for database interaction / return values
|
|
|
|
// any value type (i.e. not a class) can be made nullable by suffixing a ?
|
|
|
|
// <type>? <var name> = <value>
|
|
|
|
int? nullable = null; // short hand for Nullable<int>
|
|
|
|
Console.WriteLine("Nullable variable: " + nullable);
|
|
|
|
bool hasValue = nullable.HasValue; // true if not null
|
|
|
|
|
|
|
|
// ?? is syntactic sugar for specifying default value (coalesce)
|
|
|
|
// in case variable is null
|
|
|
|
int notNullable = nullable ?? 0; // 0
|
2016-03-13 11:03:23 +03:00
|
|
|
|
2015-10-14 00:03:26 +03:00
|
|
|
// ?. is an operator for null-propagation - a shorthand way of checking for null
|
2015-10-11 08:25:39 +03:00
|
|
|
nullable?.Print(); // Use the Print() extension method if nullable isn't null
|
2013-10-26 22:34:39 +04:00
|
|
|
|
|
|
|
// IMPLICITLY TYPED VARIABLES - you can let the compiler work out what the type is:
|
|
|
|
var magic = "magic is a string, at compile time, so you still get type safety";
|
|
|
|
// magic = 9; will not work as magic is a string, not an int
|
|
|
|
|
2013-10-26 23:27:53 +04:00
|
|
|
// GENERICS
|
|
|
|
//
|
2015-10-08 06:11:24 +03:00
|
|
|
var phonebook = new Dictionary<string, string>() {
|
2013-10-26 22:34:39 +04:00
|
|
|
{"Sarah", "212 555 5555"} // Add some entries to the phone book
|
|
|
|
};
|
|
|
|
|
2013-10-26 23:27:53 +04:00
|
|
|
// Calling SETDEFAULT defined as a generic above
|
2013-10-26 22:34:39 +04:00
|
|
|
Console.WriteLine(SetDefault<string,string>(phonebook, "Shaun", "No Phone")); // No Phone
|
2015-10-08 06:11:24 +03:00
|
|
|
// nb, you don't need to specify the TKey and TValue since they can be
|
2013-10-26 22:34:39 +04:00
|
|
|
// derived implicitly
|
|
|
|
Console.WriteLine(SetDefault(phonebook, "Sarah", "No Phone")); // 212 555 5555
|
|
|
|
|
|
|
|
// LAMBDA EXPRESSIONS - allow you to write code in line
|
|
|
|
Func<int, int> square = (x) => x * x; // Last T item is the return value
|
|
|
|
Console.WriteLine(square(3)); // 9
|
|
|
|
|
2015-02-01 01:14:58 +03:00
|
|
|
// ERROR HANDLING - coping with an uncertain world
|
|
|
|
try
|
|
|
|
{
|
|
|
|
var funBike = PennyFarthing.CreateWithGears(6);
|
|
|
|
|
|
|
|
// will no longer execute because CreateWithGears throws an exception
|
|
|
|
string some = "";
|
|
|
|
if (true) some = null;
|
|
|
|
some.ToLower(); // throws a NullReferenceException
|
|
|
|
}
|
|
|
|
catch (NotSupportedException)
|
|
|
|
{
|
|
|
|
Console.WriteLine("Not so much fun now!");
|
|
|
|
}
|
|
|
|
catch (Exception ex) // catch all other exceptions
|
|
|
|
{
|
|
|
|
throw new ApplicationException("It hit the fan", ex);
|
|
|
|
// throw; // A rethrow that preserves the callstack
|
|
|
|
}
|
|
|
|
// catch { } // catch-all without capturing the Exception
|
|
|
|
finally
|
|
|
|
{
|
|
|
|
// executes after try or catch
|
|
|
|
}
|
|
|
|
|
2014-02-24 22:54:54 +04:00
|
|
|
// DISPOSABLE RESOURCES MANAGEMENT - let you handle unmanaged resources easily.
|
2014-02-17 01:00:33 +04:00
|
|
|
// Most of objects that access unmanaged resources (file handle, device contexts, etc.)
|
2015-10-08 06:11:24 +03:00
|
|
|
// implement the IDisposable interface. The using statement takes care of
|
2014-02-17 01:00:33 +04:00
|
|
|
// cleaning those IDisposable objects for you.
|
|
|
|
using (StreamWriter writer = new StreamWriter("log.txt"))
|
|
|
|
{
|
|
|
|
writer.WriteLine("Nothing suspicious here");
|
2014-02-17 13:43:18 +04:00
|
|
|
// At the end of scope, resources will be released.
|
2014-02-17 01:00:33 +04:00
|
|
|
// Even if an exception is thrown.
|
2015-10-08 06:11:24 +03:00
|
|
|
}
|
2014-02-17 01:00:33 +04:00
|
|
|
|
2013-10-26 22:34:39 +04:00
|
|
|
// PARALLEL FRAMEWORK
|
2019-11-18 11:22:38 +03:00
|
|
|
// https://devblogs.microsoft.com/csharpfaq/parallel-programming-in-net-framework-4-getting-started/
|
2015-10-08 06:11:24 +03:00
|
|
|
|
2016-10-11 10:33:17 +03:00
|
|
|
var words = new List<string> {"dog", "cat", "horse", "pony"};
|
|
|
|
|
|
|
|
Parallel.ForEach(words,
|
|
|
|
new ParallelOptions() { MaxDegreeOfParallelism = 4 },
|
|
|
|
word =>
|
2013-10-26 22:34:39 +04:00
|
|
|
{
|
2016-10-11 10:33:17 +03:00
|
|
|
Console.WriteLine(word);
|
2013-10-26 22:34:39 +04:00
|
|
|
}
|
2016-10-11 10:33:17 +03:00
|
|
|
);
|
2013-10-26 22:34:39 +04:00
|
|
|
|
2019-10-01 01:11:43 +03:00
|
|
|
// Running this will produce different outputs
|
|
|
|
// since each thread finishes at different times.
|
|
|
|
// Some example outputs are:
|
|
|
|
// cat dog horse pony
|
|
|
|
// dog horse pony cat
|
2013-10-26 22:34:39 +04:00
|
|
|
|
|
|
|
// DYNAMIC OBJECTS (great for working with other languages)
|
|
|
|
dynamic student = new ExpandoObject();
|
|
|
|
student.FirstName = "First Name"; // No need to define class first!
|
|
|
|
|
|
|
|
// You can even add methods (returns a string, and takes in a string)
|
|
|
|
student.Introduce = new Func<string, string>(
|
|
|
|
(introduceTo) => string.Format("Hey {0}, this is {1}", student.FirstName, introduceTo));
|
|
|
|
Console.WriteLine(student.Introduce("Beth"));
|
|
|
|
|
2015-10-08 06:11:24 +03:00
|
|
|
// IQUERYABLE<T> - almost all collections implement this, which gives you a lot of
|
2013-10-26 22:34:39 +04:00
|
|
|
// very useful Map / Filter / Reduce style methods
|
|
|
|
var bikes = new List<Bicycle>();
|
|
|
|
bikes.Sort(); // Sorts the array
|
|
|
|
bikes.Sort((b1, b2) => b1.Wheels.CompareTo(b2.Wheels)); // Sorts based on wheels
|
|
|
|
var result = bikes
|
|
|
|
.Where(b => b.Wheels > 3) // Filters - chainable (returns IQueryable of previous type)
|
|
|
|
.Where(b => b.IsBroken && b.HasTassles)
|
|
|
|
.Select(b => b.ToString()); // Map - we only this selects, so result is a IQueryable<string>
|
|
|
|
|
|
|
|
var sum = bikes.Sum(b => b.Wheels); // Reduce - sums all the wheels in the collection
|
|
|
|
|
|
|
|
// Create a list of IMPLICIT objects based on some parameters of the bike
|
|
|
|
var bikeSummaries = bikes.Select(b=>new { Name = b.Name, IsAwesome = !b.IsBroken && b.HasTassles });
|
|
|
|
// Hard to show here, but you get type ahead completion since the compiler can implicitly work
|
|
|
|
// out the types above!
|
|
|
|
foreach (var bikeSummary in bikeSummaries.Where(b => b.IsAwesome))
|
|
|
|
Console.WriteLine(bikeSummary.Name);
|
|
|
|
|
|
|
|
// ASPARALLEL
|
2017-08-02 22:03:42 +03:00
|
|
|
// And this is where things get wicked - combine linq and parallel operations
|
2013-10-26 22:34:39 +04:00
|
|
|
var threeWheelers = bikes.AsParallel().Where(b => b.Wheels == 3).Select(b => b.Name);
|
2015-10-08 06:11:24 +03:00
|
|
|
// this will happen in parallel! Threads will automagically be spun up and the
|
|
|
|
// results divvied amongst them! Amazing for large datasets when you have lots of
|
2013-10-26 22:34:39 +04:00
|
|
|
// cores
|
|
|
|
|
|
|
|
// LINQ - maps a store to IQueryable<T> objects, with delayed execution
|
|
|
|
// e.g. LinqToSql - maps to a database, LinqToXml maps to an xml document
|
2014-10-07 22:38:14 +04:00
|
|
|
var db = new BikeRepository();
|
2013-10-26 22:34:39 +04:00
|
|
|
|
|
|
|
// execution is delayed, which is great when querying a database
|
2014-02-25 00:39:05 +04:00
|
|
|
var filter = db.Bikes.Where(b => b.HasTassles); // no query run
|
2013-10-26 22:34:39 +04:00
|
|
|
if (42 > 6) // You can keep adding filters, even conditionally - great for "advanced search" functionality
|
2014-02-25 00:39:05 +04:00
|
|
|
filter = filter.Where(b => b.IsBroken); // no query run
|
2013-10-26 22:34:39 +04:00
|
|
|
|
2014-02-25 00:39:05 +04:00
|
|
|
var query = filter
|
2013-10-26 22:34:39 +04:00
|
|
|
.OrderBy(b => b.Wheels)
|
|
|
|
.ThenBy(b => b.Name)
|
|
|
|
.Select(b => b.Name); // still no query run
|
|
|
|
|
2017-08-02 22:03:42 +03:00
|
|
|
// Now the query runs, but opens a reader, so only populates as you iterate through
|
2015-10-08 06:11:24 +03:00
|
|
|
foreach (string bike in query)
|
2013-10-26 22:34:39 +04:00
|
|
|
Console.WriteLine(result);
|
2015-10-08 06:11:24 +03:00
|
|
|
|
2013-10-26 22:34:39 +04:00
|
|
|
|
|
|
|
|
|
|
|
}
|
2013-08-13 21:10:49 +04:00
|
|
|
|
|
|
|
} // End LearnCSharp class
|
|
|
|
|
|
|
|
// You can include other classes in a .cs file
|
|
|
|
|
2013-10-26 22:34:39 +04:00
|
|
|
public static class Extensions
|
|
|
|
{
|
2015-10-31 18:20:03 +03:00
|
|
|
// EXTENSION METHODS
|
2013-10-26 22:34:39 +04:00
|
|
|
public static void Print(this object obj)
|
|
|
|
{
|
|
|
|
Console.WriteLine(obj.ToString());
|
|
|
|
}
|
|
|
|
}
|
2013-08-13 21:10:49 +04:00
|
|
|
|
2017-10-24 08:29:11 +03:00
|
|
|
|
|
|
|
// DELEGATES AND EVENTS
|
|
|
|
public class DelegateTest
|
|
|
|
{
|
|
|
|
public static int count = 0;
|
|
|
|
public static int Increment()
|
|
|
|
{
|
|
|
|
// increment count then return it
|
|
|
|
return ++count;
|
|
|
|
}
|
|
|
|
|
2019-12-11 09:59:57 +03:00
|
|
|
// A delegate is a reference to a method.
|
2017-10-24 08:29:11 +03:00
|
|
|
// To reference the Increment method,
|
2019-12-11 09:59:57 +03:00
|
|
|
// first declare a delegate with the same signature,
|
|
|
|
// i.e. takes no arguments and returns an int
|
2017-10-24 08:29:11 +03:00
|
|
|
public delegate int IncrementDelegate();
|
|
|
|
|
|
|
|
// An event can also be used to trigger delegates
|
|
|
|
// Create an event with the delegate type
|
|
|
|
public static event IncrementDelegate MyEvent;
|
|
|
|
|
|
|
|
static void Main(string[] args)
|
|
|
|
{
|
|
|
|
// Refer to the Increment method by instantiating the delegate
|
|
|
|
// and passing the method itself in as an argument
|
|
|
|
IncrementDelegate inc = new IncrementDelegate(Increment);
|
|
|
|
Console.WriteLine(inc()); // => 1
|
|
|
|
|
|
|
|
// Delegates can be composed with the + operator
|
|
|
|
IncrementDelegate composedInc = inc;
|
|
|
|
composedInc += inc;
|
|
|
|
composedInc += inc;
|
|
|
|
|
|
|
|
// composedInc will run Increment 3 times
|
|
|
|
Console.WriteLine(composedInc()); // => 4
|
|
|
|
|
|
|
|
|
|
|
|
// Subscribe to the event with the delegate
|
|
|
|
MyEvent += new IncrementDelegate(Increment);
|
|
|
|
MyEvent += new IncrementDelegate(Increment);
|
|
|
|
|
|
|
|
// Trigger the event
|
|
|
|
// ie. run all delegates subscribed to this event
|
|
|
|
Console.WriteLine(MyEvent()); // => 6
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-08-13 21:10:49 +04:00
|
|
|
// Class Declaration Syntax:
|
2013-09-21 23:49:20 +04:00
|
|
|
// <public/private/protected/internal> class <class name>{
|
2013-08-13 21:10:49 +04:00
|
|
|
// //data fields, constructors, functions all inside.
|
|
|
|
// //functions are called as methods in Java.
|
|
|
|
// }
|
|
|
|
|
|
|
|
public class Bicycle
|
|
|
|
{
|
|
|
|
// Bicycle's Fields/Variables
|
2013-10-26 22:34:39 +04:00
|
|
|
public int Cadence // Public: Can be accessed from anywhere
|
|
|
|
{
|
|
|
|
get // get - define a method to retrieve the property
|
|
|
|
{
|
|
|
|
return _cadence;
|
|
|
|
}
|
2015-10-14 00:03:26 +03:00
|
|
|
set // set - define a method to set a property
|
2013-10-26 22:34:39 +04:00
|
|
|
{
|
2014-03-20 14:01:56 +04:00
|
|
|
_cadence = value; // Value is the value passed in to the setter
|
2013-10-26 22:34:39 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
private int _cadence;
|
|
|
|
|
|
|
|
protected virtual int Gear // Protected: Accessible from the class and subclasses
|
|
|
|
{
|
|
|
|
get; // creates an auto property so you don't need a member field
|
|
|
|
set;
|
|
|
|
}
|
|
|
|
|
|
|
|
internal int Wheels // Internal: Accessible from within the assembly
|
|
|
|
{
|
|
|
|
get;
|
|
|
|
private set; // You can set modifiers on the get/set methods
|
|
|
|
}
|
|
|
|
|
2015-10-08 06:11:24 +03:00
|
|
|
int _speed; // Everything is private by default: Only accessible from within this class.
|
2014-03-20 14:01:56 +04:00
|
|
|
// can also use keyword private
|
2013-10-26 22:34:39 +04:00
|
|
|
public string Name { get; set; }
|
2019-10-12 18:38:56 +03:00
|
|
|
|
2016-10-21 18:46:25 +03:00
|
|
|
// Properties also have a special syntax for when you want a readonly property
|
|
|
|
// that simply returns the result of an expression
|
2019-10-12 18:38:56 +03:00
|
|
|
public string LongName => Name + " " + _speed + " speed";
|
2013-08-18 00:45:01 +04:00
|
|
|
|
2013-08-18 01:08:24 +04:00
|
|
|
// Enum is a value type that consists of a set of named constants
|
2013-10-26 22:34:39 +04:00
|
|
|
// It is really just mapping a name to a value (an int, unless specified otherwise).
|
|
|
|
// The approved types for an enum are byte, sbyte, short, ushort, int, uint, long, or ulong.
|
|
|
|
// An enum can't contain the same value twice.
|
|
|
|
public enum BikeBrand
|
2013-08-18 01:08:24 +04:00
|
|
|
{
|
|
|
|
AIST,
|
|
|
|
BMC,
|
2013-10-26 22:34:39 +04:00
|
|
|
Electra = 42, //you can explicitly set a value to a name
|
2014-02-16 17:24:33 +04:00
|
|
|
Gitane // 43
|
2013-08-18 01:08:24 +04:00
|
|
|
}
|
|
|
|
// We defined this type inside a Bicycle class, so it is a nested type
|
2022-01-03 19:11:11 +03:00
|
|
|
// Code outside of this class should reference this type as Bicycle.BikeBrand
|
2013-08-18 01:08:24 +04:00
|
|
|
|
2013-10-26 22:34:39 +04:00
|
|
|
public BikeBrand Brand; // After declaring an enum type, we can declare the field of this type
|
2013-08-18 01:08:24 +04:00
|
|
|
|
2015-02-01 00:34:42 +03:00
|
|
|
// Decorate an enum with the FlagsAttribute to indicate that multiple values can be switched on
|
2015-10-23 04:38:55 +03:00
|
|
|
// Any class derived from Attribute can be used to decorate types, methods, parameters etc
|
|
|
|
// Bitwise operators & and | can be used to perform and/or operations
|
|
|
|
|
|
|
|
[Flags]
|
2015-02-01 00:34:42 +03:00
|
|
|
public enum BikeAccessories
|
|
|
|
{
|
|
|
|
None = 0,
|
|
|
|
Bell = 1,
|
|
|
|
MudGuards = 2, // need to set the values manually!
|
|
|
|
Racks = 4,
|
|
|
|
Lights = 8,
|
2015-02-01 02:04:10 +03:00
|
|
|
FullPackage = Bell | MudGuards | Racks | Lights
|
2015-02-01 00:34:42 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
// Usage: aBike.Accessories.HasFlag(Bicycle.BikeAccessories.Bell)
|
|
|
|
// Before .NET 4: (aBike.Accessories & Bicycle.BikeAccessories.Bell) == Bicycle.BikeAccessories.Bell
|
|
|
|
public BikeAccessories Accessories { get; set; }
|
|
|
|
|
2017-08-23 00:32:47 +03:00
|
|
|
// Static members belong to the type itself rather than specific object.
|
2013-08-18 00:45:01 +04:00
|
|
|
// You can access them without a reference to any object:
|
|
|
|
// Console.WriteLine("Bicycles created: " + Bicycle.bicyclesCreated);
|
2015-02-01 00:05:11 +03:00
|
|
|
public static int BicyclesCreated { get; set; }
|
2013-08-13 21:10:49 +04:00
|
|
|
|
|
|
|
// readonly values are set at run time
|
|
|
|
// they can only be assigned upon declaration or in a constructor
|
2013-10-26 22:34:39 +04:00
|
|
|
readonly bool _hasCardsInSpokes = false; // read-only private
|
2013-08-13 21:10:49 +04:00
|
|
|
|
|
|
|
// Constructors are a way of creating classes
|
|
|
|
// This is a default constructor
|
2015-10-08 06:11:24 +03:00
|
|
|
public Bicycle()
|
2013-08-13 21:10:49 +04:00
|
|
|
{
|
2014-03-20 14:01:56 +04:00
|
|
|
this.Gear = 1; // you can access members of the object with the keyword this
|
2013-10-26 22:34:39 +04:00
|
|
|
Cadence = 50; // but you don't always need it
|
2013-08-13 21:10:49 +04:00
|
|
|
_speed = 5;
|
2013-10-26 22:34:39 +04:00
|
|
|
Name = "Bontrager";
|
|
|
|
Brand = BikeBrand.AIST;
|
|
|
|
BicyclesCreated++;
|
2013-08-13 21:10:49 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
// This is a specified constructor (it contains arguments)
|
|
|
|
public Bicycle(int startCadence, int startSpeed, int startGear,
|
2015-10-08 06:11:24 +03:00
|
|
|
string name, bool hasCardsInSpokes, BikeBrand brand)
|
2013-10-26 22:34:39 +04:00
|
|
|
: base() // calls base first
|
2013-08-13 21:10:49 +04:00
|
|
|
{
|
2015-10-08 06:11:24 +03:00
|
|
|
Gear = startGear;
|
2013-10-26 22:34:39 +04:00
|
|
|
Cadence = startCadence;
|
|
|
|
_speed = startSpeed;
|
2015-10-08 06:11:24 +03:00
|
|
|
Name = name;
|
2013-10-26 22:34:39 +04:00
|
|
|
_hasCardsInSpokes = hasCardsInSpokes;
|
|
|
|
Brand = brand;
|
2013-08-13 21:10:49 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
// Constructors can be chained
|
2013-10-26 22:34:39 +04:00
|
|
|
public Bicycle(int startCadence, int startSpeed, BikeBrand brand) :
|
|
|
|
this(startCadence, startSpeed, 0, "big wheels", true, brand)
|
2013-08-13 21:10:49 +04:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
// Function Syntax:
|
|
|
|
// <public/private/protected> <return type> <function name>(<args>)
|
|
|
|
|
|
|
|
// classes can implement getters and setters for their fields
|
2013-09-22 00:00:08 +04:00
|
|
|
// or they can implement properties (this is the preferred way in C#)
|
2013-08-13 21:10:49 +04:00
|
|
|
|
2013-09-22 00:11:45 +04:00
|
|
|
// Method parameters can have default values.
|
2013-10-26 22:34:39 +04:00
|
|
|
// In this case, methods can be called with these parameters omitted
|
2013-08-18 01:09:07 +04:00
|
|
|
public void SpeedUp(int increment = 1)
|
2013-08-13 21:10:49 +04:00
|
|
|
{
|
|
|
|
_speed += increment;
|
|
|
|
}
|
|
|
|
|
2013-08-18 01:09:07 +04:00
|
|
|
public void SlowDown(int decrement = 1)
|
2013-08-13 21:10:49 +04:00
|
|
|
{
|
|
|
|
_speed -= decrement;
|
|
|
|
}
|
|
|
|
|
|
|
|
// properties get/set values
|
|
|
|
// when only data needs to be accessed, consider using properties.
|
|
|
|
// properties may have either get or set, or both
|
|
|
|
private bool _hasTassles; // private variable
|
2013-08-17 18:01:08 +04:00
|
|
|
public bool HasTassles // public accessor
|
2013-08-13 21:10:49 +04:00
|
|
|
{
|
|
|
|
get { return _hasTassles; }
|
|
|
|
set { _hasTassles = value; }
|
|
|
|
}
|
2013-10-26 22:34:39 +04:00
|
|
|
|
|
|
|
// You can also define an automatic property in one line
|
|
|
|
// this syntax will create a backing field automatically.
|
|
|
|
// You can set an access modifier on either the getter or the setter (or both)
|
|
|
|
// to restrict its access:
|
|
|
|
public bool IsBroken { get; private set; }
|
2013-08-13 21:10:49 +04:00
|
|
|
|
2013-08-17 18:03:35 +04:00
|
|
|
// Properties can be auto-implemented
|
2013-08-13 21:10:49 +04:00
|
|
|
public int FrameSize
|
|
|
|
{
|
2013-08-17 18:03:35 +04:00
|
|
|
get;
|
2013-08-13 21:10:49 +04:00
|
|
|
// you are able to specify access modifiers for either get or set
|
|
|
|
// this means only Bicycle class can call set on Framesize
|
2013-08-17 18:03:35 +04:00
|
|
|
private set;
|
2013-08-13 21:10:49 +04:00
|
|
|
}
|
|
|
|
|
2014-12-10 15:48:45 +03:00
|
|
|
// It's also possible to define custom Indexers on objects.
|
|
|
|
// All though this is not entirely useful in this example, you
|
2015-10-12 16:07:56 +03:00
|
|
|
// could do bicycle[0] which returns "chris" to get the first passenger or
|
2014-12-10 15:48:45 +03:00
|
|
|
// bicycle[1] = "lisa" to set the passenger. (of this apparent quattrocycle)
|
2015-01-31 22:42:27 +03:00
|
|
|
private string[] passengers = { "chris", "phil", "darren", "regina" };
|
2014-12-10 15:48:45 +03:00
|
|
|
|
|
|
|
public string this[int i]
|
|
|
|
{
|
|
|
|
get {
|
|
|
|
return passengers[i];
|
|
|
|
}
|
|
|
|
|
|
|
|
set {
|
2015-10-12 16:07:56 +03:00
|
|
|
passengers[i] = value;
|
2014-12-10 15:48:45 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-10-01 01:11:43 +03:00
|
|
|
// Method to display the attribute values of this Object.
|
2013-10-26 22:34:39 +04:00
|
|
|
public virtual string Info()
|
2013-08-13 21:10:49 +04:00
|
|
|
{
|
2013-10-26 22:34:39 +04:00
|
|
|
return "Gear: " + Gear +
|
|
|
|
" Cadence: " + Cadence +
|
|
|
|
" Speed: " + _speed +
|
|
|
|
" Name: " + Name +
|
|
|
|
" Cards in Spokes: " + (_hasCardsInSpokes ? "yes" : "no") +
|
2013-08-13 21:10:49 +04:00
|
|
|
"\n------------------------------\n"
|
|
|
|
;
|
|
|
|
}
|
2013-08-18 01:09:21 +04:00
|
|
|
|
|
|
|
// Methods can also be static. It can be useful for helper methods
|
2016-06-28 09:53:25 +03:00
|
|
|
public static bool DidWeCreateEnoughBicycles()
|
2013-08-18 01:09:21 +04:00
|
|
|
{
|
2013-09-22 00:00:08 +04:00
|
|
|
// Within a static method, we only can reference static class members
|
2013-10-26 22:34:39 +04:00
|
|
|
return BicyclesCreated > 9000;
|
2013-08-18 01:09:21 +04:00
|
|
|
} // If your class only needs static members, consider marking the class itself as static.
|
|
|
|
|
2013-10-26 22:34:39 +04:00
|
|
|
|
2013-08-13 21:10:49 +04:00
|
|
|
} // end class Bicycle
|
|
|
|
|
|
|
|
// PennyFarthing is a subclass of Bicycle
|
|
|
|
class PennyFarthing : Bicycle
|
|
|
|
{
|
|
|
|
// (Penny Farthings are those bicycles with the big front wheel.
|
|
|
|
// They have no gears.)
|
|
|
|
|
|
|
|
// calling parent constructor
|
|
|
|
public PennyFarthing(int startCadence, int startSpeed) :
|
2013-10-26 22:34:39 +04:00
|
|
|
base(startCadence, startSpeed, 0, "PennyFarthing", true, BikeBrand.Electra)
|
2013-08-13 21:10:49 +04:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2013-10-26 22:34:39 +04:00
|
|
|
protected override int Gear
|
2013-08-13 21:10:49 +04:00
|
|
|
{
|
2013-10-26 22:34:39 +04:00
|
|
|
get
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
set
|
|
|
|
{
|
2015-02-01 01:14:58 +03:00
|
|
|
throw new InvalidOperationException("You can't change gears on a PennyFarthing");
|
2013-10-26 22:34:39 +04:00
|
|
|
}
|
2013-08-13 21:10:49 +04:00
|
|
|
}
|
2013-08-18 01:28:21 +04:00
|
|
|
|
2015-02-01 01:14:58 +03:00
|
|
|
public static PennyFarthing CreateWithGears(int gears)
|
|
|
|
{
|
|
|
|
var penny = new PennyFarthing(1, 1);
|
|
|
|
penny.Gear = gears; // Oops, can't do this!
|
|
|
|
return penny;
|
|
|
|
}
|
|
|
|
|
2013-10-26 22:34:39 +04:00
|
|
|
public override string Info()
|
2013-08-18 01:28:21 +04:00
|
|
|
{
|
|
|
|
string result = "PennyFarthing bicycle ";
|
|
|
|
result += base.ToString(); // Calling the base version of the method
|
2013-10-26 22:34:39 +04:00
|
|
|
return result;
|
2013-08-18 01:28:21 +04:00
|
|
|
}
|
2013-08-13 21:10:49 +04:00
|
|
|
}
|
2013-08-18 01:28:55 +04:00
|
|
|
|
|
|
|
// Interfaces only contain signatures of the members, without the implementation.
|
|
|
|
interface IJumpable
|
|
|
|
{
|
|
|
|
void Jump(int meters); // all interface members are implicitly public
|
|
|
|
}
|
|
|
|
|
|
|
|
interface IBreakable
|
|
|
|
{
|
2013-09-22 00:00:08 +04:00
|
|
|
bool Broken { get; } // interfaces can contain properties as well as methods & events
|
2013-08-18 01:28:55 +04:00
|
|
|
}
|
|
|
|
|
2015-10-23 04:21:33 +03:00
|
|
|
// Classes can inherit only one other class, but can implement any amount of interfaces,
|
|
|
|
// however the base class name must be the first in the list and all interfaces follow
|
2013-08-18 01:28:55 +04:00
|
|
|
class MountainBike : Bicycle, IJumpable, IBreakable
|
|
|
|
{
|
|
|
|
int damage = 0;
|
|
|
|
|
|
|
|
public void Jump(int meters)
|
|
|
|
{
|
|
|
|
damage += meters;
|
|
|
|
}
|
|
|
|
|
2013-10-26 22:34:39 +04:00
|
|
|
public bool Broken
|
2013-08-18 01:28:55 +04:00
|
|
|
{
|
|
|
|
get
|
|
|
|
{
|
|
|
|
return damage > 100;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2013-08-13 04:54:53 +04:00
|
|
|
|
2013-10-26 22:34:39 +04:00
|
|
|
/// <summary>
|
2015-10-08 06:11:24 +03:00
|
|
|
/// Used to connect to DB for LinqToSql example.
|
2013-10-26 22:34:39 +04:00
|
|
|
/// EntityFramework Code First is awesome (similar to Ruby's ActiveRecord, but bidirectional)
|
2019-11-18 11:22:38 +03:00
|
|
|
/// https://docs.microsoft.com/ef/ef6/modeling/code-first/workflows/new-database
|
2013-10-26 22:34:39 +04:00
|
|
|
/// </summary>
|
2015-01-31 22:42:27 +03:00
|
|
|
public class BikeRepository : DbContext
|
2013-10-26 22:34:39 +04:00
|
|
|
{
|
2014-10-07 22:38:14 +04:00
|
|
|
public BikeRepository()
|
2013-10-26 22:34:39 +04:00
|
|
|
: base()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
public DbSet<Bicycle> Bikes { get; set; }
|
|
|
|
}
|
2016-03-13 11:03:23 +03:00
|
|
|
|
2015-10-16 07:26:57 +03:00
|
|
|
// Classes can be split across multiple .cs files
|
|
|
|
// A1.cs
|
2016-03-13 11:03:23 +03:00
|
|
|
public partial class A
|
2015-10-16 07:26:57 +03:00
|
|
|
{
|
|
|
|
public static void A1()
|
|
|
|
{
|
|
|
|
Console.WriteLine("Method A1 in class A");
|
|
|
|
}
|
|
|
|
}
|
2016-03-13 11:03:23 +03:00
|
|
|
|
2015-10-16 07:26:57 +03:00
|
|
|
// A2.cs
|
|
|
|
public partial class A
|
|
|
|
{
|
|
|
|
public static void A2()
|
|
|
|
{
|
|
|
|
Console.WriteLine("Method A2 in class A");
|
|
|
|
}
|
|
|
|
}
|
2016-03-13 11:03:23 +03:00
|
|
|
|
2015-10-16 07:26:57 +03:00
|
|
|
// Program using the partial class "A"
|
2016-03-13 11:03:23 +03:00
|
|
|
public class Program
|
2015-10-16 07:26:57 +03:00
|
|
|
{
|
|
|
|
static void Main()
|
|
|
|
{
|
|
|
|
A.A1();
|
|
|
|
A.A2();
|
|
|
|
}
|
|
|
|
}
|
2016-10-02 15:09:49 +03:00
|
|
|
|
2016-06-26 15:47:36 +03:00
|
|
|
// String interpolation by prefixing the string with $
|
|
|
|
// and wrapping the expression you want to interpolate with { braces }
|
2017-10-23 12:50:07 +03:00
|
|
|
// You can also combine both interpolated and verbatim strings with $@
|
2016-06-26 15:47:36 +03:00
|
|
|
public class Rectangle
|
|
|
|
{
|
|
|
|
public int Length { get; set; }
|
|
|
|
public int Width { get; set; }
|
|
|
|
}
|
2016-10-02 15:09:49 +03:00
|
|
|
|
2016-06-26 15:47:36 +03:00
|
|
|
class Program
|
|
|
|
{
|
|
|
|
static void Main(string[] args)
|
|
|
|
{
|
|
|
|
Rectangle rect = new Rectangle { Length = 5, Width = 3 };
|
|
|
|
Console.WriteLine($"The length is {rect.Length} and the width is {rect.Width}");
|
2017-10-23 12:50:07 +03:00
|
|
|
|
|
|
|
string username = "User";
|
|
|
|
Console.WriteLine($@"C:\Users\{username}\Desktop");
|
2016-06-26 15:47:36 +03:00
|
|
|
}
|
|
|
|
}
|
2016-10-02 15:09:49 +03:00
|
|
|
|
|
|
|
// New C# 6 features
|
|
|
|
class GlassBall : IJumpable, IBreakable
|
|
|
|
{
|
|
|
|
// Autoproperty initializers
|
|
|
|
public int Damage { get; private set; } = 0;
|
|
|
|
|
|
|
|
// Autoproperty initializers on getter-only properties
|
|
|
|
public string Name { get; } = "Glass ball";
|
|
|
|
|
|
|
|
// Getter-only autoproperty that is initialized in constructor
|
|
|
|
public string GenieName { get; }
|
|
|
|
|
|
|
|
public GlassBall(string genieName = null)
|
|
|
|
{
|
|
|
|
GenieName = genieName;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void Jump(int meters)
|
|
|
|
{
|
|
|
|
if (meters < 0)
|
|
|
|
// New nameof() expression; compiler will check that the identifier exists
|
|
|
|
// nameof(x) == "x"
|
|
|
|
// Prevents e.g. parameter names changing but not updated in error messages
|
|
|
|
throw new ArgumentException("Cannot jump negative amount!", nameof(meters));
|
|
|
|
|
|
|
|
Damage += meters;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Expression-bodied properties ...
|
|
|
|
public bool Broken
|
|
|
|
=> Damage > 100;
|
|
|
|
|
|
|
|
// ... and methods
|
|
|
|
public override string ToString()
|
|
|
|
// Interpolated string
|
|
|
|
=> $"{Name}. Damage taken: {Damage}";
|
|
|
|
|
|
|
|
public string SummonGenie()
|
|
|
|
// Null-conditional operators
|
|
|
|
// x?.y will return null immediately if x is null; y is not evaluated
|
|
|
|
=> GenieName?.ToUpper();
|
|
|
|
}
|
2017-02-09 19:40:04 +03:00
|
|
|
|
|
|
|
static class MagicService
|
|
|
|
{
|
|
|
|
private static bool LogException(Exception ex)
|
|
|
|
{
|
2019-10-01 01:11:43 +03:00
|
|
|
// log exception somewhere
|
2017-02-09 19:40:04 +03:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
public static bool CastSpell(string spell)
|
|
|
|
{
|
|
|
|
try
|
|
|
|
{
|
|
|
|
// Pretend we call API here
|
|
|
|
throw new MagicServiceException("Spell failed", 42);
|
|
|
|
|
|
|
|
// Spell succeeded
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
// Only catch if Code is 42 i.e. spell failed
|
|
|
|
catch(MagicServiceException ex) when (ex.Code == 42)
|
|
|
|
{
|
|
|
|
// Spell failed
|
|
|
|
return false;
|
|
|
|
}
|
2019-10-12 18:38:56 +03:00
|
|
|
// Other exceptions, or MagicServiceException where Code is not 42
|
2017-02-09 19:40:04 +03:00
|
|
|
catch(Exception ex) when (LogException(ex))
|
|
|
|
{
|
|
|
|
// Execution never reaches this block
|
|
|
|
// The stack is not unwound
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
// Note that catching a MagicServiceException and rethrowing if Code
|
|
|
|
// is not 42 or 117 is different, as then the final catch-all block
|
|
|
|
// will not catch the rethrown exception
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public class MagicServiceException : Exception
|
|
|
|
{
|
|
|
|
public int Code { get; }
|
|
|
|
|
|
|
|
public MagicServiceException(string message, int code) : base(message)
|
|
|
|
{
|
|
|
|
Code = code;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public static class PragmaWarning {
|
|
|
|
// Obsolete attribute
|
|
|
|
[Obsolete("Use NewMethod instead", false)]
|
|
|
|
public static void ObsoleteMethod()
|
|
|
|
{
|
2019-10-01 01:11:43 +03:00
|
|
|
// obsolete code
|
2017-02-09 19:40:04 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
public static void NewMethod()
|
|
|
|
{
|
2019-10-01 01:11:43 +03:00
|
|
|
// new code
|
2017-02-09 19:40:04 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
public static void Main()
|
|
|
|
{
|
|
|
|
ObsoleteMethod(); // CS0618: 'ObsoleteMethod is obsolete: Use NewMethod instead'
|
|
|
|
#pragma warning disable CS0618
|
|
|
|
ObsoleteMethod(); // no warning
|
|
|
|
#pragma warning restore CS0618
|
|
|
|
ObsoleteMethod(); // CS0618: 'ObsoleteMethod is obsolete: Use NewMethod instead'
|
|
|
|
}
|
|
|
|
}
|
2013-10-26 22:34:39 +04:00
|
|
|
} // End Namespace
|
2017-02-09 19:40:04 +03:00
|
|
|
|
|
|
|
using System;
|
|
|
|
// C# 6, static using
|
|
|
|
using static System.Math;
|
|
|
|
|
|
|
|
namespace Learning.More.CSharp
|
|
|
|
{
|
|
|
|
class StaticUsing
|
|
|
|
{
|
|
|
|
static void Main()
|
|
|
|
{
|
|
|
|
// Without a static using statement..
|
|
|
|
Console.WriteLine("The square root of 4 is {}.", Math.Sqrt(4));
|
|
|
|
// With one
|
|
|
|
Console.WriteLine("The square root of 4 is {}.", Sqrt(4));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2017-08-10 08:52:43 +03:00
|
|
|
|
2019-10-01 01:11:43 +03:00
|
|
|
// New C# 7 Feature
|
|
|
|
// Install Microsoft.Net.Compilers Latest from Nuget
|
|
|
|
// Install System.ValueTuple Latest from Nuget
|
2017-08-10 08:52:43 +03:00
|
|
|
using System;
|
|
|
|
namespace Csharp7
|
|
|
|
{
|
2017-10-24 10:20:20 +03:00
|
|
|
// TUPLES, DECONSTRUCTION AND DISCARDS
|
|
|
|
class TuplesTest
|
|
|
|
{
|
|
|
|
public (string, string) GetName()
|
|
|
|
{
|
|
|
|
// Fields in tuples are by default named Item1, Item2...
|
|
|
|
var names1 = ("Peter", "Parker");
|
|
|
|
Console.WriteLine(names1.Item2); // => Parker
|
|
|
|
|
|
|
|
// Fields can instead be explicitly named
|
|
|
|
// Type 1 Declaration
|
|
|
|
(string FirstName, string LastName) names2 = ("Peter", "Parker");
|
|
|
|
|
|
|
|
// Type 2 Declaration
|
|
|
|
var names3 = (First:"Peter", Last:"Parker");
|
|
|
|
|
|
|
|
Console.WriteLine(names2.FirstName); // => Peter
|
|
|
|
Console.WriteLine(names3.Last); // => Parker
|
|
|
|
|
|
|
|
return names3;
|
|
|
|
}
|
|
|
|
|
|
|
|
public string GetLastName() {
|
|
|
|
var fullName = GetName();
|
|
|
|
|
|
|
|
// Tuples can be deconstructed
|
|
|
|
(string firstName, string lastName) = fullName;
|
|
|
|
|
|
|
|
// Fields in a deconstructed tuple can be discarded by using _
|
|
|
|
var (_, last) = fullName;
|
|
|
|
return last;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Any type can be deconstructed in the same way by
|
|
|
|
// specifying a Deconstruct method
|
|
|
|
public int randomNumber = 4;
|
|
|
|
public int anotherRandomNumber = 10;
|
|
|
|
|
|
|
|
public void Deconstruct(out int randomNumber, out int anotherRandomNumber)
|
|
|
|
{
|
|
|
|
randomNumber = this.randomNumber;
|
|
|
|
anotherRandomNumber = this.anotherRandomNumber;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void Main(string[] args)
|
|
|
|
{
|
|
|
|
var tt = new TuplesTest();
|
|
|
|
(int num1, int num2) = tt;
|
|
|
|
Console.WriteLine($"num1: {num1}, num2: {num2}"); // => num1: 4, num2: 10
|
|
|
|
|
|
|
|
Console.WriteLine(tt.GetLastName());
|
|
|
|
}
|
|
|
|
}
|
2019-10-12 18:38:56 +03:00
|
|
|
|
2017-10-27 09:27:14 +03:00
|
|
|
// PATTERN MATCHING
|
|
|
|
class PatternMatchingTest
|
|
|
|
{
|
|
|
|
public static (string, int)? CreateLogMessage(object data)
|
|
|
|
{
|
|
|
|
switch(data)
|
|
|
|
{
|
|
|
|
// Additional filtering using when
|
|
|
|
case System.Net.Http.HttpRequestException h when h.Message.Contains("404"):
|
|
|
|
return (h.Message, 404);
|
|
|
|
case System.Net.Http.HttpRequestException h when h.Message.Contains("400"):
|
|
|
|
return (h.Message, 400);
|
|
|
|
case Exception e:
|
|
|
|
return (e.Message, 500);
|
|
|
|
case string s:
|
|
|
|
return (s, s.Contains("Error") ? 500 : 200);
|
|
|
|
case null:
|
|
|
|
return null;
|
|
|
|
default:
|
|
|
|
return (data.ToString(), 500);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// REFERENCE LOCALS
|
|
|
|
// Allow you to return a reference to an object instead of just its value
|
|
|
|
class RefLocalsTest
|
|
|
|
{
|
|
|
|
// note ref in return
|
|
|
|
public static ref string FindItem(string[] arr, string el)
|
|
|
|
{
|
|
|
|
for(int i=0; i<arr.Length; i++)
|
|
|
|
{
|
|
|
|
if(arr[i] == el) {
|
|
|
|
// return the reference
|
|
|
|
return ref arr[i];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
throw new Exception("Item not found");
|
|
|
|
}
|
|
|
|
|
|
|
|
public static void SomeMethod()
|
|
|
|
{
|
|
|
|
string[] arr = {"this", "is", "an", "array"};
|
|
|
|
|
|
|
|
// note refs everywhere
|
|
|
|
ref string item = ref FindItem(arr, "array");
|
|
|
|
item = "apple";
|
|
|
|
Console.WriteLine(arr[3]); // => apple
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// LOCAL FUNCTIONS
|
|
|
|
class LocalFunctionTest
|
|
|
|
{
|
|
|
|
private static int _id = 0;
|
|
|
|
public int id;
|
|
|
|
public LocalFunctionTest()
|
|
|
|
{
|
|
|
|
id = generateId();
|
|
|
|
|
|
|
|
// This local function can only be accessed in this scope
|
|
|
|
int generateId()
|
|
|
|
{
|
|
|
|
return _id++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public static void AnotherMethod()
|
|
|
|
{
|
|
|
|
var lf1 = new LocalFunctionTest();
|
|
|
|
var lf2 = new LocalFunctionTest();
|
|
|
|
Console.WriteLine($"{lf1.id}, {lf2.id}"); // => 0, 1
|
|
|
|
|
|
|
|
int id = generateId();
|
|
|
|
// error CS0103: The name 'generateId' does not exist in the current context
|
|
|
|
}
|
|
|
|
}
|
2017-08-10 08:52:43 +03:00
|
|
|
}
|
|
|
|
|
2013-08-13 04:54:53 +04:00
|
|
|
```
|
|
|
|
|
|
|
|
## Topics Not Covered
|
2021-10-31 21:37:33 +03:00
|
|
|
✨ New, 👍 Old, 🎈 LTS, 🔥 Cross-platform, 🎁 Windows-only
|
2013-08-13 04:54:53 +04:00
|
|
|
|
|
|
|
* Attributes
|
2021-10-31 21:37:33 +03:00
|
|
|
|
|
|
|
* Asynchronous Programming
|
|
|
|
|
2015-02-01 01:39:41 +03:00
|
|
|
* Web Development
|
2021-10-31 21:37:33 +03:00
|
|
|
* ASP.NET Core ✨
|
|
|
|
|
2015-02-01 01:39:41 +03:00
|
|
|
* Desktop Development
|
2021-10-31 21:37:33 +03:00
|
|
|
* Windows Presentation Foundation 👍 🎈 🎁
|
|
|
|
* Universal Windows Platform ✨ 🎁
|
|
|
|
* Uno Platform 🔥 ✨
|
|
|
|
* WinForms 👍 🎈 🎁
|
|
|
|
* Avalonia 🔥 ✨
|
|
|
|
* WinUI ✨ 🎁
|
|
|
|
|
|
|
|
* Cross-platform Development
|
|
|
|
* Xamarin.Forms 👍
|
|
|
|
* MAUI ✨
|
|
|
|
|
2013-08-13 04:54:53 +04:00
|
|
|
|
|
|
|
## Further Reading
|
|
|
|
|
2019-11-18 11:22:38 +03:00
|
|
|
* [C# language reference](https://docs.microsoft.com/dotnet/csharp/language-reference/)
|
|
|
|
* [Learn .NET](https://dotnet.microsoft.com/learn)
|
|
|
|
* [C# Coding Conventions](https://docs.microsoft.com/en-us/dotnet/csharp/programming-guide/inside-a-program/coding-conventions)
|
2013-08-13 04:54:53 +04:00
|
|
|
* [DotNetPerls](http://www.dotnetperls.com)
|
|
|
|
* [C# in Depth](http://manning.com/skeet2)
|
2020-01-24 17:15:12 +03:00
|
|
|
* [Programming C# 5.0](http://shop.oreilly.com/product/0636920024064.do)
|
|
|
|
* [LINQ Pocket Reference](http://shop.oreilly.com/product/9780596519254.do)
|
2013-08-13 04:54:53 +04:00
|
|
|
* [Windows Forms Programming in C#](http://www.amazon.com/Windows-Forms-Programming-Chris-Sells/dp/0321116208)
|
2019-10-12 18:38:56 +03:00
|
|
|
* [freeCodeCamp - C# Tutorial for Beginners](https://www.youtube.com/watch?v=GhQdlIFylQ8)
|
2022-01-03 19:11:11 +03:00
|
|
|
|