コード例 #1
0
ファイル: FileSystem.cs プロジェクト: nstone101/Cosmos
 public abstract Stream GetFileStream(File fileInfo);
コード例 #2
0
ファイル: FileInfoImpl.cs プロジェクト: nstone101/Cosmos
 public static bool get_Exists([FieldAccess(Name = "$$Storage$$")] ref File aStorage)
 {
     return(VFSManager.FileExists(aStorage.Name));
 }
コード例 #3
0
 public abstract Stream GetFileStream(File fileInfo);
コード例 #4
0
ファイル: FileInfoImpl.cs プロジェクト: nstone101/Cosmos
 public static string get_Name([FieldAccess(Name = "$$Storage$$")] ref File aStorage)
 {
     return("Filename" + aStorage.Name);
 }