Szkolenie ze slacka
Przed szkoleniem
- wylaczyc powiadomienia slackowe
# Learn playing lol | |
## Smart Ping Menu | |
https://support-leagueoflegends.riotgames.com/hc/en-us/articles/201752974-Smart-Ping | |
Open up the menu by holding down the Alt, Ctrl, G, or V keys and then left-clicking | |
On Mac: the same (Command) just with left mouse click and you can choose the sign. |
WIP |
wip |
@echo off | |
call install visualstudiocode | |
pause |
# taken from https://github.com/aspnet/SignalR-samples/blob/master/.gitattributes | |
# Auto detect text files and perform LF normalization | |
* text=auto | |
*.doc diff=astextplain | |
*.DOC diff=astextplain | |
*.docx diff=astextplain | |
*.DOCX diff=astextplain | |
*.dot diff=astextplain |
using System; | |
using System.ComponentModel; | |
public static class ISynchronizeInvokeExtensions | |
{ | |
public static void InvokeOnUiThread<T>(this T @this, Action<T> action) where T : ISynchronizeInvoke | |
{ | |
if (@this.InvokeRequired) | |
{ | |
@this.Invoke(action, new object[] { @this }); |
using System; | |
using JetBrains.Annotations; | |
public class EnumGuard | |
{ | |
[Pure] | |
public static ArgumentOutOfRangeException CreateMissingEnumException<T>(string paramName, T value) | |
where T : struct | |
{ | |
return new ArgumentOutOfRangeException( |