summaryrefslogtreecommitdiffhomepage
path: root/csharp.html.markdown
diff options
context:
space:
mode:
authorAdam Bard <github@adambard.com>2015-10-18 11:55:53 +0800
committerAdam Bard <github@adambard.com>2015-10-18 11:55:53 +0800
commit29e7a6631e1f413c892197d13835cc374ebeb192 (patch)
tree20e28ba1db2dee874bce2a3d8573e699de8877a5 /csharp.html.markdown
parent5d8618cac1d55027215a1b778ba731b6434bd927 (diff)
parent07e04e7a2d0f2b7269e4495c338b039a30f70e64 (diff)
Merge pull request #1606 from chriszimmerman/elixir-docs
Receive do documentation for Elixir
Diffstat (limited to 'csharp.html.markdown')
-rw-r--r--csharp.html.markdown2
1 files changed, 2 insertions, 0 deletions
diff --git a/csharp.html.markdown b/csharp.html.markdown
index 7aca2c6f..31c0417e 100644
--- a/csharp.html.markdown
+++ b/csharp.html.markdown
@@ -7,6 +7,7 @@ contributors:
- ["Shaun McCarthy", "http://www.shaunmccarthy.com"]
- ["Wouter Van Schandevijl", "http://github.com/laoujin"]
- ["Jo Pearce", "http://github.com/jdpearce"]
+ - ["Chris Zimmerman", "https://github.com/chriszimmerman"]
filename: LearnCSharp.cs
---
@@ -394,6 +395,7 @@ on a new line! ""Wow!"", the masses cried";
ref int maxCount, // Pass by reference
out int count)
{
+ //the argument passed in as 'count' will hold the value of 15 outside of this function
count = 15; // out param must be assigned before control leaves the method
}