dotnet-core/release-notes/1.0/1.0.0-api/1.0.0-api_System.CodeDom.Compiler.md
2017-07-05 14:24:38 -07:00

13 lines
296 B
Markdown

# System.CodeDom.Compiler
``` diff
+namespace System.CodeDom.Compiler {
+ public sealed class GeneratedCodeAttribute : Attribute {
+ public GeneratedCodeAttribute(string tool, string version);
+ public string Tool { get; }
+ public string Version { get; }
+ }
+}
```