¡@

Home 

c# Programming Glossary: subjects

How to expose IObservable<T> properties without using Subject<T> backing field

http://stackoverflow.com/questions/12053709/how-to-expose-iobservablet-properties-without-using-subjectt-backing-field

mentioned as an aside you should try to avoid using subjects at all. The general rule is that if you're using a subject then.. a subject then you're doing something wrong. I often use subjects as backing fields for IObservable properties which would have.. blowing yourself up in the middle of a square. Essentially subjects are best used at the edges of the reactive query graph for ingress..

System.Net.Mail and =?utf-8?B?XXXXX… Headers

http://stackoverflow.com/questions/454833/system-net-mail-and-utf-8bxxxxx-headers

send messages via System.Net.Mail and am sometimes getting subjects like ' utf 8 B W3AxM25dIEZpbGV...' trimmed . This is the code..

ASP.NET: Right way to populate a Dropdown list from database

http://stackoverflow.com/questions/7227510/asp-net-right-way-to-populate-a-dropdown-list-from-database

if you wanted to use a DataTable ddlSubject.DataSource subjectsTable ddlSubject.DataTextField SubjectNamne ddlSubject.DataValueField.. More complete example private void LoadSubjects DataTable subjects new DataTable using SqlConnection con new SqlConnection connectionString.. SubjectName FROM Students.dbo.Subjects con adapter.Fill subjects ddlSubject.DataSource subjects ddlSubject.DataTextField SubjectNamne..