12 lines
215 B
C#
12 lines
215 B
C#
|
|
using System;
|
|||
|
|
|
|||
|
|
namespace WebAPI.Areas.HelpPage
|
|||
|
|
{
|
|||
|
|
internal class XDocument
|
|||
|
|
{
|
|||
|
|
internal static XDocument Parse(string str)
|
|||
|
|
{
|
|||
|
|
throw new NotImplementedException();
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|