summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorIrfan Charania <irfan.charania@gmail.com>2013-08-12 18:04:11 -0700
committerIrfan Charania <irfan.charania@gmail.com>2013-08-12 18:04:11 -0700
commitbf1f9d811cfc41c33cfeaabca68034ad531a097d (patch)
tree8684a48f61c7bb9952c4ad1dfbe761363817d5d2
parente17ef8b1802c558ab9d77bd03569816dadabd750 (diff)
Clean up namespace in C#
-rw-r--r--csharp.html.markdown6
1 files changed, 2 insertions, 4 deletions
diff --git a/csharp.html.markdown b/csharp.html.markdown
index d67f6c74..e079571e 100644
--- a/csharp.html.markdown
+++ b/csharp.html.markdown
@@ -20,12 +20,10 @@ Multi-line comments look like this
/// This is an XML documentation comment
/// </summary>
-
+// Specify namespaces application will be using
using System;
using System.Collections.Generic;
-using System.Linq;
-using System.Text;
-using System.Threading.Tasks;
+
// defines scope to organize code into "packages"
namespace Learning