#ExternalSource 指令

指示特定源代码行与源外部文本之间的映射。

语法

#ExternalSource( StringLiteral , IntLiteral )  
    [ LogicalLine+ ]  
#End ExternalSource  

组成部分

StringLiteral
外部源的路径。

IntLiteral
外部源的第一行的行号。

LogicalLine
外部源中发生错误的行。

#End ExternalSource
终止 #ExternalSource 块。

注解

该指令仅由编译器和调试器使用。

源文件可能包含外部源指令,这些指令指示源文件中特定代码行与源外部文本(例如 .aspx 文件)之间的映射。 如果在编译期间在指定的源代码中遇到错误,则将它们标识为来自外部源。

外部源指令对编译没有影响,并且不能嵌套。 它们仅供应用程序内部使用。

另请参阅