1
0
mirror of https://github.com/adambard/learnxinyminutes-docs.git synced 2025-08-14 02:34:17 +02:00

typo fix in csharp.html.markdown

This commit is contained in:
ken
2019-04-29 17:07:55 -04:00
committed by GitHub
parent 2dde374091
commit ca32654513

View File

@@ -344,7 +344,7 @@ on a new line! ""Wow!"", the masses cried";
tryInt.ToString();
// Casting
// Cast decimal 15 to a int
// Cast decimal 15 to an int
// and then implicitly cast to long
long x = (int) 15M;
}