當Method
要求任何string
我們寫了我應該如何聲明我的方法需要任何類?
void method(string str)
{
str="OK";
}
我有一個method
需要任何class
。我method
小部分:
Void Post()
{
responsefromserver = new JavaScriptSerializer.Deserialize<T>(sr.ReadToEnd());
}
T
- 必須是任何class
。 但我不知道我該如何聲明我的method
需要任何class
?