diff --git a/PullRequestSandbox/Program.cs b/PullRequestSandbox/Program.cs
index 028ff6c..3ae2649 100644
--- a/PullRequestSandbox/Program.cs
+++ b/PullRequestSandbox/Program.cs
@@ -8,9 +8,11 @@ namespace PullRequestSandbox
{
class Program
{
+ // Made a change.
+ // Another change
static void Main(string[] args)
{
- /// yepyep
+ //
}
}
}
diff --git a/PullRequestSandbox/PullRequestSandbox.csproj b/PullRequestSandbox/PullRequestSandbox.csproj
index bb80d26..2974d28 100644
--- a/PullRequestSandbox/PullRequestSandbox.csproj
+++ b/PullRequestSandbox/PullRequestSandbox.csproj
@@ -45,6 +45,7 @@
+
diff --git a/PullRequestSandbox/TestClass.cs b/PullRequestSandbox/TestClass.cs
new file mode 100644
index 0000000..44ebd5b
--- /dev/null
+++ b/PullRequestSandbox/TestClass.cs
@@ -0,0 +1,27 @@
+using System;
+
+namespace InlineComments
+{
+ class TestClass
+ {
+ public int PropertyWithComment1 { get; set; }
+ public int Property1 { get; }
+ public int PropertyWithComment2 { get; set; }
+ public int Property2 { get; }
+
+ public void MethodWithComment2()
+ {
+ // MethodWithComment2 method contents.
+ }
+
+ public void Method1()
+ {
+ // Method1 method contents..
+ }
+
+ public void AnotherMethod()
+ {
+ // Hard breakfast
+ }
+ }
+}
\ No newline at end of file