Latest Answer: In .net CLR maintain string pool for handling string operation.CLR not make any new string object bt it uses string object refrnece from string pool.when we define new string object with same array of character thn CLR assign same memory refrence ...
This is a Regular expression built for parsing string in vb.net and passed to Regex class.Dim r As Regex = New Regex(",(?=([^""]*""[^""]*"")*(?![^""]*""))")What is C# equivalent for this regular expression.
Latest Answer: use the aximp.exe provided with the .NET framework. It stands for Microsoft .NET ActiveX Control to Windows Forms Assembly Generator.Generates a Windows Forms Control that wraps ActiveX controls defined in the given OcxName.Usage: AxImp OcxName ...
Latest Answer: Delegate to function--- is same as---- pointer to object.Delegates are function pointers.They are used when the function which needs to be called is not know at compile time.Pointers, on the other hand, are used to point to variables or object references ...
Latest Answer: Object Pooling is a COM+ service that enables you to reduse the overhead of creating each object from scratch. When an object is activated, it is pulled from the pool.When the object is deactivated, it is placed back into the pool to await the request. ...
Latest Answer: we can also call configuration manager in vs 2005 system.configuration.configurationmanager() ...
Latest Answer: C# does not support optional arguments.you can use function overloading to achieve the same. ...
Latest Answer: Document Type Declaration(DTD)determines the name of the root element and contains the document type declarationsElementsElements are the main building blocks of both XML and HTML documents.Examples ...
Latest Answer: IsNothing is only used in VB or VB.NET. someone is really confused ...
Latest Answer: I have tried the above with including static method in the base class. But it giving me the 'inaccessible due to protection level' error. And one more thing some members told that "internal scope" method. Can any body give me the idea....or ...
View page << Previous 7 8 9 10 [11] 12 13 14 15 16 Next >>

Go Top