Sage.ProblemInfo.ProblemInfo C# (CSharp) 메소드

ProblemInfo() 공개 메소드

Initializes a new instance of the ProblemInfo class, using the specified type and filePath.
public ProblemInfo ( ProblemType type, string filePath = null ) : System
type ProblemType The problem type associated with this error.
filePath string The path to the file where the error occurred.
리턴 System
        public ProblemInfo(ProblemType type, string filePath = null)
        {
            this.Type = type;
            this.FilePath = filePath;
            this.InfoBlocks = new Dictionary<string, IDictionary<string, string>>();
        }
ProblemInfo