Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 
avatar of CoderForHire

CoderForHire

CoderForHire has asked 2 questions and find answers to 0 problems.

Stats

10
EtPoint
0
Vote count
2
questions
0
answers

About

public class SystemCrasher : ICrashable
{
  public void CrashSystem()
  { 
     throw new SystemCrashedException();
  }
}

CoderForHire answers