CodeIdentifiers::UseCamelCasing Property

 

This API supports the product infrastructure and is not intended to be used directly from your code.

Gets or sets a value that indicates whether the instance uses camel case.

Namespace:   System.Xml.Serialization
Assembly:  System.Xml (in System.Xml.dll)

public:
property bool UseCamelCasing {
	bool get();
	void set(bool value);
}

Property Value

Type: System::Boolean

true to indicate that the instance uses camel case; false to indicate that the instance uses Pascal case.

With camel case, if the first character of an identifier is a letter, it must be lowercase. With Pascal case, if the first character is a letter, it must be uppercase.

.NET Framework
Available since 1.1
Return to top
Show: