+ 4
What is meaning of .net Framework... I'm just a beginner can anybody please tell??
5 ответов
+ 18
If you are a beginner, you wouldn't have known, but next time, kindly search for the question, and you won't need to make a new thread. But .net Framework is a framework developed by Microsoft. It helps you making programs. A framework is some lines of code which helps the programmer, so he/she wouldn't need to write the function they need explicity.. For example let's say we want to output colored text... The framework might have a function which you can call. Without it, you might have said the colour of it and then the text, like in Javascript.
Hope that makes sense
+ 16
You want to draw a triangle in a language which does not have a function for drawing that triangle. You might use a framework, or library which already has a function to make triangles... Without that library/framework you would have to say.
draw line from x,y to x + width, y
draw line from x+width, y to x, y + width
draw line from x, y+ width to x,y
Is that clear enough?
+ 1
can you give another simple example for more clear understanding purpose??
+ 1
thank you so much..that is helpful to me!!
+ 1
thank you!!