Hi, its possible to add my own strings to visual studio 2008 intellisense for C# using only xsd file? (without class library and without any implemented methods.)
for example I will edit here an scenario: xsd:
<?xml version="1.0" encoding="utf-8"?>
<xs:schema attributeFormDefault="unqualified" elementFormDefault="qualified" targetNamespace="http://SampleCustomer" xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:element name="Customers">
<xs:complexType>
<xs:sequence>
<xs:element name="Customer">
<xs:complexType>
<xs:sequence>
<xs:element name="Address" />
</xs:sequence>
</xs:complexType>
</xs:element>
</xs:sequence>
</xs:complexType>
</xs:element>
</xs:schema>
code behind (using VS 2008 C#): when I will press ctrl+shift it will open intellisense and I want to use/select from intellisense Customer. Is there a way to solve it? if yes, how can I do it?
Thanks.