WindowsTop प्रॉपर्टी का उपयोग स्क्रीन बफर के सापेक्ष कंसोल विंडो क्षेत्र की शीर्ष स्थिति प्राप्त करने या सेट करने के लिए किया जाता है।
शीर्ष स्थान पाने के लिए एक पूर्णांक चर घोषित करें।
int top;
अब, Console.WindowTop प्रॉपर्टी का उपयोग करें।
top = Console.WindowTop;
आइए पूरा उदाहरण देखें।
उदाहरण
using System; class Demo { static void Main() { int top; top = Console.WindowTop; Console.WriteLine("Top position of the Console window = "+top); } }
आउटपुट
Top position of the Console window = 0