.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).
 
Back
Top