Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Where can I get a list of reserved keywords in C#? [closed]

Tags:

c#

keyword

Where can I get a list of reserved keywords in C#?

like image 484
JohnM Avatar asked Dec 22 '22 09:12

JohnM


1 Answers

From Microsoft's website:

Microsoft Visual Studio 2008/.NET Framework 3.5

  • abstract
  • as
  • base
  • bool
  • break
  • byte
  • case
  • catch
  • char
  • checked
  • class
  • const
  • continue
  • decimal
  • default
  • delegate
  • do
  • double
  • event
  • explicit
  • extern
  • false
  • finally
  • fixed
  • float
  • for
  • foreach
  • goto
  • if
  • implicit
  • in
  • int
  • interface
  • internal
  • is
  • lock
  • new
  • null
  • object
  • operator
  • out
  • override
  • params
  • private
  • protected
  • public
  • readonly
  • ref
  • return
  • sbyte
  • sealed
  • short
  • sizeof
  • stackalloc
  • struct
  • switch
  • this
  • throw
  • true
  • try
  • typeof
  • uint
  • ulong
  • unchecked
  • unsafe
  • ushort
  • using
  • virtual
  • void
  • volatile
  • while
like image 192
kolistivra Avatar answered Jan 05 '23 22:01

kolistivra