Include a file: Difference between revisions

Content added Content deleted
(Added C# solution.)
Line 36: Line 36:


=={{header|C sharp}}==
=={{header|C sharp}}==
{{incorrect|C sharp|This does not "include" anything. It simply allows you to refer to things in a namespace without typing the full name. You can always refer to things using the full name without "using".}}

<lang c sharp>using Foo;
<lang csharp>using Foo;
using Foo.Bar;</lang>
using Foo.Bar;</lang>