diff options
author | Irfan Charania <irfan.charania@gmail.com> | 2013-08-12 18:04:11 -0700 |
---|---|---|
committer | Irfan Charania <irfan.charania@gmail.com> | 2013-08-12 18:04:11 -0700 |
commit | bf1f9d811cfc41c33cfeaabca68034ad531a097d (patch) | |
tree | 8684a48f61c7bb9952c4ad1dfbe761363817d5d2 /csharp.html.markdown | |
parent | e17ef8b1802c558ab9d77bd03569816dadabd750 (diff) |
Clean up namespace in C#
Diffstat (limited to 'csharp.html.markdown')
-rw-r--r-- | csharp.html.markdown | 6 |
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 |