示例#1
0
        public static bool Readable <T>(this IPermaObject <T> @this)
        {
            var temp = @this.tryParse(out Exception ex);

            return(ex == null);
        }
示例#2
0
        public static string LocalName <T>(this IPermaObject <T> @this)
        {
            var s = @this.name;

            return(Path.GetFileName(s));
        }