当前位置: 首页>>代码示例>>C#>>正文


C# WorkItem.ToString方法代码示例

本文整理汇总了C#中WorkItem.ToString方法的典型用法代码示例。如果您正苦于以下问题:C# WorkItem.ToString方法的具体用法?C# WorkItem.ToString怎么用?C# WorkItem.ToString使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在WorkItem的用法示例。


在下文中一共展示了WorkItem.ToString方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。

示例1: Main

    static void Main()
    {
        // Create an instance of WorkItem by using the constructor in the
                // base class that takes three arguments.
                WorkItem item = new WorkItem("Fix Bugs",
                                             "Fix all bugs in my code branch",
                                             new TimeSpan(3, 4, 0, 0));

                // Create an instance of ChangeRequest by using the constructor in
                // the derived class that takes four arguments.
                ChangeRequest change = new ChangeRequest("Change Base Class Design",
                                                         "Add members to the class",
                                                         new TimeSpan(4, 0, 0),
                                                         1);

                // Use the ToString method defined in WorkItem.
                Console.WriteLine(item.ToString());

                // Use the inherited Update method to change the title of the
                // ChangeRequest object.
                change.Update("Change the Design of the Base Class",
                    new TimeSpan(4, 0, 0));

                // ChangeRequest inherits WorkItem's override of ToString.
                Console.WriteLine(change.ToString());

                // Keep the console open in debug mode.
                Console.WriteLine("Press any key to exit.");
                Console.ReadKey();
    }
开发者ID:terryjintry,项目名称:OLSource1,代码行数:30,代码来源:inheritance--csharp-programming-guide-_1.cs


注:本文中的WorkItem.ToString方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。