考慮下面的代碼:如何創建一個通用的函數接受不同的參數類型
var list = new SomeServiceType
{
Url = "htp://www.test.com/",
Credentials = new NetworkCredential(UserName, Password)
};
此代碼已經重複很多人說的10倍。所以,我決定在通過不同類型時使用一個通用函數來接受上面的代碼。
我需要獲得Url和憑證作爲新創建函數的響應。
作爲參考,SomeServiceType是ServiceNowType, UserName和Password是String類型。
我試着用
public List<object>(....strucked here...)
{
...
return ...//again strucked here....(neeed to return url and credentials)..
}
網址是字符串類型的NetworkCredential是C#類的
如何,因爲我在這個問題提到返回響應? – StackOverflow
你想返回列表變量不是嗎? –
是的,需要返回列表。 – StackOverflow