Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion PullRequestSandbox.sln
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 14
VisualStudioVersion = 14.0.25420.1
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "PullRequestSandbox", "PullRequestSandbox\PullRequestSandbox.csproj", "{F7845AEB-9337-4DA3-AB34-C47BBDD2E4E0}"
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "PullRequestSandbox", "PullRequestSandbox_Renamed\PullRequestSandbox.csproj", "{F7845AEB-9337-4DA3-AB34-C47BBDD2E4E0}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Expand Down
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,10 @@ namespace PullRequestSandbox
{
class Program
{
// Made a change.
// Another change
static void Main(string[] args)
{
/// yepyep
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@
<ItemGroup>
<Compile Include="Program.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="TestClass.cs" />
</ItemGroup>
<ItemGroup>
<None Include="App.config" />
Expand Down
27 changes: 27 additions & 0 deletions PullRequestSandbox_Renamed/TestClass.cs
Original file line number Diff line number Diff line change
@@ -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()
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

good!

Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

yep definitely.

{
// MethodWithComment2 method contents.
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

contents?

}

public void Method1()
{
// Method1 method contents..
}

public void AnotherMethod()
{
// Hard breakfast
}
}
}