Tagged Questions
0
votes
1answer
125 views
Rails ArgumentError in OrdersController#new validation
Second question on here, I'd really like to solve this one myself but I'm totally flumaxed as I just don't know where to start to debug it.
So here is my error in the browser (which occurs when I go ...
5
votes
2answers
775 views
Undefined method 'each' for Student:Class
I want to load a file, split its content into arrays, and have the class apply to the content.
class Student
def initialize( name, grade )
@name = name
@grade = grade
...
0
votes
0answers
139 views
Code exiting with weird message
Here is my code, I have two monitors.
try
{
Screen[] allScreens = Screen.AllScreens;
Console.WriteLine("count=" + allScreens.Count());
var b = allScreens[0];
...