コード例 #1
0
ファイル: Examples.cs プロジェクト: blombas/StructuredSight
        public void ShowParentExample()
        {
            var parent = new MethodOverloading.Parent();

            System.Diagnostics.Debug.WriteLine(parent.FormatMessage("Hello World"));
        }
コード例 #2
0
ファイル: Examples.cs プロジェクト: blombas/StructuredSight
        public void ShowParentAppendExample()
        {
            var parent = new MethodOverloading.Parent();

            System.Diagnostics.Debug.WriteLine(parent.AppendAndFormat("Hello World", "!"));
        }