छिपाने की विधि को छायांकन के रूप में भी जाना जाता है। शैडोइंग में ओवरराइड कीवर्ड का उपयोग किए बिना पेरेंट क्लास की विधि चाइल्ड क्लास के लिए उपलब्ध है। चाइल्ड क्लास का एक ही फ़ंक्शन का अपना संस्करण होता है।
शैडोइंग करने के लिए नए कीवर्ड का उपयोग करें।
आइए एक उदाहरण देखें।
उदाहरण
using System; using System.Collections.Generic; class Demo { public class Parent { public string GetInfo () { return "This is Parent Class!"; } } public class Child : Parent { public new string GetInfo() { return "This is Child Class!"; } } static void Main(String[] args) { Child child = new Child(); Console.WriteLine(child. GetInfo()); } }
आउटपुट
This is Child Class!