Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

CS8602 dereference learning #43

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
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
25 changes: 25 additions & 0 deletions CS8602 Dereference/CS8602 Dereference.sln
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 17
VisualStudioVersion = 17.1.32414.318
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "CS8602 Dereference", "CS8602 Dereference\CS8602 Dereference.csproj", "{3A8631A9-4DE2-4E51-B709-1727D4973C6F}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{3A8631A9-4DE2-4E51-B709-1727D4973C6F}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{3A8631A9-4DE2-4E51-B709-1727D4973C6F}.Debug|Any CPU.Build.0 = Debug|Any CPU
{3A8631A9-4DE2-4E51-B709-1727D4973C6F}.Release|Any CPU.ActiveCfg = Release|Any CPU
{3A8631A9-4DE2-4E51-B709-1727D4973C6F}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {DD9375B1-7253-4F71-BCC1-E9F7909F8FDC}
EndGlobalSection
EndGlobal
10 changes: 10 additions & 0 deletions CS8602 Dereference/CS8602 Dereference/CS8602 Dereference.csproj
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<RootNamespace>CS8602_Dereference</RootNamespace>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>

</Project>
7 changes: 7 additions & 0 deletions CS8602 Dereference/CS8602 Dereference/Class1.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
namespace CS8602_Dereference
{
public class Class1
{
public void
}
}