BaconGame.QuestionFile.QuestionFile C# (CSharp) Method

QuestionFile() public method

public QuestionFile ( string path ) : System.Collections.Generic
path string
return System.Collections.Generic
        public QuestionFile(string path)
            : this()
        {
            _path = path;

            Questions = new List<Question>();
        }
QuestionFile