C# 클래스 FlatRedBall.Content.SourceReferencingFile

Class that defines a source and destination file relationship. This can be used by tools (such as Glue) which maintain the source/destination relationship between files.
파일 보기 프로젝트 열기: vchelaru/FlatRedBall 1 사용 예제들

공개 프로퍼티들

프로퍼티 타입 설명
DestinationFile string
ObjectName string
SourceFile string

공개 메소드들

메소드 설명
HasTheSameFilesAs ( SourceReferencingFile otherReferencingFile ) : bool
SourceReferencingFile ( ) : System

Instantiates a new SourceReferencingFile instance.

SourceReferencingFile ( string sourceFile, string destinationFile ) : System

Instantiates a new SourceReferencingFile instance using the argument source and destination files.

ToString ( ) : string

메소드 상세

HasTheSameFilesAs() 공개 메소드

public HasTheSameFilesAs ( SourceReferencingFile otherReferencingFile ) : bool
otherReferencingFile SourceReferencingFile
리턴 bool

SourceReferencingFile() 공개 메소드

Instantiates a new SourceReferencingFile instance.
public SourceReferencingFile ( ) : System
리턴 System

SourceReferencingFile() 공개 메소드

Instantiates a new SourceReferencingFile instance using the argument source and destination files.
public SourceReferencingFile ( string sourceFile, string destinationFile ) : System
sourceFile string The source file name to use.
destinationFile string The destination file name to use.
리턴 System

ToString() 공개 메소드

public ToString ( ) : string
리턴 string

프로퍼티 상세

DestinationFile 공개적으로 프로퍼티

The destination file - the file which will be created when the source is built.
public string DestinationFile
리턴 string

ObjectName 공개적으로 프로퍼티

public string ObjectName
리턴 string

SourceFile 공개적으로 프로퍼티

The source file - the file which will be built to create the destination.
public string SourceFile
리턴 string