Problem:
(followed by Hacked Solution, followed by Simplified Solution)
Currently you have two data types declared and one is nested, so you can declare variables using each of the data types as such:
frameLimits.Max highest = new frameLimits.Max();
highest.Y = 5;
IntelliSense shows: highest.
frameLimits limits = new frameLimits();
// no members exist on the frameLimits type, so nothing to access.
IntelliSense shows: limits.
IntelliSense can help sort it out.
The nested structure isn't usable in the way you originally attempted because as others have already indicated before me, you're trying to use the types instead of instances of those types.
Hacked Solution
If I add an instance field called MaxValue to your Max struct, then I might be getting close to what you intended. This will enable the caller code to be:
frameLimits limits = new frameLimits();
limits.MaxValue.Y = 5;
However that's a really convoluted way to do it and not recommended.
Modified struct is this:
public struct frameLimits
{
public struct Max
{
private int yval;
public int Y
{
get
{
return yval;
}
set
{
yval = value;
}
}
}
public Max MaxValue;
}
A Simplified Solution
You could remove the inner struct to simply things, however you're still under some restrictions with the struct and that's why I implement the default value of 220 as I did.
The new caller code is:
FrameLimits limits = new FrameLimits();
Console.Write( limits.MaxY ); // prints 220
limits.MaxY = 5;
This struct is simplified to a degree (removed nested struct):
public struct FrameLimits
{
private int? yval;
public int MaxY
{
get
{
return yval.HasValue ? yval.Value : 220;
}
set
{
yval = value;
}
}
}