C# Class 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.
Afficher le fichier Open project: vchelaru/FlatRedBall Class Usage Examples

Méthodes publiques

Свойство Type Description
DestinationFile string
ObjectName string
SourceFile string

Méthodes publiques

Méthode Description
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

Method Details

HasTheSameFilesAs() public méthode

public HasTheSameFilesAs ( SourceReferencingFile otherReferencingFile ) : bool
otherReferencingFile SourceReferencingFile
Résultat bool

SourceReferencingFile() public méthode

Instantiates a new SourceReferencingFile instance.
public SourceReferencingFile ( ) : System
Résultat System

SourceReferencingFile() public méthode

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.
Résultat System

ToString() public méthode

public ToString ( ) : string
Résultat string

Property Details

DestinationFile public_oe property

The destination file - the file which will be created when the source is built.
public string DestinationFile
Résultat string

ObjectName public_oe property

public string ObjectName
Résultat string

SourceFile public_oe property

The source file - the file which will be built to create the destination.
public string SourceFile
Résultat string