cadencii.ScriptServer.getCompileMessage C# (CSharp) Method

getCompileMessage() public static method

指定したIDが示すスクリプトの、コンパイル時のメッセージを取得します。
public static getCompileMessage ( String id ) : String
id String
return String
        public static String getCompileMessage( String id ) {
            if ( scripts.containsKey( id ) ) {
                return scripts.get( id ).ErrorMessage;
            } else {
                return "";
            }
        }
    }