RosettaCodeData/Task/Include-a-file/C-sharp/include-a-file.cs

5 lines
308 B
C#
Raw Permalink Normal View History

2013-04-10 21:29:02 -07:00
/* The C# language specification does not give a mechanism for 'including' one source file within another,
* likely because there is no need - all code compiled within one 'assembly' (individual IDE projects
* are usually compiled to separate assemblies) can 'see' all other code within that assembly.
*/