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

5 lines
308 B
Smalltalk

/* 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.
*/