| 1234567891011121314151617181920 |
- //
- // IXmlDataEvidence.cs
- //
- // Author:
- // Atsushi Enomoto <[email protected]>
- //
- #if NET_1_2
- using System;
- using System.Security.Policy;
- namespace System.Xml
- {
- public interface IXmlDataEvidence
- {
- Evidence[] Evidences { get; }
- }
- }
- #endif
|