ISourceFile.cs 139 B

1234567891011
  1. using System;
  2. namespace Mono.CompilerServices.SymbolWriter
  3. {
  4. public interface ISourceFile
  5. {
  6. SourceFileEntry Entry
  7. {
  8. get;
  9. }
  10. }
  11. }