Posts

Showing posts from October, 2024

HTML Table Codes

You can make the table that you want by filling in the table as you wish. < table >    < tr >      < th > Continent < /th >      < th > State < /th >      < th > City < /th >    < /tr >    < tr >      < td > Europe < /td >      < td > Germany < /td >      < td > Hamburg < /td >    < /tr >    < tr >      < td > Asia < /td >      < td > China < /td >      < td > Beijing < /td >    < /tr > < /table > Continent State City Europe Germany Hamburg Asia China Beijing Common HTML Table tags <tr>  - represents rows <td>  - used...

HTML Codes For Social Media Links

Image
Social Profiles You should paste the following HTML codes where you see the div in the body in the HTML edit section of your blogger site   <div class='social-profiles-widget'> <h3 class='widgettitle'>Social Profiles</h3> <a href='http://twitter.com/' target='_blank'><img alt='Twitter' src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEg60PLhCrSZis5mVVejgvSTDqxJ02hoHZkSk_Eti0f0RUdOadFcoTg2N8avWcstPRfUrtdYcnh64PDwncyaVlMQEBrHb3_EgedD15vv9RSvuEUkUOCzVG_nYM1QAGWehuCF6wkPJagNm_Q/s1600/twitter.png' title='Twitter'/></a>       <a href='http://facebook.com/' target='_blank'><img alt='Facebook' src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiAThclEZaeWN_08NJyHG-xWKEDmtTylw6aLBXzvXNsUz9UkbHcV-xZa1nB09O8yvti3JFHR-a1vd6PB-xZX_NF418GvWJF0O6KKkKseliIKzxhamBXbCMM1JtsZXXMkueY7PGwPzPZSE8/s1600/facebook.png...

Best IDEs for C#

Best IDEs for C# Visual Studio Rider MonoDevelop Sharp Develop LINQPad Borland Turbo C

Get Started C#

Image
  C# IDE The easiest way to get started with C# is to use an IDE. An IDE (Integrated Development Environment) is used to edit and compile code.  We will use Visual Studio Community, which is free to download from  https://visualstudio.microsoft.com/vs/community/ . Applications written in C# use the .NET Framework, so it makes sense to use Visual Studio, as the program, the framework, and the language, are all created by Microsoft.

C# Beginning

Image
  C# is pronounced "C-Sharp". It is an object-oriented programming language created by Microsoft that runs on the .NET Framework. C# has roots from the C family, and the language is close to other popular languages like C++ and Java. The first version was released in year 2002. The latest version,  C# 12 , was released in November 2023. C# is used for: Mobile applications Desktop applications Web applications Web services Web sites Games VR Database applications And much, much more! Why Use C#? It is one of the most popular programming languages in the world It is easy to learn and simple to use It has huge community support C# is an object-oriented language which gives a clear structure to programs and allows code to be reused, lowering development costs As C# is close to C, C++ and Java, it makes it easy for programmers to switch to C# or vice versa

Relative Layout Example

  <?xml version="1.0" encoding="utf-8"?> <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="match_parent" android:paddingLeft="16dp" android:paddingRight="16dp" > <EditText android:id="@+id/name" android:layout_width="match_parent" android:layout_height="wrap_content" android:hint="@string/reminder" /> <Spinner android:id="@+id/dates" android:layout_width="0dp" android:layout_height="wrap_content" android:layout_below="@id/name" android:layout_alignParentLeft="true" android:layout_toLeftOf="@+id/times" /> <Spinner android:id="@id/times" android:layout_width="96dp...