fork download
  1. using System;
  2.  
  3. public class Test
  4. {
  5. public interface IPayeePayrollRunInitialPayElementData : IPayeePayrollRunPayElementData
  6. { }
  7.  
  8. public interface IPayeePayrollRunPayElementData
  9. { }
  10.  
  11. class Program
  12. {
  13. static void Main(string[] args)
  14. {
  15. foreach (Type tinterface in typeof(IPayeePayrollRunInitialPayElementData).GetInterfaces())
  16. {
  17. Console.WriteLine(tinterface.ToString());
  18. }
  19. }
  20. }
  21. }
Success #stdin #stdout 0.02s 33832KB
stdin
Standard input is empty
stdout
Test+IPayeePayrollRunPayElementData