Introduction of .NET in hindi

Introduction of .Net in hindi

image

.NET माइक्रोसॉफ्ट द्वारा एक vision future app के रूप मे 1998 मे लॉन्च किया गया।
यह एक object oriented और multi-paradigm प्रोग्रामिंग लैंग्वेज हैं।जो smart client devices के साथ जुड़ने ओर data के आदान प्रदान के लिए xml का प्रयोग करता हैं।

SYNTAX OF .NET BASE:-

MODULE_module name
Sub main()//method declare
“Body of module”

End sub
End module

जहाँ module एक क्लास की तरह होता है जो classes को contain करता हैं।
Module name कुछ भी डाला ज सकता हैं।

SUB-एक subroutine हैं ओर main(), program के execution का entry point हैं।

.net programming मे print करने के लिए console.write line keyword का प्रयोग करते हैं।
उदाहरण-console.write Line(“hello world”)
तो VDU screen पर hello world print होगा।
जहाँ console एक सिस्टम object हैं।जो commond line interface को प्रस्तुत करता हैं।

अंत मे END keyword का प्रयोग करके module ओर subroutine को call किया जाता हैं।
उदाहरण-END sub
                  END module.
प्रोग्राम के अंत मे end ka प्रयोग न करने से प्रोग्राम से user को कोई output प्राप्त नही होगा।

निवेदन:-अगर आपके पास भी कोई हिंदी में topic या किसी subject से सम्बंधित नोट्स है तो कृपया उसे अपनी फोटो के साथ E-mail करें. हमारा e-mail:- [email protected] है। हम उसे यहां आपकी फ़ोटो के साथ प्रकाशित करेंगें।

3 thoughts on “Introduction of .NET in hindi”

Leave a Comment