I'm just wondering whether there is any difference in performance for accessing properties of a static instead of non-static class?
Let's say I have to classes
private class Book1
{
public const EventEnum Name = "Something";
}
private static class Book2
{
public const EventEnum Name = "Something";
}
Now, if I want to access them in the following way
var book1Name = Book1.Name;
var book2Name = Book2.Name;
is there an difference in performance? Is there any difference at all?
Thanks