SetFileSize() public méthode

Sets the size of a specified file on the xbox. This method will not zero out any extra bytes that may have been created.
public SetFileSize ( string fileName, int size ) : void
fileName string
size int
Résultat void
Exemple #1
0
 public override void SetLength(long value)
 {
     Xbox.SetFileSize(FileName, (int)value);
 }