本文介绍了帮助C#语法的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我暂时没有写过C#。 我收到以下错误和所有"="在Visual Studio编辑器中,在
BOLD 的所有代码中变为红色。 这是来自HL7消息编写者的示例代码。 我认为这是需要更新的旧C#语法。 它使用的是.NET 2.0框架。 谢谢

I haven't written C# for a while.  I am getting the following error and all the "=" are turning red in the Visual Studio editor in all the code that'sBOLD.  This is sample code from HL7 message writer.  I think this is older C# syntax that needs to be updated.  It's using .NET 2.0 framework.  Thanks

错误:   类,结构中的标记'='无效,或接口成员声明

Error:  Invalid token '=' in class, struct, or interface member declaration


            PipeParser   解析器=   new   PipeParser ();

            PipeParser parser = new PipeParser();


            NHapi.Model.V231.Message。 QRY_R02   qry
=  
new


            NHapi.Model.V231.Message。 QRY_R02 ();


           
qry.MSH.MessageType.MessageType.Value =
" QRY" ;

           qry.MSH.MessageType.MessageType.Value ="QRY";



          ;   qry.MSH.EncodingCharacters.Value =   @" ^〜\&" ;

            qry.MSH.EncodingCharacters.Value = @"^~\&";


            qry.MSH.VersionID.VersionID.Value =   " 2.3.1" ;

            qry.MSH.VersionID.VersionID.Value = "2.3.1";


            qry.MSH.DateTimeOfMessage.TimeOfAnEvent.SetLongDate( DateTime 。现在;;

            qry.MSH.DateTimeOfMessage.TimeOfAnEvent.SetLongDate(DateTime.Now);


            qry.MSH.MessageControlID.Value = messageControlId;



"我" ;

            qry.QRD.QueryPriority.Value = "I";



        &NBSP ;   what.Identifier.Value =
  " RES" ;

            what.Identifier.Value = "RES";


            返回   parser.encode(qry);

            return parser.encode(qry);



 

 

推荐答案


这篇关于帮助C#语法的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-22 13:46