当前位置:   article > 正文

C#编写自定义Excel公式计算非均匀现金流的NPV与IRR_c# excel设置公式

c# excel设置公式

1、用Visual Studio新建一个类库,命名为CashFlowTools



2、引用必要的类库:

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Runtime.InteropServices;
  6. using Microsoft.Win32;
  7. using Microsoft.Office.Interop.Excel;

其中最后一个需要在“引用”中添加一个COM组件“Microsoft.Office.Interop.Excel”


3、添加COM相关属性

  1. [Guid("DDE8AA59-9860-44B3-B1AF-923ABB4A8EEE")]
  2. [ClassInterface(ClassInterfaceType.AutoDual)]
  3. [ComVisible(true)]

注意要生成一个GUID:


这里我使用的LinqPad,一个轻量级的IDE,支持C#、VB.NET、Linq、F#、SQL语句,非常适合用来测试少量代码。


4、添加COM的注册和反注册函数,这两个函数代码是固定的。添加后的程序结构如下

  1. namespace CashFlowTools
  2. {
  3. [Guid("DDE8AA59-9860-44B3-B1AF-923ABB4A8EEE")]
  4. [ClassInterface(ClassInterfaceType.AutoDual)]
  5. [ComVisible(true)]
  6. public class CashFlowTools
  7. {
  8. #region COM related
  9. [ComRegisterFunction]
  10. public static void RegisterFunction(Type type)
  11. {
  12. Registry.ClassesRoot.CreateSubKey(GetSubKeyName(type, "Programmable"));
  13. var key = Registry.ClassesRoot.OpenSubKey(GetSubKeyName(type, "InprocServer32"), true);
  14. key.SetValue("", Environment.SystemDirectory + @"\mscoree.dll", RegistryValueKind.String);
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/Monodyee/article/detail/250908
推荐阅读
相关标签
  

闽ICP备14008679号