Using File Scoped Namespaces
As of version 100, we have moved to using file scoped namespaces, introduced as part of the C# 10 specification. For more information, click here.
Before
namespace Krypton.Toolkit
{
public class KryptonClass
{
// Logic goes here...
}
}
After
namespace Krypton.Toolkit;
public class KryptonClass
{
// Logic goes here...
}