Public Sector

We've had the pleasure of working with UK and overseas central and local government departments, including Healthcare (NHS and Foundation Trusts), Defence, Education (Universities and colleges), many of the main Civil Service departments, Emergency Services; also public-owned corporations including the BBC, Bank of England, Ordnance Survey, and regulatory bodies such as Ofgem.

We are registered on Crown Commercial Service’s (CCS) Dynamic Purchasing System (RM6219 Training and Learning) and also with numerous tender portals such as Ariba, Coupa and Delta E-Sourcing.

Read more...

Graduate Training Schemes

Framework Training has a strong track record of providing a solid introduction into the working world for technical graduates across myriad industries. We provide the opportunity to learn and gain valuable hands-on experience in a supportive, friendly and sociable training environment.

Attract & retain the brightest new starters

We know it is vital for our clients to invest in the future of their talented grads; not only to provide them with high-quality, professional training essential for their roles, but to embed them within the organisation’s culture and guide them on the right path to a successful career.

After all, your new hires could well be the next leaders and their creative ideas and unique insights are invaluable to your business.

Read more ...

Learning & Development

Our unique portfolio of high-quality technical courses and training programmes are industry-respected. They’re carefully designed so that delegates can seamlessly apply what they’ve learnt back in the workplace. Our team of domain experts, trainers, and support teams know our field — and all things tech — inside out, and we work hard to keep ourselves up to speed with the latest innovations. 

We’re proud to develop and deliver innovative learning solutions that actually work and make a tangible difference to your people and your business, driving through positive lasting change. Our training courses and programmes are human-centred. Everything we do is underpinned by our commitment to continuous improvement and learning and generally making things much better.

Read more...

Corporate & Volume Pricing

Whether you are looking to book multiple places on public scheduled courses (attended remotely or in our training centres in London) or planning private courses for a team within your organisation, we will be happy to discuss preferential pricing which maximise your staff education budget.

Enquire today about:

  • Training programme pricing models  

  • Multi-course voucher schemes

Read more...

Custom Learning Paths

We understand that your team training needs don't always fit into a "one size fits all" mould, and we're very happy to explore ways in which we can tailor a bespoke learning path to fit your learning needs.

Find out about how we can customise everything from short overviews, intensive workshops, and wider training programmes that give you coverage of the most relevant topics based on what your staff need to excel in their roles.

Read more...

What are the basic syntax and data types in C#?

What are the basic syntax and data types in C#?

Like most modern programming languages, C# uses variables to store values. For the most part, C# is a strongly typed language meaning that variables must be declared before they can be used using a data type and a name and can be assigned values using the assignment operator "=". For example, int num = 10;

Data types in C# include:

- Int & long: used for integers

- float & double : used for floating-point numbers

- decimal: used for high precision decimal numbersbool: used for boolean values (true or false)

- char: & string used for a single characters & strings

There are also thousands of more complex types defined in the .NET Framework such as containers (Array, List, Dictionary etc), delegate, events, buttons, textboxes and more.

C# has various operators including arithmetic operators (+, -, , /, %), comparison operators (==, !=, <, >, <=, >=), logical operators (&&, ||, !), and assignment operators (=, +=, -=, =, /=, %=) among others.

Control Structures: C# has various control structures including branching statements (if, switch) and loops (for, foreach, while, do-while)

Methods: Methods are functions used to group a set of statements together to perform a specific task. They are declared with a return type, a name, and optional parameters.

For example,

```

int sum(int a, int b) { return a + b; }

```

Classes: Classes are used to define objects in C#. They usually contain fields and methods and can be used to create instances of the class. For example, class MyClass { int num; void PrintNum() { Console.WriteLine(num); } }

These are some of the basic syntax and data types in C#, which provide a foundation for building more complex applications.

3. How can I create a new C# project in Visual Studio?

It depends on what version of Visual Studio you are using, however, the general process is as follows:

- Open Visual Studio. You will be shown an initial start window with options for opening existing or creating new projects.

- Click on "Create a new project" in the start window. If you already have a project open you can use the “File” > “New” > “Project” menu.

- In the "Create a new project" window, choose a template for your project. There are templates for many types of project in various .NET languages. Typically you might, for example choose a C# Console App

- You will then be asked to Configure your new project (name & location).

- Finally, you will be asked which version of .NET you wish to use. The default is usually the latest version installed on your machine.

- Click "Create" to create the project.

Once you have created a new C# project, Visual Studio will generate some default files and folders based on the project template you selected. For example, a console app will include a Program.cs file containing a default "Hello World" program, while a Windows Forms app will include a Form1.cs file containing a default blank form.

From here, you can start writing your C# code and building your application.

Still have questions?

Can't find what you're looking for? Our team is here to help.

Contact Us