0
我有用C#編寫的庫,在我的方法中使用標準C#文檔,如下例所示,Visual Studio自動執行自動完成並彈出各種參數描述。我使用SandCastle助手來生成「編譯的html」文檔頁面。從C生成Eclipse PDT
我的用戶似乎是一半的Windows和一半的Linux開發人員,後者主要使用Eclipse。任何人都可以提出一個簡單的跨平臺選項,它仍然適用於Visual Studio,並且可以生成手冊頁,還可以爲我提供Eclipse自動完成和懸停彈出窗口(例如自動生成所需的PDT文件)?如果這涉及修改我的C#文檔以使用更像Javadoc的東西,我可以這樣做。理想的情況下,當然,我不希望創建一個代碼分支或重複我的文檔...
/// <summary>
/// Puts the current group into DHT mode, but without specifying a target size and without setting aside extra members.
/// </summary>
/// <param name="ReplicationFactor">Requested data replication factor</param>
/// <param name="ExpectedGroupSize">Your estimate of the typical size of this group (N); a multiple of the replication factor</param>
/// <param name="MinimumGroupSize">The smallest group size at which the DHT will accept DHTPut/DHTGet commands</param>
/// <remarks>If the replication factor is too small, you run the risk that our random hashing scheme could leave some affinity
/// group with too few, or too many members. </remarks>
public void DHTEnable(int ReplicationFactor, int ExpectedGroupSize, int MinimumGroupSize)
{
DHTEnable(ReplicationFactor, ExpectedGroupSize, MinimumGroupSize, int.MaxValue);
}
所以,我不知何故做事情完全低音讚賞?是否有大量人羣使用最初在Linux上通過Mono編碼的庫?你們如何處理編輯/自動完成?你在這種情況下只使用視覺工作室嗎? –