Include a file: Difference between revisions

(Added C# solution.)
Line 36:
 
=={{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 sharpcsharp>using Foo;
using Foo.Bar;</lang>
 
Anonymous user