c#.net (29)
c#.net articles
this article covers how to read,write data through
textreader and textwriter.
how to access and update appSettings in config file of windows application
Written by Super Useryou can put application specific settings in the
appSettings section of your app.config file in your
c# windows form application.you can access,edit,update
those settings.I show you how -
Organizing files in folders in VS solution project
Written by Super Userwhen you build a software make sure that you built it by object oriented way
and you organized your files in folders as following way -
naming conventions for Class, Variable, control, other names in code
Written by Super Userin coding giving proper names to methods,classes,controls,
variables,others is neccessary and good programming practice.
think that a method name-show button click.
how to create login by running multiple subsequent forms in c#
Written by Super Userit is possible to run Application.Run twice in csharp
application.the following example shows that.it's a
example to create login to access the application.
namespaces is a old concept in c# programming.both
java and c# uses this concept.a namespace is act like
a 'wrapper' around one or many elements which gives
them uniqueness.
how you can accomplish a project successfully?
Written by Super Userif you are participating in a project of a
course,assignment,others on c#.net or asp.net
or may be others then you should follow the
steps for finishing the project successfully.
It is needed to check whether your website is
available or down.It's better you create a WPF
application to check that.you can also check
status periodically besides checking status on
a button click.the following program shows how
to check the website status by clicking a button -
for creating own exception class,you have to derive your class
from System.Exception class.also you have to implement all
constructors which base class implements.to create own
exception class follow the requirements/recommendations
below-
to convert bitmap image file to gif file you
have to create bitmap object first.