This may be in already, but I was looking at one of the topics about Windows Powershell and how the wordfile would be very large. Isn't the main reason because it's using the .Net Framework.
So I was thinking maybe in the big word file you could have something like this:
(this is only to try to get a preliminary point across -- I know it may not make total sense)
Okay, admittedly you're likely going to use the provided MS IDEs to develop in these languages (unless you're doing MONO development) but I would think it might be more useful for keeping the wordfile small. And you'd only want to Include the "C" sections because the other language definitions would differ.
So I was thinking maybe in the big word file you could have something like this:
Code: Select all
/L16"Net Framework 1.0"
/C1"Statements"
etc
/L17"Net Framework 2.0"
IncludeCSectionsFrom "Net Framework 1.0"
/C1"Statements"
newstatement1 newstatement2
etc
/L18"VB.Net 2005"
IncludeCSectionsFrom "Net Framework 2.0"
/L19"C#"
IncludeCSectionsFrom "Net Framework 2.0"
Okay, admittedly you're likely going to use the provided MS IDEs to develop in these languages (unless you're doing MONO development) but I would think it might be more useful for keeping the wordfile small. And you'd only want to Include the "C" sections because the other language definitions would differ.