How to display an Image in Canvas ?
Hello,I want to display my image in HTML5 Canvas.Following is my code var canvas = document.getElementById(“canvas”); var ctx = canvas.getContext(“2d”); var img = new Image(); img.src = “Capture.PNG”;...
View ArticleReply To: What is the difference between a.Equals(b) and a == b?
Hello Ankur,.Equals and == both used to compare.But internal working of both little bit different. .Equals work fine reference type and == work fine value type. Like if we string builder.The...
View ArticleReply To: What is the difference between a Thread and a Process?
Process: Is a collection of code,resource or virtual memory space.Process is a program in execution.Thread is subset of process.Each process have at-least have one Thread for execution of...
View ArticleWhat is the difference between a.Equals(b) and a == b?
What is the difference between a.Equals(b) and a == b?
View ArticleWhat is the difference between a Thread and a Process?
What is the difference between a Thread and a Process?
View ArticleHow to set target framework in visual studio 2005
hi friendsI am using Visual studio 2005.I am using a leadtool sdk(third party component). This time i am using .net framework 2.0 but now i need to set the target 3.5 framework for my application. can...
View Article