Skip to main content

Integrated Development Environment භාවිත කරමු

'IDE' යන්නට හැඳින්වීමක්

IDE (Integrated Development Environment) එකක් යනු තෝරාගන්නාලද කේත ලියන භාෂාව හා එහි Environment එක යොදාගෙන තෝරාගන්නාලද Platform එකට Executable නිෂ්පාදන කර හැකි පරිගණක වැඩසටහනකි. එහි කේත ලිවීමට මෙන්ම UI (User Interface – අතුරු මුහුනත) සැකසීමටද පහසුකම් තිබිය යුතුය. දැනට අන්තරජාලයේ ඇති බොහෝ IDE වලට බොහෝ දුරට මෙම අවශ්‍යතාවයන් සපුරාලීමේ හැකියාව ඇත.

වෙලඳපොලේ ඇති ඉල්ලුම

අන්තර්ජාතිකව පමනක් නොවේ, Programming වලට යොදා ගන්නා IDE’s වලට ලංකාවේද අධික ඉල්ලුමක් ඇති බව නිසැකවම කිව හැකිය. පරිගණක වැඩසටහන් නිපදවීම වැනි ඉතා වැඩි වැටුපක් ලැබෙන රැකියාවකට යොමු වීමට කවුරුත් කැමති බවද පහසුවෙන්ම කිව හැකිය. Microsoft සමාගමෙන් නිපදවන Visual Basic, C#, C++ වැනි විවිද Programming Languages හා Visual Studio වැනි IDE’s නිසා Microsoft සමාගම කෙතරම් ආදායම් ලබනවාදැයි බැලූ කල අපට මේවාට වෙළඳපොලේ ඇති ඉල්ලුම වටහා ගතහැක.

IDE පහසුවෙන් අපටත් ලබාගත හැකිද?

විවිධ සමාගම් වලින් IDE’s විවිද විකුණුම් මිලයට අප වෙත ලබා දෙනු ලබයි. තවද සමහර Developers ලා IDE’s අප වෙත Free Download කිරීමට හැකියාව ලබා දෙයි. උදාහරණ වශයෙන් Netbeans, Android Studio, Eclipse, Visual Studio Express ගත හැක. පහත සඳහන් පරිදි ඔබට ලොකප්‍රසිද්ධ IDE’s Download කර ගත හැක.

1.      Android Studio (develop.android.com)

Android Apps Develop කිරීමේදී මෙම IDE එක භවිත කරනු ලබයි. භාවිත කරන කේත ලිවීමේ භාෂාව Java . Designing හා Manifiestin සඳහා XML භාවිත කරයි.


2.   Eclipse IDE (eclipse.org)

Java Apps සැදීම සඳහා මෙම මෘදුකාංගය භාවිතා කල හැක. මෙහි කේත ලිවීම සඳහා භාවිත කරන්නේ Java Programming Language එකයි.

Comments

Popular posts from this blog

Chaining Methods - C# Intermediate Tutorials

CHAINING METHODS IN C# INTERMEDIATE TUTORIAL by Chamuth Chamandana What are Chaining Methods? ======================= Chaining Methods are used in C# in many ways. In extension methods and extension libraries such as LINQ, we use Chaining methods to pass the modified variable to the next method. Example (built-in methods): var result = "Hello World".Replace("World", "Chamuth").ToLower().Substring(5); What we're going to talk about in this video ================================== We're making a class known as StringDeveloper which creates strings from adding other strings which implements Chaining functionality. Which means every method returns itself, the context using return this; statement at the end of the changing of the content of the object which lets us call other functions in the object/class after. Chaining Methods are also available in every other programming language including C, Java, JavaScript and etc. Let me know wha...

ඔබට අවශ්‍ය වන Keyboard Shortcuts කිහිපයක්

CTRL + x Cut Selected CTRL + c Copy Selected CTRL + v Paste data CTRL + z Undo CTRL + y Redo CTRL + a Select All F1 Help Shortcut F2 Rename Selected F4 Switch to URL Mode in Windows Explorer F5 Refresh F11 Full Screen Windows Explorer START + TAB Switch Windows in Windows 7 + Task View in Windows 10 START + A Show Notifications in Windows 10 START + Q Cortana in Windows 10 START + E Start a new Explorer Window START + R Run Window START + U Ease of Access START + I Settings in Windows 10 START + P Project Display Options START + G Open Game Bar START + H Share Screenshot START + K Connect Devices START + L Lock Windows START + X Mobility Options START + C Cortana Quick Search Box START + M Show Desktop PRINTSCREEN / Print Screen SysRq Button Take a Screenshot and Copies it to Clipboard END select කරඇති වාක්‍යයේ අවසානයට පිවිසේ HOME Select කරඇති වාක්‍යයේ පටන්ගැන්මට යැවෙනු ඇත Page UP / DOWN Sele...

Animating Objects in WPF using Code Behind (C#)

A Feature that is built in to the WPF Platform is the ability to animate content without using Timers. That is inside the System.Windows.Media.Animation namespace. In this video, I'm going to help you with creating animations using the code behind (C#)