Java

Executing private methods in Java

Normally, private methods in a class are not visible to other classes and cannot be executed. However, through reflection, which enables dynamic retrieval of classes […]

.NET, C#

RichTextBox CR/LF Text issues

It seems that sometimes when you get the text from a RichTextBox object, for instance to put it on the Clipboard, that the carriage return/line […]

.NET, C#

targetNamespace issue with XmlSchemaSet

When attempting to validate your XML Document against a schema file in .NET, you might see the following error message: [System.Xml.Schema.XmlSchemaException] = {“The targetNamespace parameter […]