2
0
mirror of https://github.com/esiur/esiur-dotnet.git synced 2026-03-31 10:28:21 +00:00
Files
esiur-dotnet/Tests/Distribution/MyChildResource.cs
2026-03-19 15:26:42 +03:00

20 lines
500 B
C#

using Esiur.Resource;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Esiur.Tests.Distribution;
[Resource]
public partial class MyChildResource : MyResource
{
[Export] string childName;
[Export("Hell2o")] public int ChildMethod(string childName) => 111;
[Export] public new string Hello() => "Hi from Child";
[Export] public string HelloChild() => "Hi from Child";
}