MAIN MENU
เขียนโปรแกรมบน iPhone ด้วย MonoTouch News Php Tips Ubuntu Spring+Strut+Hibernate Android Programming Design Pattern By PHP C# Design Pattern Linux Quick Tips C# Tips & Technique C# using Linq น่าใช้จริงๆ Java & JavaScript Tips MAVEN Database & SQL ZengCode Framework Guide Mac OSx Zeng Code Code Programming IPhone (Tips and Trick)
Download เอกสารที่น่าสนใจ




|
Can call a non-static method through an object reference from within a static method (2009-10-05)
/*
C#: The Complete Reference
by Herbert Schildt
Publisher: Osborne/McGraw-Hill (March 8, 2002)
ISBN: 0072134852
*/
using System;
public class MyClass {
// non-static method.
void nonStaticMeth() {
Console.WriteLine("Inside nonStaticMeth().");
}
/* Can call a non-static method through an
object reference from within a static method. */
public static void staticMeth(MyClass ob) {
ob.nonStaticMeth(); // this is OK
}
}
|
Comment
|
|