cadencii.ScriptServer.getTimestamp C# (CSharp) Method

getTimestamp() public static method

指定したIDが示すスクリプトの、コンパイルした時点でのソースコードの更新日を取得します。
public static getTimestamp ( String id ) : double
id String
return double
        public static double getTimestamp( String id ) {
            if ( scripts.containsKey( id ) ) {
                return scripts.get( id ).fileTimestamp;
            } else {
                return 0;
            }
        }