- using System;
- namespace ConsoleApplication1
- {
- class Program
- {
- static void Main(string[] args)
- {
- string name1 = "code";
- bool b = name1.EndsWith("de");
- Console.WriteLine(b);
- }
- }
- }
- using System;
- namespace ConsoleApplication1
- {
- class Program
- {
- static void Main(string[] args)
- {
- string name1 = "code";
- bool b = name1.EndsWith("def");
- Console.WriteLine(b);
- }
- }
- }