19.มาเขียน Method ใน Class กัน
Last updated
Was this helpful?
Last updated
Was this helpful?
Was this helpful?
public class MyClass
{
public void MyMethod()
{
}
public void MyMethod(int p)
{
}
public void MyMethod(string p)
{
}
public int MyMethod(int p)
{
return p;
}
}