本文介绍了我怎么能在VB.NET中更改此代码的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

  public   static   class  UnaryFunctions 
{
public static UnaryFunction Identity() {
return new UnaryFunction( delegate double x){ return x;});
}
}





我想将此代码(C#中的原始代码)更改为VB。 NET然而我不知道该怎么做。有人可以帮帮我吗?

谢谢

解决方案




public static class UnaryFunctions
    {
        public static UnaryFunction Identity() {
            return new UnaryFunction(delegate(double x) { return x; });
        }
     }



I''d like to change this code(original in C#) to VB.NET however i have no idea how to do it. Could someone help me?
Thanks

解决方案




这篇关于我怎么能在VB.NET中更改此代码的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-25 04:17