開發人員:
價錢: 免費
排名: 0 
評測: 0 寫評論
清單: 0 + 0
點數: 0 + 0 ¡
點數 +1

描述

CSV Edit Sharp
CsvEditSharp is a CSV editor that describes read / write settings with C # script.

In the script, write read / write settings using API of "CsvHelper" which is a open source .Net class library.

[Script example]
-------------------
/* Get the API object that can be used in this script */
ICsvEditSharpApi api = GetCsvEditSharpApi();

/* Encoding of CSV file */
api.Encoding = Encoding.GetEncoding("utf-8");

/* Configuration settings for CSV Helper */
api.CsvConfiguration = new CsvConfiguration( CultureInfo.GetCultureInfo("en-US"))
{
HasHeaderRecord = true
};

/*****************************
Definition of record class
*****************************/
class FieldData
{
public string Name { get; set; }
[Format("d")]
public DateTime Birthday { get; set; }
public Gender Gender { get; set; }
public bool Married { get; set; }
[NumberStyles(NumberStyles.Currency)]
[Format("C")]
public decimal PocketMoney { get; set; }
}

/****************************************
Define the enum type of selection item
****************************************/
enum Gender
{
Male,
Female,
Other
}

/**********************************************
Register auto class maps in CSV reader/writer
**********************************************/
api.RegisterClassMap();

/************************
Add custom validations
************************/
api.AddValidation(
m => m.Birthday,
dt => dt.Date < DateTime.Now.Date,
"Cannot enter a future date.");

api.AddValidation(
m => m.PocketMoney,
n => n > 0 && n < 10000,
"PocketMoney must be in the range $0 to $10000.");

-------------------

For details of APIs that can be used in scripts, see below.
[GitHub]
https://github.com/pierre3/CsvEditSharp

[CsvHelper]
https://joshclose.github.io/CsvHelper/
更多 ↓

螢幕擷取畫面

#1. CSV Edit Sharp (Windows) 由: pierre3
#2. CSV Edit Sharp (Windows) 由: pierre3
#3. CSV Edit Sharp (Windows) 由: pierre3
#4. CSV Edit Sharp (Windows) 由: pierre3

新功能

  • 版本: PC
  • 發佈日期:

價錢

  • 今天: 免費
  • 最小值: 免費
  • 最大值: 免費
追蹤票價

開發人員

點數

未找到 ☹️

排名

未找到 ☹️

清單

未找到 ☹️

評測

成為第一個評論 🌟

其他資訊

聯絡人

CSV Edit SharpCSV Edit Sharp 縮短網址: 已複製!

你可能還喜歡

你可能還喜歡

可搭配 AppAgg 使用的搜尋運算子
添加到 AppAgg
AppAgg
立即免费注册
註冊
登入