.xsd and .xsx in C#

  • Thread starter Thread starter Eranga
  • Start date Start date
E

Eranga

Hello all,
I have the following files;
webForm1.aspx.cs
webform1.aspx
a.xsd
a.xsx
a.cs
I want to refer the class a.cs from webForm1.aspx.cs .
But I dont know how to link them together .
Can some one plese help me here
Thanks in advance.
 
The c# compiler will link everything together manu compilers do. So classes
defined in "a.cs" are visible "b.cs" dependent on their specific access
modifiers (i.e public, private etc).
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top