MAIN MENU
News Php Tips Spring+Strut+Hibernate Android Programming Design Pattern By PHP Ubuntu Linux Quick Tips C# Design Pattern C# using Linq น่าใช้จริงๆ C# Tips & Technique Java & JavaScript Tips Database & SQL ZengCode Framework Guide 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
|
|