コード例 #1
0
        public static string ToTsvDataRow <T>(this T objToSerialize) where T : class
        {
            var properties = TsvFormatter.GetSerializablePropertiesInOrder(typeof(T));

            return(TsvFormatter.GetTsvRow(properties, objToSerialize));
        }