1
0
mirror of https://github.com/SergeyMironchuk/1CAddin.git synced 2024-11-21 10:45:51 +02:00
1CAddin/Component.cs
2016-09-20 17:52:35 +03:00

16 lines
466 B
C#

using System;
using System.Runtime.InteropServices;
namespace System1C.AddIn
{
/// <summary>Класс, реализующий пользовательские методы компоненты</summary>
[ProgId("AddIn.1C_Component")]
[ClassInterface(ClassInterfaceType.None)]
public class Component : AddIn, IComponent
{
public int Procedure(int parameter)
{
throw new NotImplementedException();
}
}
}