TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
Answers
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
Forums
Monthly Leaders
Forum guidelines
Vaishnavi Rangamani
NA
11
3.6k
Out Of Memory Exception
Jun 13 2014 1:38 AM
Hello,
Am a developer developing code for subnets generation.But while compiling the code, it throws "Out of Memory exception". Could you please Help to resolve it? and also point out the mistake i committed. The following code especially in red color throws that exception.
private List<Subnet_DataGen> CreateSubnet_AfterRemove(IPAddress supernetIP)
{
int supernetCIDR;
int subnetCIDR;
supernetCIDR = 8;
subnetCIDR = Convert.ToInt32(CIDRCBox.SelectedItem.ToString());
List<Subnet_DataGen> subnets = IPFunction.CreateSubnetsForDataGen(supernetIP, supernetCIDR, subnetCIDR);
subnets = RemoveExistingSubnets(subnets);
return subnets;
}
Regards,
Vaishnavi
Reply
Answers (
0
)
string reverse without using reverse method
TUIO With C#