Commit Graph

74 Commits

Author SHA1 Message Date
Kate Reading
bb1e07bbb7 Clarified grammar in LearnCSharp comment about naming files relative to the classes they contain. Otherwise the two comment lines blended together and were a little comfusing. 2015-11-19 11:23:19 -08:00
Levi Bostian
4fffeac272 Merge pull request #1552 from adback03/master
ruby and csharp code example updates
2015-10-18 12:07:05 -05:00
chris@chriszimmerman.net
9f510f3044 Fixed indentation in csharp file. 2015-10-17 19:50:09 -04:00
Andrew Backes
d65e738fc3 [csharp/eng] Partial Classes example 2015-10-15 23:26:57 -05:00
chris@chriszimmerman.net
0671147741 Fixed more spacing issues. 2015-10-15 20:41:22 -04:00
chris@chriszimmerman.net
6a173cb28d Fixed spacing. 2015-10-15 20:39:37 -04:00
chris@chriszimmerman.net
4e0db77a0c Added information about out parameters in C#. 2015-10-15 20:37:29 -04:00
Cameron Wood
ad5b0a615b [csharp/en] Fix for a few spelling errors
Fixed a few typos and spelling errors in the C# documentation
2015-10-13 17:03:26 -04:00
Levi Bostian
f4cfe81a21 Merge pull request #1477 from jdpearce/master
Fixed the custom indexer example (setter return type is void)
2015-10-12 23:26:54 -05:00
Levi Bostian
c15be9b013 Merge pull request #1466 from csuich2/csharp-null-propagation
Added info C# null-propagation
2015-10-12 23:19:24 -05:00
Jo Pearce
0cea1d25d5 Added some simple yield examples 2015-10-12 15:19:37 +01:00
Jo Pearce
51f7c4f6a0 Fixed the custom indexer example (setter return type is void) 2015-10-12 14:09:53 +01:00
Chris
5bbd8419b2 Added info C# null-propagation
Another tool I found useful when learning C#
2015-10-10 22:25:39 -07:00
Chris
d97eaa51d2 Added detail on C# single inheritance
Clarified that the base class name must be the first thing listed
2015-10-10 20:52:59 -07:00
Gabriel Halley
960ee4a185 removing whitespace all over 2015-10-07 23:11:24 -04:00
Guntbert Reiter
f1a90a4e63 Put demonstrative condition into ternary expression
It should be made clear that the part before the ternary operator is
indeed a condition, most often created as some comparison expression.
2015-10-04 16:44:24 +02:00
Laoujin
031637455c [CSharp/en]Fixed typo 2015-02-01 19:01:47 +01:00
Laoujin
8911f368de [CSharp/en]extra details for using EntityFramework and namespaces 2015-02-01 06:01:01 +01:00
Laoujin
f5d0208178 [CSharp/en]Fixes for my own changes 2015-02-01 00:04:10 +01:00
Laoujin
90e8dac0b8 [CSharp/en]updated topics not covered + added myself :) 2015-01-31 23:52:19 +01:00
Laoujin
710f9fa03b [CSharp/en]Added exception handling 2015-01-31 23:14:58 +01:00
Laoujin
dc34af2b5d [CSharp/en]Added [Flags] 2015-01-31 22:34:42 +01:00
Laoujin
4f8b16f817 [CSharp/en]Added static property 2015-01-31 22:05:11 +01:00
Laoujin
04c4433433 [CSharp/en]Added ref and out parameters 2015-01-31 21:45:13 +01:00
Laoujin
69e38974ae [CSharp/en]added casting to converting 2015-01-31 21:41:46 +01:00
Laoujin
495e386121 [CSharp/en]break and continue in loops 2015-01-31 21:40:21 +01:00
Laoujin
1d4bb253fd [CSharp/en]Constants are TitleCase, not SCREAMING_CAPS in C# (as done everywhere in the .NET framework, encouraged by the MS .NET framework guidelines and StackOverflow: http://stackoverflow.com/a/242549/540352) 2015-01-31 20:56:56 +01:00
Laoujin
012a4a8e90 [CSharp/en]Fixed compilation and ef errors 2015-01-31 20:42:27 +01:00
Laoujin
937e6dad51 [CSharp/en]namespaces can have multiple levels with dots 2015-01-31 20:21:52 +01:00
Laoujin
928b8404aa [CSharp/en]XML Comments can be used for external doc generation and for help within the IDE 2015-01-31 20:20:24 +01:00
Adrian Cooney
9a8d8f0e5d Added an example of custom Indexers in C-Sharp [en] 2014-12-10 12:48:45 +00:00
m90
6ce6aa7b54 fix typo -> re(s)pository pattern 2014-10-07 20:38:14 +02:00
Adhithya R
7401ef2411 MethodSignature -> MethodSignatures
Possible typo. Text mentions method names being the same but they weren't. Corrected.
2014-07-07 16:38:17 +05:30
discomethod
4e6a111b6f minor typo 2014-05-26 18:16:11 +01:00
Jakukyo Friel
0622062e2a csharp: typos
combine #574 #575 #576 to one pr
2014-03-20 18:01:56 +08:00
olwaro
9d7566d82e Fix what Nami-Doc spotted. 2014-02-24 21:39:05 +01:00
olwaro
7350deb103 Adds loan pattern example to french translation. 2014-02-24 19:54:54 +01:00
Nami-Doc
5ff5f6c0d8 Merge pull request #535 from Olwaro/loan_pattern
[csharp/en] Adds example of 'using' statement for resources handling
2014-02-17 13:59:34 +01:00
olwaro
f6032ba190 Fixes typos 2014-02-17 10:43:18 +01:00
olwaro
8b62c313b1 Adds an example of 'using' statement 2014-02-16 22:00:33 +01:00
olwaro
00338a1a61 Fix some misleading comments 2014-02-16 14:28:15 +01:00
mvalipour
fbb7ea38a1 Fix while loop iterator incorrect count
The while loop is repeated 100 times not 99 times. 0~99 inclusive.
2013-11-18 22:58:27 +00:00
Adam
dadd4c2a2b Merged with latest from upstream 2013-10-27 22:18:31 -07:00
Adam
7ff3de74fe Updates 2013-10-27 22:17:56 -07:00
Shaun McCarthy
eccc9e0948 Reanmed to Generics instead of templates 2013-10-26 15:27:53 -04:00
Shaun McCarthy
0cee5bd79a Added Interesting Features (and fixed / cleaned up other code)
Fixed syntax errors, made items more succinct, and added a section of interesting features in c#
2013-10-26 14:34:39 -04:00
Melvyn
6d5509e94b added myself to the contributors (C#) 2013-09-21 16:16:04 -04:00
Melvyn
71a62e642d breaking some lines (C#) 2013-09-21 16:11:45 -04:00
Melvyn
758cd94b33 added an example for the foreach loop in C# 2013-09-21 16:07:43 -04:00
Melvyn
10bb7dbce4 various typos + added an example to declare an auto property (C#) 2013-09-21 16:00:08 -04:00