Add /p:MergeWith example on guide (#540)

add `/p:MergeWith` example.
This commit is contained in:
Marco Rossignoli
2019-09-11 11:49:22 +02:00
committed by GitHub
parent 1bb08bb518
commit 868e663db7
16 changed files with 244 additions and 0 deletions
@@ -0,0 +1,12 @@
using System;
namespace ClassLibrary2
{
public class Class2
{
public int Method()
{
return 42;
}
}
}