Tags:ASP.NET Questions, Dot Net Questions | 173 views
Question:-Can you define what is Jagged Array in VB.NET ? Answer: Jagged array is multidimensional array.If jagged array is two dimensinal it also contain a table where each row can have a different number of columns. A jagged array is really an array of arrays. To create a jagged array, you declare the array of [...]
Tags:ASP.NET Questions, Dot Net Questions | 75 views
Question:-What is Serialization Formatters in .NET Remoting ? Answer: When any object is to be sent across the transport channel, it must be serialized and packed into a data format that can be transmitted with the wire. On the other end of the wire, this serialized data is read and deserialized back to the actual [...]
Tags:ASP.NET Questions, Dot Net Questions | 83 views
Question:-Can it is possible to use COM objects from a .NET Framework program ? Answer: :- I think yes COM component which we have deployed today can be used from managed code, and in common cases the its adopt automatic. To access com component from the .NET Framework we use runtime callable wrapper (RCW). This [...]
Tags:ASP.NET Questions, Dot Net Questions | 70 views
Question: What do u mean by Function Overloading ? Answer: When more than one function is created with the same name, but different is of there arguments . In other words, function names can be overloaded. A function may also have the same name as an attribute. In the case that there is an ambiguity [...]