In .NET Compact Framework, can I free memory explicitly without waiting for garbage collector to free the memory?
Latest Answer: yes ...
----
Latest Answer: Private Sub button1_Click(sender As Object, e As System.EventArgs)' Use the open file dialog to choose a word documentIf Me.openFileDialog1.ShowDialog() = DialogResult.OK Then' set the file name from the open file dialogDim fileName As Object = openFileDialog1.FileNameDim ...
Latest Answer: XmlTextWriter textWriter=new XmlTextWriter("filename.xml"); //WriteStartDocument and WriteEndDocument methods open and close a document for writing textWriter.WriteStartDocument() //write comment textWriter.WriteComment("this ...
Latest Answer: Hi, Yeah we can do. 1. Compile the Private assembly first.For ex:Sample.cs 2. Create the strong name through command prompt as sn -k Test.It will return the Key. 3.Mention these lines in your ...
Latest Answer: Remember -> This is not recommended. Since the same-name method exists in both the base class and the derived class, with actions in both; therefore at runtime, any of these methods can be called by compiler, it's not in your control. Hence, if the ...
Latest Answer: Syntactically, Visual Basic .NET and Visual C# .NET are two different languages, just as Visual Basic, Visual C, and Visual C++ are different languages. Visual C# .NET looks more familiar to Visual C, Visual C++, and Java programmers, and Visual Basic ...
Latest Answer: System.Web.UI.page ...
Can you give an example of when it would be appropriate to use a web service as opposed to a non-serviced .NET component
Latest Answer: ControlToValidate and ErrorMessage are the two properties for every validation control.. ...
View page << Previous 3 4 5 6 [7] 8 9 10 11 12 Next >>

Go Top