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.
Показать файл Открыть проект Примеры использования класса

Открытые свойства

Свойство Тип Описание
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