Thursday, July 28, 2005

Continue .Net Treat to Object

Hi, Recent I post that how .Net treat objects. Just in continuing the things here. In one of my program i need to make a 2D array of a Class. Now, I need a copy of that array object in some other function. So far so good, than I try the basic what come to my mind should work MyFunction (MyArrayObject) But this passes the object reference. Now, I try another thing MyFunction (MyArrayObject.Clone) but still it doesn't work. So, I just do special efforts to make a new array and copy each value manually. So the moral is : You cannot pass an multidimensional array of class object byVal even by cloning it. You need to do manual effort to complete this task

Tuesday, July 19, 2005

Some Cool Downloads

Hi, this site has some good downloads for all. http://www.matriks.info visit it Sumit Gupta

Sunday, July 17, 2005

.Net treat to Objects

Hi, I know that this is one of the basic things but I discover it today. "How .Net handle a Class object if they are assign to other object of same class" Well I have written a class in VB.Net and unfortunely Vb.Net doesn't support Operator Overloading. Therefore my Class is unable to load the = operator. Now, When I by mistake does this ============================= Dim x as new NewClass Dim y as new NewClass x=y ============================= It actually make x as the reference of the y :o) I keep finding that where is the bug in my software. So Moral of the Article is that :- The above statement will make the reference of on the RHS object to the LHS if the assignment operator is not explicity overloaded for that Class. bye for now Sumit Gupta

Sunday, July 03, 2005

Firefox -- A better browser or not

Hi all, I have been in web development since last one year and come across many issues of desgin and programming related to different feature of browsers. But My concern to these issue always restrict to Mozilla's Firefox and Internet Explorer only. I never thought of Netsacpe in this. Firebox is really a worth ful browser especially if you are a web developer with its already available Tools for web developer. It is not that these tools cannot be made for IE but no body bother to do that with IE. anyway I am talking about the Few good feature I like most in FF is that it has extension that make it better than IE in some places. One of such extension I like most is "Web Developer 0.9" it has many tools of usefulness And now FF and IE stand for different purpose for me... FF for development and IE for better look Graphics and User Interface while I am just a normal Internet surfer..:o) I use both as both has some advantage over other.. I cannot say that they have disadvantage over other ... Happy surfing Sumit Gupta