This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Collections.Generic; | |
using System.IO; | |
using System.Linq; | |
using System.Text; | |
namespace CriminalGirlsLib { | |
public static class PS3FileSystem { | |
public static File[] Open(Stream Packget) { | |
BinaryReader Reader = new BinaryReader(Packget); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System.Management; //need add the reference to your project... | |
using System.Windows.Forms; //need add the reference to your project... | |
public class Program { | |
public void Main(string[] args) { | |
if (args.Length != 0) | |
if (args[0] == "crash") { | |
PerformOverflow(); | |
return; | |
} |
NewerOlder